├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs └── movienamer.gif ├── movienamer ├── __init__.py ├── confirm.py ├── identify.py ├── keywords.py ├── main.py ├── sanitize.py └── tmdb.py ├── requirements.txt ├── setup.py └── tests ├── test_sanitize.py └── test_tmdb.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info/ 2 | build/ 3 | dist/ 4 | 5 | env/ 6 | 7 | *.pyc 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/README.md -------------------------------------------------------------------------------- /docs/movienamer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/docs/movienamer.gif -------------------------------------------------------------------------------- /movienamer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/__init__.py -------------------------------------------------------------------------------- /movienamer/confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/confirm.py -------------------------------------------------------------------------------- /movienamer/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/identify.py -------------------------------------------------------------------------------- /movienamer/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/keywords.py -------------------------------------------------------------------------------- /movienamer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/main.py -------------------------------------------------------------------------------- /movienamer/sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/sanitize.py -------------------------------------------------------------------------------- /movienamer/tmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/movienamer/tmdb.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/tests/test_sanitize.py -------------------------------------------------------------------------------- /tests/test_tmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divijbindlish/movienamer/HEAD/tests/test_tmdb.py --------------------------------------------------------------------------------