├── .gitignore ├── CONTRIBUTING.md ├── Clear pycache.bat ├── Create portable Modis environment.bat ├── GenerateModuleDoc.py ├── GenerateReadme.py ├── LICENSE ├── LauncherCMD.py ├── LauncherGUI.pyw ├── MANIFEST.in ├── README.md ├── modis ├── __init__.py ├── api │ ├── github.py │ ├── soundcloud.py │ ├── spotify.py │ └── youtube.py ├── assets │ ├── 128t.png │ ├── 2048t.png │ ├── 512t.png │ ├── 64t.png │ ├── modis.ico │ └── palette.png ├── gui │ ├── tabs │ │ ├── core.py │ │ ├── database.py │ │ ├── download.py │ │ └── modules.py │ └── window.py ├── main.py ├── modules │ └── !core │ │ ├── __info.py │ │ ├── _data.py │ │ ├── api_core.py │ │ ├── on_guild_available.py │ │ ├── on_guild_join.py │ │ ├── on_guild_remove.py │ │ ├── on_message.py │ │ └── on_ready.py └── tools │ ├── api.py │ ├── config.py │ ├── data.py │ ├── embed.py │ ├── help.py │ ├── log.py │ ├── moduledb.py │ └── version.py ├── requirements.txt ├── setup.py └── venv-resources ├── #START MODIS.bat ├── Activate.ps1 ├── activate ├── activate.bat └── ffmpeg.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Clear pycache.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/Clear pycache.bat -------------------------------------------------------------------------------- /Create portable Modis environment.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/Create portable Modis environment.bat -------------------------------------------------------------------------------- /GenerateModuleDoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/GenerateModuleDoc.py -------------------------------------------------------------------------------- /GenerateReadme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/GenerateReadme.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/LICENSE -------------------------------------------------------------------------------- /LauncherCMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/LauncherCMD.py -------------------------------------------------------------------------------- /LauncherGUI.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/LauncherGUI.pyw -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/README.md -------------------------------------------------------------------------------- /modis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/__init__.py -------------------------------------------------------------------------------- /modis/api/github.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modis/api/soundcloud.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modis/api/spotify.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modis/api/youtube.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modis/assets/128t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/128t.png -------------------------------------------------------------------------------- /modis/assets/2048t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/2048t.png -------------------------------------------------------------------------------- /modis/assets/512t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/512t.png -------------------------------------------------------------------------------- /modis/assets/64t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/64t.png -------------------------------------------------------------------------------- /modis/assets/modis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/modis.ico -------------------------------------------------------------------------------- /modis/assets/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/assets/palette.png -------------------------------------------------------------------------------- /modis/gui/tabs/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/gui/tabs/core.py -------------------------------------------------------------------------------- /modis/gui/tabs/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/gui/tabs/database.py -------------------------------------------------------------------------------- /modis/gui/tabs/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/gui/tabs/download.py -------------------------------------------------------------------------------- /modis/gui/tabs/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/gui/tabs/modules.py -------------------------------------------------------------------------------- /modis/gui/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/gui/window.py -------------------------------------------------------------------------------- /modis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/main.py -------------------------------------------------------------------------------- /modis/modules/!core/__info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/__info.py -------------------------------------------------------------------------------- /modis/modules/!core/_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/_data.py -------------------------------------------------------------------------------- /modis/modules/!core/api_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/api_core.py -------------------------------------------------------------------------------- /modis/modules/!core/on_guild_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/on_guild_available.py -------------------------------------------------------------------------------- /modis/modules/!core/on_guild_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/on_guild_join.py -------------------------------------------------------------------------------- /modis/modules/!core/on_guild_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/on_guild_remove.py -------------------------------------------------------------------------------- /modis/modules/!core/on_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/on_message.py -------------------------------------------------------------------------------- /modis/modules/!core/on_ready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/modules/!core/on_ready.py -------------------------------------------------------------------------------- /modis/tools/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/api.py -------------------------------------------------------------------------------- /modis/tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/config.py -------------------------------------------------------------------------------- /modis/tools/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/data.py -------------------------------------------------------------------------------- /modis/tools/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/embed.py -------------------------------------------------------------------------------- /modis/tools/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/help.py -------------------------------------------------------------------------------- /modis/tools/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/log.py -------------------------------------------------------------------------------- /modis/tools/moduledb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/moduledb.py -------------------------------------------------------------------------------- /modis/tools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/modis/tools/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/setup.py -------------------------------------------------------------------------------- /venv-resources/#START MODIS.bat: -------------------------------------------------------------------------------- 1 | call .\Scripts\activate.bat 2 | start pythonw.exe LauncherGUI.pyw -------------------------------------------------------------------------------- /venv-resources/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/venv-resources/Activate.ps1 -------------------------------------------------------------------------------- /venv-resources/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/venv-resources/activate -------------------------------------------------------------------------------- /venv-resources/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/venv-resources/activate.bat -------------------------------------------------------------------------------- /venv-resources/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModisWorks/modis/HEAD/venv-resources/ffmpeg.exe --------------------------------------------------------------------------------