├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── PTN ├── __init__.py ├── parse.py └── patterns.py ├── README.md ├── setup.py └── tests ├── files ├── input.json └── output.json └── test_parse.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info/ 2 | 3 | build/ 4 | dist/ 5 | env/ 6 | 7 | *.pyc 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PTN/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/PTN/__init__.py -------------------------------------------------------------------------------- /PTN/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/PTN/parse.py -------------------------------------------------------------------------------- /PTN/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/PTN/patterns.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/setup.py -------------------------------------------------------------------------------- /tests/files/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/tests/files/input.json -------------------------------------------------------------------------------- /tests/files/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/tests/files/output.json -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/parse-torrent-name/HEAD/tests/test_parse.py --------------------------------------------------------------------------------