{"id":15698348,"url":"https://github.com/sentriz/bandcamp_downloader","last_synced_at":"2025-09-02T19:34:36.554Z","repository":{"id":17945487,"uuid":"20926956","full_name":"sentriz/bandcamp_downloader","owner":"sentriz","description":"a python 3+ script for downloading, renaming, and tagging albums from Bandcamp","archived":false,"fork":false,"pushed_at":"2020-01-07T21:16:52.000Z","size":251,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-09T01:14:18.276Z","etag":null,"topics":["audio","bandcamp","cli","linux","python","tagging-albums","windows"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sentriz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-17T14:35:27.000Z","updated_at":"2023-03-27T21:21:13.000Z","dependencies_parsed_at":"2022-08-27T19:40:27.564Z","dependency_job_id":null,"html_url":"https://github.com/sentriz/bandcamp_downloader","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/sentriz/bandcamp_downloader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sentriz%2Fbandcamp_downloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sentriz%2Fbandcamp_downloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sentriz%2Fbandcamp_downloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sentriz%2Fbandcamp_downloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sentriz","download_url":"https://codeload.github.com/sentriz/bandcamp_downloader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sentriz%2Fbandcamp_downloader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273340397,"owners_count":25088336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","bandcamp","cli","linux","python","tagging-albums","windows"],"created_at":"2024-10-03T19:26:11.432Z","updated_at":"2025-09-02T19:34:36.525Z","avatar_url":"https://github.com/sentriz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![!](.logo.png)\n\n**bandcamp_dlr** is a python *3+* script for downloading, renaming, and tagging albums from [Bandcamp](http://bandcamp.com/).  \nYou must supply the script an artist and an album name. These must be exactly how you see them in the album url.  \nhttp://**artist**.bandcamp.com/album/**album_name**/\n\n###### note: this software has only been tested on Python 3.4.0, please report any issues you may have on earlier Python 3 versions\n\nInstallation\n-----------\n    pip install -r requirements.txt\n    python bandcamp_dlr.py --help\n\n\nThird party modules\n-----\n\n#### required ####\n\n|name/link|use|\n|:--|:--|\n|[docopt](https://pypi.python.org/pypi/docopt)|argument parsing|\n|[mutagen](https://pypi.python.org/pypi/mutagen)|mp3 tagging|\n|[slimit](https://pypi.python.org/pypi/slimit)|JavaScript minifier|\n\n#### included ####\n\n|name/link|use|author|\n|:--|:--|--:|\n|[wgetter](https://pypi.python.org/pypi/wgetter)|simple file downloading|(c) *phoemur*|\n|[jsobj](https://github.com/darkf/py-js-object-parser)|JavaScript object literal reading|(c) *darkf*|\n|[colorama](https://pypi.python.org/pypi/colorama)|CLI colours|(c) *tartley*|\n\n--\n\nPlease note, you can download the required modules in one step with:\n\n    pip install -r requirements.txt\n\nUsage\n-----\n    bandcamp_dlr.py (\u003curl\u003e | --artist \u003cname\u003e --album \u003cname\u003e)\n                    [--save-art | --embed-art] [--folder \u003cname\u003e] [--exclude \u003clist\u003e]\n                    [--help] [--version]\n\nOptions\n-----\n    --embed-art      Embed album artwork\n    --exclude \u003clist\u003e List of tracks to exclude from download. (separated by \",\")\n    --folder \u003cname\u003e  Name of download folder [default: downloads]\n    --save-art       Download album artwork\n\n    -h, --help       Show this screen\n    -v, --version    Show version\n\nExamples\n-----\n    bandcamp_dlr.py http://frank-zappa.bandcamp.com/album/hot-rats/ --get-art\n    bandcamp_dlr.py --artist=\"the-doors\" --album=\"la-woman\" --folder=\"My Music\"\n    bandcamp_dlr.py --artist=\"pinkfloyd\" --album=\"dsotm\" --exclude=\"3, 5, 7\"\n\nAPI Example\n-----\n````python\nimport Bandcamp\n\nalbum = Bandcamp.Album(\n    url = \"http://{artist}.bandcamp.com/album/{album}\",\n    # \"save\" or \"embed\" album artwork\n    save_or_embed = \"save\",\n    # a list of integers to exclude when downloading\n    # \"exclude = [1, 2]\", for example, will exclude tracks 1 and 2\n    exclude = [],\n    # download tracks to folder \"downloads\"\n    download_folder_name = \"downloads\"\n)\nprint(album.title + \" by \" + album.artist)\nalbum.download()\n````\n\nFAQ\n-----\n\n* *Download has stopped at x%, help?*  \n    Send your shell a KeyboardInterrupt. ^Z, ect.\n\n* *Will this software work on any OS?*  \n    It has only been tested on a Windows machine (so far), but it has been developed in a way that should make it cross-platform. (but not cross-pyversion)\n\nTerms of service/use\n-----\n\nBy using the script above, you acknowledge and agree to the following terms of service/use:  \n1.   Do not use this script to download copyrighted audio.  \n2.   High quality audio is not guaranteed; the script uses audio provided by Bandcamp.  \nPiracy: I do not condone piracy in any form. My goal that this tool be used to obtain legal audio that would otherwise be extremely difficult to find. Bandcamp is a good source for these audio clips and allows new artists to showcase their work and earn a rightful income from it.  \n*To ensure the survival of this tool and to help the artists who are providing the music, please buy their singles/albums directly from Bandcamp.*  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsentriz%2Fbandcamp_downloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsentriz%2Fbandcamp_downloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsentriz%2Fbandcamp_downloader/lists"}