├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── split_folders └── __init__.py ├── splitfolders ├── __init__.py ├── cli.py ├── split.py └── utils.py └── tests ├── __init__.py ├── imgs ├── cats │ ├── andrew-umansky-714774-unsplash.jpg │ ├── erik-witsoe-712604-unsplash.jpg │ ├── heyhellowhatsup-jannes-707996-unsplash.jpg │ ├── jacalyn-beales-669252-unsplash.jpg │ ├── kasey-mccoy-755921-unsplash.jpg │ ├── luke-stackpoole-656835-unsplash.jpg │ ├── mitchell-orr-580906-unsplash.jpg │ ├── nathalie-jolie-681356-unsplash.jpg │ ├── pawel-adamczak-613470-unsplash.jpg │ ├── raul-varzar-750436-unsplash.jpg │ └── vladislav-nikonov-641150-unsplash.jpg └── dogs │ ├── cesar-cardoso-574862-unsplash.jpg │ ├── charles-deluvio-628938-unsplash.jpg │ ├── daniel-cano-668929-unsplash.jpg │ ├── david-taffet-563063-unsplash.jpg │ ├── hannah-gibbs-595341-unsplash.jpg │ ├── hannah-lim-708852-unsplash.jpg │ ├── jamie-street-804226-unsplash.jpg │ ├── jennifer-regnier-586172-unsplash.jpg │ └── patrick-hendry-723775-unsplash.jpg ├── imgs_texts ├── cats │ ├── andrew-umansky-714774-unsplash.jpg │ ├── andrew-umansky-714774-unsplash.txt │ ├── erik-witsoe-712604-unsplash.jpg │ ├── erik-witsoe-712604-unsplash.txt │ ├── heyhellowhatsup-jannes-707996-unsplash.jpg │ ├── heyhellowhatsup-jannes-707996-unsplash.txt │ ├── jacalyn-beales-669252-unsplash copy.jpg │ ├── jacalyn-beales-669252-unsplash copy.txt │ ├── jacalyn-beales-669252-unsplash.jpg │ └── jacalyn-beales-669252-unsplash.txt └── dogs │ ├── cesar-cardoso-574862-unsplash.jpg │ ├── cesar-cardoso-574862-unsplash.txt │ ├── charles-deluvio-628938-unsplash.jpg │ ├── charles-deluvio-628938-unsplash.txt │ ├── daniel-cano-668929-unsplash.jpg │ ├── daniel-cano-668929-unsplash.txt │ ├── david-taffet-563063-unsplash.jpg │ └── david-taffet-563063-unsplash.txt ├── imgs_texts_error_1 ├── cats │ ├── andrew-umansky-714774-unsplash.jpg │ ├── andrew-umansky-714774-unsplash.txt │ ├── erik-witsoe-712604-unsplash.jpg │ ├── erik-witsoe-712604-unsplash.txt │ ├── heyhellowhatsup-jannes-707996-unsplash.jpg │ ├── heyhellowhatsup-jannes-707996-unsplash.txt │ ├── jacalyn-beales-669252-unsplash copy.txt │ ├── jacalyn-beales-669252-unsplash.jpg │ └── jacalyn-beales-669252-unsplash.txt └── dogs │ ├── cesar-cardoso-574862-unsplash.jpg │ ├── cesar-cardoso-574862-unsplash.txt │ ├── charles-deluvio-628938-unsplash.jpg │ ├── charles-deluvio-628938-unsplash.txt │ ├── daniel-cano-668929-unsplash.jpg │ ├── daniel-cano-668929-unsplash.txt │ ├── david-taffet-563063-unsplash.jpg │ └── david-taffet-563063-unsplash.txt ├── imgs_texts_error_2 ├── cats │ ├── andrew-umansky-714774-unsplash.jpg │ ├── andrew-umansky-714774-unsplash.txt │ ├── erik-witsoe-712604-unsplash.jpg │ ├── erik-witsoe-712604-unsplash.txt │ ├── heyhellowhatsup-jannes-707996-unsplash.jpg │ ├── heyhellowhatsup-jannes-707996-unsplash.txt │ ├── jacalyn-beales-669252-unsplash.jpg │ ├── jacalyn-beales-669252-unsplash.txt │ └── jacalyn-beales-669252-unsplash.txt2 └── dogs │ ├── cesar-cardoso-574862-unsplash.jpg │ ├── cesar-cardoso-574862-unsplash.txt │ ├── charles-deluvio-628938-unsplash.jpg │ ├── charles-deluvio-628938-unsplash.txt │ ├── daniel-cano-668929-unsplash.jpg │ ├── daniel-cano-668929-unsplash.txt │ ├── david-taffet-563063-unsplash.jpg │ └── david-taffet-563063-unsplash.txt └── test_split.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/pyproject.toml -------------------------------------------------------------------------------- /split_folders/__init__.py: -------------------------------------------------------------------------------- 1 | from splitfolders import * 2 | -------------------------------------------------------------------------------- /splitfolders/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.1" 2 | 3 | from .split import * 4 | -------------------------------------------------------------------------------- /splitfolders/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/splitfolders/cli.py -------------------------------------------------------------------------------- /splitfolders/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/splitfolders/split.py -------------------------------------------------------------------------------- /splitfolders/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/splitfolders/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs/cats/andrew-umansky-714774-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/andrew-umansky-714774-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/erik-witsoe-712604-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/erik-witsoe-712604-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/heyhellowhatsup-jannes-707996-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/heyhellowhatsup-jannes-707996-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/jacalyn-beales-669252-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/jacalyn-beales-669252-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/kasey-mccoy-755921-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/kasey-mccoy-755921-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/luke-stackpoole-656835-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/luke-stackpoole-656835-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/mitchell-orr-580906-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/mitchell-orr-580906-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/nathalie-jolie-681356-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/nathalie-jolie-681356-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/pawel-adamczak-613470-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/pawel-adamczak-613470-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/raul-varzar-750436-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/raul-varzar-750436-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/cats/vladislav-nikonov-641150-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/cats/vladislav-nikonov-641150-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/cesar-cardoso-574862-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/cesar-cardoso-574862-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/charles-deluvio-628938-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/charles-deluvio-628938-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/daniel-cano-668929-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/daniel-cano-668929-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/david-taffet-563063-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/david-taffet-563063-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/hannah-gibbs-595341-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/hannah-gibbs-595341-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/hannah-lim-708852-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/hannah-lim-708852-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/jamie-street-804226-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/jamie-street-804226-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/jennifer-regnier-586172-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/jennifer-regnier-586172-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs/dogs/patrick-hendry-723775-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs/dogs/patrick-hendry-723775-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/andrew-umansky-714774-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/cats/andrew-umansky-714774-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/andrew-umansky-714774-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/cats/erik-witsoe-712604-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/cats/erik-witsoe-712604-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/erik-witsoe-712604-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/cats/heyhellowhatsup-jannes-707996-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/cats/heyhellowhatsup-jannes-707996-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/heyhellowhatsup-jannes-707996-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/cats/jacalyn-beales-669252-unsplash copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/cats/jacalyn-beales-669252-unsplash copy.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/jacalyn-beales-669252-unsplash copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/cats/jacalyn-beales-669252-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/cats/jacalyn-beales-669252-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/cats/jacalyn-beales-669252-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/cesar-cardoso-574862-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/dogs/cesar-cardoso-574862-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/cesar-cardoso-574862-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/charles-deluvio-628938-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/dogs/charles-deluvio-628938-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/charles-deluvio-628938-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/daniel-cano-668929-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/dogs/daniel-cano-668929-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/daniel-cano-668929-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/david-taffet-563063-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts/dogs/david-taffet-563063-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts/dogs/david-taffet-563063-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/andrew-umansky-714774-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/cats/andrew-umansky-714774-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/andrew-umansky-714774-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/erik-witsoe-712604-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/cats/erik-witsoe-712604-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/erik-witsoe-712604-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/heyhellowhatsup-jannes-707996-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/cats/heyhellowhatsup-jannes-707996-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/heyhellowhatsup-jannes-707996-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/jacalyn-beales-669252-unsplash copy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/jacalyn-beales-669252-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/cats/jacalyn-beales-669252-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/cats/jacalyn-beales-669252-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/cesar-cardoso-574862-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/dogs/cesar-cardoso-574862-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/cesar-cardoso-574862-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/charles-deluvio-628938-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/dogs/charles-deluvio-628938-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/charles-deluvio-628938-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/daniel-cano-668929-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/dogs/daniel-cano-668929-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/daniel-cano-668929-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/david-taffet-563063-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_1/dogs/david-taffet-563063-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_1/dogs/david-taffet-563063-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/andrew-umansky-714774-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/cats/andrew-umansky-714774-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/andrew-umansky-714774-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/erik-witsoe-712604-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/cats/erik-witsoe-712604-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/erik-witsoe-712604-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/heyhellowhatsup-jannes-707996-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/cats/heyhellowhatsup-jannes-707996-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/heyhellowhatsup-jannes-707996-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/jacalyn-beales-669252-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/cats/jacalyn-beales-669252-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/jacalyn-beales-669252-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/cats/jacalyn-beales-669252-unsplash.txt2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/cesar-cardoso-574862-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/dogs/cesar-cardoso-574862-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/cesar-cardoso-574862-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/charles-deluvio-628938-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/dogs/charles-deluvio-628938-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/charles-deluvio-628938-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/daniel-cano-668929-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/dogs/daniel-cano-668929-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/daniel-cano-668929-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/david-taffet-563063-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/imgs_texts_error_2/dogs/david-taffet-563063-unsplash.jpg -------------------------------------------------------------------------------- /tests/imgs_texts_error_2/dogs/david-taffet-563063-unsplash.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfilter/split-folders/HEAD/tests/test_split.py --------------------------------------------------------------------------------