├── .gitignore ├── LICENSE ├── README.md └── purge_app.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | *.old 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeSamuraii/PurgeApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeSamuraii/PurgeApp/HEAD/README.md -------------------------------------------------------------------------------- /purge_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeSamuraii/PurgeApp/HEAD/purge_app.py --------------------------------------------------------------------------------