├── .gitattributes ├── .gitignore ├── Drag_Here.cmd ├── README.md ├── Set Up Ozen.bat ├── environment.yaml ├── modules ├── __init__.py └── utils.py ├── ozen.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Drag_Here.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/Drag_Here.cmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /Set Up Ozen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/Set Up Ozen.bat -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/environment.yaml -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/modules/utils.py -------------------------------------------------------------------------------- /ozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/ozen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devilismyfriend/ozen-toolkit/HEAD/requirements.txt --------------------------------------------------------------------------------