From f4a6bc6bb95f2ca7073c97f4a2537f2d0b8f72e5 Mon Sep 17 00:00:00 2001 From: KeksNino Date: Wed, 15 Apr 2026 19:52:31 +0200 Subject: [PATCH] remove the editing of metadata post download --- free_bandcamp_downloader/__main__.py | 5 ----- free_bandcamp_downloader/bc_free_downloader.py | 1 - 2 files changed, 6 deletions(-) diff --git a/free_bandcamp_downloader/__main__.py b/free_bandcamp_downloader/__main__.py index 5ba84ce..e5764a2 100644 --- a/free_bandcamp_downloader/__main__.py +++ b/free_bandcamp_downloader/__main__.py @@ -185,11 +185,6 @@ def post_download(album_info: AlbumInfo, config: Config): if unzip and file_name.endswith(".zip"): files = BCFreeDownloader.unzip_album(file_name) - logger.info("Setting tags...") - for file in files: - BCFreeDownloader.tag_file(file, album_info["head_data"]) - - def download_urls(urls: List[str], config: Config): downloader = BCFreeDownloader(options_from_config(config)) downloaded = get_downloaded(config) diff --git a/free_bandcamp_downloader/bc_free_downloader.py b/free_bandcamp_downloader/bc_free_downloader.py index 52d4070..bb26e78 100644 --- a/free_bandcamp_downloader/bc_free_downloader.py +++ b/free_bandcamp_downloader/bc_free_downloader.py @@ -5,7 +5,6 @@ import os import re import time import zipfile -import mutagen import pyrfc6266 import requests