Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,22 @@ Many thanks to all who have contributed.
|ItaTorrents|ITT|LastDigitalUnderground|LDU|
|Lat-Team|LT|Locadora|LCD|
|LST|LST|Luminarr|LUME|
|MoreThanTV|MTV|Nebulance|NBL|
|OldToonsWorld|OTW|OnlyEncodes+|OE|
|PassThePopcorn|PTP|PolishTorrent|PTT|
|Portugas|PT|PrivateHD|PHD|
|PTerClub|PTER|PTSKIT|PTS|
|Racing4Everyone|R4E|Rastastugan|RAS|
|ReelFLiX|RF|RetroFlix|RTF|
|Samaritano|SAM|seedpool|SP|
|ShareIsland|SHRI|SkipTheCommerials|STC|
|SpeedApp|SPD|Swarmazon|SN|
|The Leach Zone|TLZ|TheOldSchool|TOS|
|ToTheGlory|TTG|TorrentHR|THR|
|Torrenteros|TTR|TorrentLeech|TL|
|TVChaosUK|TVC|ULCX|ULCX|
|UTOPIA|UTP|YOiNKED|YOINK|
|YUSCENE|YUS|||
|MoreThanTV|MTV|M-Team|MTEAM|
|Nebulance|NBL|OldToonsWorld|OTW|
|OnlyEncodes+|OE|PassThePopcorn|PTP|
|PolishTorrent|PTT|Portugas|PT|
|PrivateHD|PHD|PTerClub|PTER|
|PTSKIT|PTS|Racing4Everyone|R4E|
|Rastastugan|RAS|ReelFLiX|RF|
|RetroFlix|RTF|Samaritano|SAM|
|seedpool|SP|ShareIsland|SHRI|
|SkipTheCommerials|STC|SpeedApp|SPD|
|Swarmazon|SN|The Leach Zone|TLZ|
|TheOldSchool|TOS|ToTheGlory|TTG|
|TorrentHR|THR|Torrenteros|TTR|
|TorrentLeech|TL|TVChaosUK|TVC|
|ULCX|ULCX|UTOPIA|UTP|
|YOiNKED|YOINK|YUSCENE|YUS|

## **Setup:**
- **REQUIRES AT LEAST PYTHON 3.9 AND PIP3**
Expand Down
9 changes: 8 additions & 1 deletion data/example-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@

"TRACKERS": {
# Which trackers do you want to upload to?
# Available tracker: A4K, ACM, AITHER, ANT, AR, ASC, AZ, BHD, BHDTV, BJS, BLU, BT, CBR, CZ, DC, DP, DT, EMUW, FF, FL, FNP, FRIKI, GPW, HDB, HDS, HDT, HHD, HUNO, IHD, IS, ITT, LCD, LDU, LST, LT, LUME, MTV, NBL, OE, OTW, PHD, PT, PTER, PTP, PTS, PTT, R4E, RAS, RF, RTF, SAM, SHRI, SN, SP, SPD, STC, THR, TIK, TL, TLZ, TOS, TTG, TTR, TVC, ULCX, UTP, YOINK, YUS
# Available tracker: A4K, ACM, AITHER, ANT, AR, ASC, AZ, BHD, BHDTV, BJS, BLU, BT, CBR, CZ, DC, DP, DT, EMUW, FF, FL, FNP, FRIKI, GPW, HDB, HDS, HDT, HHD, HUNO, IHD, IS, ITT, LCD, LDU, LST, LT, LUME, MTEAM, MTV, NBL, OE, OTW, PHD, PT, PTER, PTP, PTS, PTT, R4E, RAS, RF, RTF, SAM, SHRI, SN, SP, SPD, STC, THR, TIK, TL, TLZ, TOS, TTG, TTR, TVC, ULCX, UTP, YOINK, YUS
# Only add the trackers you want to upload to on a regular basis
"default_trackers": "",

Expand Down Expand Up @@ -676,6 +676,13 @@
# Send uploads to LUME modq for staff approval
"modq": False,
},
"MTEAM": {
# Instead of using the tracker acronym for folder name when sym/hard linking, you can use a custom name
"link_dir_name": "",
"api_key": "",
"anon": False,
"base_url": "kp.m-team.cc"
},
"MTV": {
# Instead of using the tracker acronym for folder name when sym/hard linking, you can use a custom name
"link_dir_name": "",
Expand Down
1 change: 1 addition & 0 deletions src/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def parse(self, argv: Sequence[str], meta: dict[str, Any]) -> tuple[dict[str, An
parser.add_argument('-mal', '--mal', nargs=1, required=False, help="MAL ID", type=str, dest='mal_manual')
parser.add_argument('-tvmaze', '--tvmaze', nargs=1, required=False, help="TVMAZE ID", type=str, dest='tvmaze_manual')
parser.add_argument('-tvdb', '--tvdb', nargs=1, required=False, help="TVDB ID", type=str, dest='tvdb_manual')
parser.add_argument("-douban", "--douban", nargs=1, required=False, help="Douban ID (Number only)", type=int, dest="douban_manual", default=0)
parser.add_argument('-g', '--tag', nargs='*', required=False, help="Group Tag", type=str)
parser.add_argument('-serv', '--service', nargs='*', required=False, help="Streaming Service", type=str)
parser.add_argument('-dist', '--distributor', nargs='*', required=False, help="Disc Distributor e.g.(Criterion, BFI, etc.)", type=str)
Expand Down
113 changes: 57 additions & 56 deletions src/torrent_clients/qbittorrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1803,62 +1803,63 @@ async def _search_single_qbit_client(self, client_config: dict[str, Any], _conte

async def match_tracker_url(tracker_urls: list[str], meta: dict[str, Any]) -> None:
tracker_url_patterns = {
'acm': ["https://eiga.moi"],
'aither': ["https://aither.cc"],
'ant': ["tracker.anthelion.me"],
'ar': ["tracker.alpharatio"],
'asc': ["amigos-share.club"],
'az': ["tracker.avistaz.to"],
'bhd': ["https://beyond-hd.me", "tracker.beyond-hd.me"],
'bjs': ["tracker.bj-share.info"],
'blu': ["https://blutopia.cc"],
'bt': ["t.brasiltracker.org"],
'btn': ["https://broadcasthe.net"],
'cbr': ["capybarabr.com"],
'cz': ["tracker.cinemaz.to"],
'dc': ["tracker.digitalcore.club", "trackerprxy.digitalcore.club"],
'dp': ["https://darkpeers.org"],
'ff': ["tracker.funfile.org"],
'fl': ["reactor.filelist", "reactor.thefl.org"],
'fnp': ["https://fearnopeer.com"],
'gpw': ["https://tracker.greatposterwall.com"],
'hdb': ["https://tracker.hdbits.org"],
'hds': ["hd-space.pw"],
'hdt': ["https://hdts-announce.ru"],
'hhd': ["https://homiehelpdesk.net"],
'huno': ["https://hawke.uno"],
'ihd': ["https://infinityhd.net"],
'is': ["https://immortalseed.me"],
'itt': ["https://itatorrents.xyz"],
'lcd': ["locadora.cc"],
'ldu': ["theldu.to"],
'lst': ["https://lst.gg"],
'lt': ["https://lat-team.com"],
'lume': ["https://luminarr.me"],
'mtv': ["tracker.morethantv"],
'nbl': ["tracker.nebulance"],
'oe': ["https://onlyencodes.cc"],
'otw': ["https://oldtoons.world"],
'phd': ["tracker.privatehd"],
'pt': ["https://portugas.org"],
'ptp': ["passthepopcorn.me"],
'pts': ["https://tracker.ptskit.com"],
'ras': ["https://rastastugan.org"],
'rf': ["https://reelflix.xyz", "https://reelflix.cc"],
'rtf': ["peer.retroflix"],
'sam': ["https://samaritano.cc"],
'sp': ["https://seedpool.org"],
'spd': ["ramjet.speedapp.io", "ramjet.speedapp.to", "ramjet.speedappio.org"],
'stc': ["https://skipthecommercials.xyz"],
'thr': ["torrenthr"],
'tl': ["tracker.tleechreload", "tracker.torrentleech"],
'tlz': ["https://tlzdigital.com/"],
'tos': ["https://theoldschool.cc"],
'ttr': ["https://torrenteros.org"],
'tvc': ["https://tvchaosuk.com"],
'ulcx': ["https://upload.cx"],
'yoink': ["yoinked.org"],
'yus': ["https://yu-scene.net"],
"acm": ["https://eiga.moi"],
"aither": ["https://aither.cc"],
"ant": ["tracker.anthelion.me"],
"ar": ["tracker.alpharatio"],
"asc": ["amigos-share.club"],
"az": ["tracker.avistaz.to"],
"bhd": ["https://beyond-hd.me", "tracker.beyond-hd.me"],
"bjs": ["tracker.bj-share.info"],
"blu": ["https://blutopia.cc"],
"bt": ["t.brasiltracker.org"],
"btn": ["https://broadcasthe.net"],
"cbr": ["capybarabr.com"],
"cz": ["tracker.cinemaz.to"],
"dc": ["tracker.digitalcore.club", "trackerprxy.digitalcore.club"],
"dp": ["https://darkpeers.org"],
"ff": ["tracker.funfile.org"],
"fl": ["reactor.filelist", "reactor.thefl.org"],
"fnp": ["https://fearnopeer.com"],
"gpw": ["https://tracker.greatposterwall.com"],
"hdb": ["https://tracker.hdbits.org"],
"hds": ["hd-space.pw"],
"hdt": ["https://hdts-announce.ru"],
"hhd": ["https://homiehelpdesk.net"],
"huno": ["https://hawke.uno"],
"ihd": ["https://infinityhd.net"],
"is": ["https://immortalseed.me"],
"itt": ["https://itatorrents.xyz"],
"lcd": ["locadora.cc"],
"ldu": ["theldu.to"],
"lst": ["https://lst.gg"],
"lt": ["https://lat-team.com"],
"lume": ["https://luminarr.me"],
"mteam": ["tracker.m-team.cc", "tra1.m-team.cc", "tracker.m-team.io", "tra1.m-team.io", "tra99.manfuz.co"],
"mtv": ["tracker.morethantv"],
"nbl": ["tracker.nebulance"],
"oe": ["https://onlyencodes.cc"],
"otw": ["https://oldtoons.world"],
"phd": ["tracker.privatehd"],
"pt": ["https://portugas.org"],
"ptp": ["passthepopcorn.me"],
"pts": ["https://tracker.ptskit.com"],
"ras": ["https://rastastugan.org"],
"rf": ["https://reelflix.xyz", "https://reelflix.cc"],
"rtf": ["peer.retroflix"],
"sam": ["https://samaritano.cc"],
"sp": ["https://seedpool.org"],
"spd": ["ramjet.speedapp.io", "ramjet.speedapp.to", "ramjet.speedappio.org"],
"stc": ["https://skipthecommercials.xyz"],
"thr": ["torrenthr"],
"tl": ["tracker.tleechreload", "tracker.torrentleech"],
"tlz": ["https://tlzdigital.com/"],
"tos": ["https://theoldschool.cc"],
"ttr": ["https://torrenteros.org"],
"tvc": ["https://tvchaosuk.com"],
"ulcx": ["https://upload.cx"],
"yoink": ["yoinked.org"],
"yus": ["https://yu-scene.net"],
}
found_ids: set[str] = set()
for tracker in tracker_urls:
Expand Down
Loading
Loading