├── .gitignore ├── README.md ├── bandcamp.py ├── bandcamp_dl ├── __init__.py └── bandcampDownloader.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/README.md -------------------------------------------------------------------------------- /bandcamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/bandcamp.py -------------------------------------------------------------------------------- /bandcamp_dl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/bandcamp_dl/__init__.py -------------------------------------------------------------------------------- /bandcamp_dl/bandcampDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/bandcamp_dl/bandcampDownloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.3.2 2 | requests==2.20.0 3 | wsgiref==0.1.2 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam09/bandcamp-dl/HEAD/setup.py --------------------------------------------------------------------------------