20 lines
522 B
Python
20 lines
522 B
Python
from komsuite_nyaapy import AnimeTorrentSite, TorrentSite, AnimeTorrentSiteAsync
|
|
|
|
|
|
class SukebeiNyaa(AnimeTorrentSite):
|
|
SITE = TorrentSite.SUKEBEINYAASI
|
|
URL = TorrentSite.get_site(SITE)
|
|
|
|
|
|
class Nyaa(AnimeTorrentSite):
|
|
SITE = TorrentSite.NYAASI
|
|
URL = TorrentSite.get_site(SITE)
|
|
|
|
class SukebiNyaaAsync(AnimeTorrentSiteAsync):
|
|
SITE = TorrentSite.SUKEBEINYAASI
|
|
URL = TorrentSite.get_site(SITE)
|
|
|
|
|
|
class NyaaAsync(AnimeTorrentSiteAsync):
|
|
SITE = TorrentSite.NYAASI
|
|
URL = TorrentSite.get_site(SITE) |