Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mikf
GitHub Repository: mikf/gallery-dl
Path: blob/master/test/results/bitly.py
8800 views
1
# -*- coding: utf-8 -*-
2
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License version 2 as
5
# published by the Free Software Foundation.
6
7
from gallery_dl.extractor import urlshortener
8
9
10
__tests__ = (
11
{
12
"#url" : "https://bit.ly/3cWIUgq",
13
"#category": ("urlshortener", "bitly", "link"),
14
"#class" : urlshortener.UrlshortenerLinkExtractor,
15
"#pattern" : "^https://gumroad.com/l/storm_b1",
16
"#count" : 1,
17
},
18
19
)
20
21