diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e4cadfc --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# Config and cache files +config.yml +config.yaml +.cache-* +.session.yml + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +build/ +dist/ +eggs/ +.eggs/ +sdist/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Environments +.env +.venv +env/ +venv/ + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json diff --git a/requirements.txt b/requirements.txt index 5a23c51..9b0f0be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ spotipy==2.21.0 requests>=2.28.1 # for tidalapi -tidalapi==0.7.0 +tidalapi==0.7.1 pyyaml==6.0 tqdm==4.64.1