Flask based utility that will allow a user to download an entire Discography for the provided artist.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Brett Spaulding e58ab73f6e
[IMP] Update for win-blows compatibility, add geckdriver source
6 months ago
database [FIX] add purge to ensure that database is clear when dls complete 11 months ago
drivers/geckodriver-0.33.0 [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago
lib [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago
navidrome [IMP] update versions 9 months ago
share [IMP] update versions 9 months ago
static [IMP] Minor improvements to logic 11 months ago
templates Update template with todo. 9 months ago
utils [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago
.gitignore [IMP] Minor improvements to logic 11 months ago
Dockerfile [IMP] update versions 9 months ago
LICENSE [ADD] base working files 11 months ago
README.md Update 'README.md' 9 months ago
__init__.py [IMP] major improvements to the UI, refactor on processor 11 months ago
app.py [IMP] Minor improvements to logic 11 months ago
const.py [ADD] base working files 11 months ago
database.py [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago
docker-compose.yml [IMP] update versions 9 months ago
geckodriver-install.sh [ADD] base working files 11 months ago
lib64 [IMP] update versions 9 months ago
pyvenv.cfg [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago
requirements.txt [IMP] Update for win-blows compatibility, add geckdriver source 6 months ago

README.md

getDiscography

Flask based utility that will allow a user to download an entire Discography for the provided artist.

How to use:

Open the root directory of this project in a terminal.

Create a virtual environment with python.

python -m venv .

For more about virtual environments, look here: https://docs.python.org/3/library/venv.html

While in the virtual env (venv) install the requirements.txt file with:

pip install -r ./requirements.txt

After all dependencies have been installed successfully, start the service with:

python app.py

The service will then be accessible at http://localhost for as long as the terminal stays open. To shutdown the service simply close the terminal or ctl + c

Known issues

The latest versions of Ubuntu (22.04+ I believe) have swicted over to symlinking Firefox to the snap packages. Which causes an issue with the selenium driver. I suppose you could probably point to the executable file directly in the snap (not the symlink). I just use docker with a distro that doesn't have this problem, personally.