LEGACY
Find a file
2020-09-24 18:34:20 +02:00
webui@dace87887b [webui] feat: added ALT+Left/Right Arrow to move through pages, chore: added hidden features in README 2020-09-24 18:34:20 +02:00
.gitignore Added version to spec file 2020-09-08 19:55:36 +02:00
.gitmodules updated submodule to codeberg 2020-07-20 14:14:18 +02:00
app.py Added 'get_favorites_data' and 'get_settings_data' 2020-09-21 19:35:08 +02:00
deemix-pyweb.desktop Added .desktop file for use in AUR 2020-05-29 20:30:07 +02:00
deemix-pyweb.py Moved arl clear on window open instead of window close 2020-09-23 18:52:15 +02:00
deemix-pyweb.spec Reverted addition of splash screen, as it's not working well on all OSs 2020-09-20 23:15:04 +02:00
icon.icns Updated icon files 2020-06-05 11:54:24 +02:00
icon.ico Updated icon files 2020-06-05 11:54:24 +02:00
icon.svg Fixed issue with track name position inside tables + new icon 2020-06-04 19:20:58 +02:00
LICENSE.txt Added license 2020-04-15 11:12:25 +02:00
README.md Updated README.md 2020-09-21 21:32:01 +02:00
requirements.txt Fixed #17 2020-09-06 21:20:18 +02:00
server-requirements.txt Updated project to use deemix 1.4.0 2020-09-20 11:49:29 +02:00
server.py Moved arl clear on window open instead of window close 2020-09-23 18:52:15 +02:00
server.spec added missing hidden imports to spec files 2020-09-16 15:16:14 +02:00

deemix-pyweb

This is a pywebview wrapper for deemix-webui

Installing the app

NOTES:

  • Python 3 is required for this app. Make sure you tick the option to add Python to PATH when installing.
  • If python3 is "not a recognized command" try using python instead.
  • If you're having issues with the package wheel missing use: python3 -m pip install setuptools wheel --user
  • If you're on Windows Python 3.8 is not supported, you'll need to use Python 3.7 or 3.6

After installing Python open a terminal/command prompt in the app folder and install the dependencies using python3 -m pip install -U -r requirements.txt --user

If you're using git to get this repo you should use git submodule update --init --recursive as well. If you're just downloading the archive.zip, make sure you download and extract deemix-webui into the webui folder.

Having an hard time following these steps? You could try these tools

Using the app

GUI

If you want to use the app with a GUI you can start it by using python3 deemix-pyweb.py.
You can change the port of the server by starting the app with python3 deemix-pyweb.py [PORT].
If you want to change the host IP (If you want to access the app from outside of your pc) you can use the --host custom.host.ip.here parameter.
The --portable flags creates a local folder for the configs allowing to start the app without creating permanent folders on the host machine.

Server

You can run python3 server.py, python3 deemix-pyweb.py --server or python3 deemix-pyweb.py -s to start the server.
The default host and port combination used by the server is 127.0.0.1:6595.
You can change the port of the server by starting the app with python3 server.py [PORT].
Same thing with the host using the --host custom.host.ip.here parameter.
If you want to set a default arl for all connecting clients you can use the --serverwide-arl flag. It will use the same arl used by the cli app, that is located inside a file named .arl in the config folder.
The --portable flags creates a local folder for the configs allowing to start the app without creating permanent folders on the host machine.

Feature requests

Before asking for a feature check this out

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.