├── .gitignore ├── LICENSE ├── README.md ├── asfuncs.py ├── autosort.py ├── autosortgui.py ├── autosortgui.spec ├── logo files ├── logov2.psd └── logov2banner.PSD ├── logo.ico ├── media ├── benchmarks │ ├── 12000_autosort.png │ ├── copying_autosort.png │ └── startup_autosort.png └── demos │ └── demo.gif ├── qtfiles ├── qtdesigner │ └── labeldesign.ui └── qtresources │ ├── __init__.py │ ├── resources.py │ └── resources.qrc └── testing ├── copyfunctionbenchmark.py ├── metadata.txt └── nometadata.txt /.gitignore: -------------------------------------------------------------------------------- 1 | other/ 2 | __pycache__/ 3 | .vscode/ 4 | files 5 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/README.md -------------------------------------------------------------------------------- /asfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/asfuncs.py -------------------------------------------------------------------------------- /autosort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/autosort.py -------------------------------------------------------------------------------- /autosortgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/autosortgui.py -------------------------------------------------------------------------------- /autosortgui.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/autosortgui.spec -------------------------------------------------------------------------------- /logo files/logov2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/logo files/logov2.psd -------------------------------------------------------------------------------- /logo files/logov2banner.PSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/logo files/logov2banner.PSD -------------------------------------------------------------------------------- /logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/logo.ico -------------------------------------------------------------------------------- /media/benchmarks/12000_autosort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/media/benchmarks/12000_autosort.png -------------------------------------------------------------------------------- /media/benchmarks/copying_autosort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/media/benchmarks/copying_autosort.png -------------------------------------------------------------------------------- /media/benchmarks/startup_autosort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/media/benchmarks/startup_autosort.png -------------------------------------------------------------------------------- /media/demos/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/media/demos/demo.gif -------------------------------------------------------------------------------- /qtfiles/qtdesigner/labeldesign.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/qtfiles/qtdesigner/labeldesign.ui -------------------------------------------------------------------------------- /qtfiles/qtresources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qtfiles/qtresources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/qtfiles/qtresources/resources.py -------------------------------------------------------------------------------- /qtfiles/qtresources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/qtfiles/qtresources/resources.qrc -------------------------------------------------------------------------------- /testing/copyfunctionbenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/testing/copyfunctionbenchmark.py -------------------------------------------------------------------------------- /testing/metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/testing/metadata.txt -------------------------------------------------------------------------------- /testing/nometadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vihdutta/autosort/HEAD/testing/nometadata.txt --------------------------------------------------------------------------------