Spaces:
Sleeping
Sleeping
Update helper/is_site_available.py
Browse files- helper/is_site_available.py +12 -1
helper/is_site_available.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
from torrents.bitsearch import Bitsearch
|
|
|
2 |
from torrents.kickass import Kickass
|
3 |
from torrents.libgen import Libgen
|
4 |
from torrents.limetorrents import Limetorrent
|
@@ -210,6 +211,16 @@ def check_if_site_available(site):
|
|
210 |
], # television # software #adult # ebooks
|
211 |
"limit": 10,
|
212 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
"torrentproject": {
|
214 |
"website": TorrentProject,
|
215 |
"trending_available": False,
|
@@ -245,4 +256,4 @@ def check_if_site_available(site):
|
|
245 |
|
246 |
if site in all_sites.keys():
|
247 |
return all_sites
|
248 |
-
return False
|
|
|
1 |
from torrents.bitsearch import Bitsearch
|
2 |
+
from torrents.glodls import Glodls
|
3 |
from torrents.kickass import Kickass
|
4 |
from torrents.libgen import Libgen
|
5 |
from torrents.limetorrents import Limetorrent
|
|
|
211 |
], # television # software #adult # ebooks
|
212 |
"limit": 10,
|
213 |
},
|
214 |
+
"glodls": {
|
215 |
+
"website": Glodls,
|
216 |
+
"trending_available": True,
|
217 |
+
"trending_category": False,
|
218 |
+
"search_by_category": False,
|
219 |
+
"recent_available": True,
|
220 |
+
"recent_category_available": False,
|
221 |
+
"categories": [],
|
222 |
+
"limit": 10,
|
223 |
+
},
|
224 |
"torrentproject": {
|
225 |
"website": TorrentProject,
|
226 |
"trending_available": False,
|
|
|
256 |
|
257 |
if site in all_sites.keys():
|
258 |
return all_sites
|
259 |
+
return False
|