├── .gitignore ├── Dockerfile ├── PyRoles.py ├── README.md ├── check_photos_duplicates.py ├── docker-compose.yaml ├── hash_table.txt ├── pyroles.conf.sample └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | ~/PyRoles/venv/* 3 | *.jpg 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/Dockerfile -------------------------------------------------------------------------------- /PyRoles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/PyRoles.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/README.md -------------------------------------------------------------------------------- /check_photos_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/check_photos_duplicates.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /hash_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/hash_table.txt -------------------------------------------------------------------------------- /pyroles.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/pyroles.conf.sample -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonbrasil/PyRoles/HEAD/requirements.txt --------------------------------------------------------------------------------