├── .github └── workflows │ └── pypipublish.yml ├── .gitignore ├── Auto copy with QB.md ├── AutoPlex.md ├── README.md ├── README_en.md ├── plex_notify.sh ├── pyproject.toml ├── qb自动入库.md ├── rcp.sh ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests └── test_parseTorName.py ├── torcp ├── DeleteEmptyFolders.py ├── __init__.py ├── cacheman.py ├── doubanapi.py ├── tmdbparser.py ├── torcategory.py ├── torcp.py └── tortitle.py ├── tp.py └── 刮削攻略.md /.github/workflows/pypipublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/.github/workflows/pypipublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/.gitignore -------------------------------------------------------------------------------- /Auto copy with QB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/Auto copy with QB.md -------------------------------------------------------------------------------- /AutoPlex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/AutoPlex.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/README_en.md -------------------------------------------------------------------------------- /plex_notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/plex_notify.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qb自动入库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/qb自动入库.md -------------------------------------------------------------------------------- /rcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/rcp.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tmdbv3api==1.7.7 2 | cinemagoer -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_parseTorName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/tests/test_parseTorName.py -------------------------------------------------------------------------------- /torcp/DeleteEmptyFolders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/DeleteEmptyFolders.py -------------------------------------------------------------------------------- /torcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torcp/cacheman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/cacheman.py -------------------------------------------------------------------------------- /torcp/doubanapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/doubanapi.py -------------------------------------------------------------------------------- /torcp/tmdbparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/tmdbparser.py -------------------------------------------------------------------------------- /torcp/torcategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/torcategory.py -------------------------------------------------------------------------------- /torcp/torcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/torcp.py -------------------------------------------------------------------------------- /torcp/tortitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/torcp/tortitle.py -------------------------------------------------------------------------------- /tp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/tp.py -------------------------------------------------------------------------------- /刮削攻略.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccf-2012/torcp/HEAD/刮削攻略.md --------------------------------------------------------------------------------