├── .gitignore ├── README.md ├── cache.py ├── check.py ├── dest_paths.py ├── docs ├── code_of_conduct.md ├── dzuk │ ├── file_structure.md │ ├── howto.md │ ├── image_formats.md │ ├── metadata.md │ └── orx.md ├── kiilas │ ├── manifest.md │ └── usage.md └── old_changelog.md ├── emoji.py ├── exception.py ├── export.py ├── export_task.py ├── export_thread.py ├── files.py ├── image_proc.py ├── jsonutils.py ├── license.txt ├── log.py ├── orx ├── manifest.py ├── orx.py ├── params.py └── parse.py ├── orxport.py ├── orxporter_logo.png ├── requirements.txt ├── svg.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | **/.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/README.md -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/cache.py -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/check.py -------------------------------------------------------------------------------- /dest_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/dest_paths.py -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/dzuk/file_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/dzuk/file_structure.md -------------------------------------------------------------------------------- /docs/dzuk/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/dzuk/howto.md -------------------------------------------------------------------------------- /docs/dzuk/image_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/dzuk/image_formats.md -------------------------------------------------------------------------------- /docs/dzuk/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/dzuk/metadata.md -------------------------------------------------------------------------------- /docs/dzuk/orx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/dzuk/orx.md -------------------------------------------------------------------------------- /docs/kiilas/manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/kiilas/manifest.md -------------------------------------------------------------------------------- /docs/kiilas/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/kiilas/usage.md -------------------------------------------------------------------------------- /docs/old_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/docs/old_changelog.md -------------------------------------------------------------------------------- /emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/emoji.py -------------------------------------------------------------------------------- /exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/exception.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/export.py -------------------------------------------------------------------------------- /export_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/export_task.py -------------------------------------------------------------------------------- /export_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/export_thread.py -------------------------------------------------------------------------------- /files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/files.py -------------------------------------------------------------------------------- /image_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/image_proc.py -------------------------------------------------------------------------------- /jsonutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/jsonutils.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/license.txt -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/log.py -------------------------------------------------------------------------------- /orx/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orx/manifest.py -------------------------------------------------------------------------------- /orx/orx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orx/orx.py -------------------------------------------------------------------------------- /orx/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orx/params.py -------------------------------------------------------------------------------- /orx/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orx/parse.py -------------------------------------------------------------------------------- /orxport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orxport.py -------------------------------------------------------------------------------- /orxporter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/orxporter_logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | progress ~= 1.5 2 | -------------------------------------------------------------------------------- /svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/svg.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutantstandard/orxporter/HEAD/util.py --------------------------------------------------------------------------------