├── .editorconfig ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── README.md ├── cli_interface.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── sample_cli.py ├── tester.py └── video_creator_main.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | known_third_party = sentence_mixing -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/README.md -------------------------------------------------------------------------------- /cli_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/cli_interface.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pre-commit==2.4.0 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sentence-mixing==1.1.3 2 | -------------------------------------------------------------------------------- /sample_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/sample_cli.py -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/tester.py -------------------------------------------------------------------------------- /video_creator_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop123123123/CLI_sentence_mixing/HEAD/video_creator_main.py --------------------------------------------------------------------------------