├── .flake8 ├── .gitignore ├── .isort.cfg ├── LICENSE ├── README.md ├── bandcamp-dl.py └── requirements.txt /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliana/bandcamp-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliana/bandcamp-dl/HEAD/.isort.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliana/bandcamp-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliana/bandcamp-dl/HEAD/README.md -------------------------------------------------------------------------------- /bandcamp-dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iliana/bandcamp-dl/HEAD/bandcamp-dl.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | browser_cookie3 2 | --------------------------------------------------------------------------------