| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: beets | Distribution: openSUSE Tumbleweed |
| Version: 2.8.0 | Vendor: openSUSE |
| Release: 1.1 | Build date: Wed Apr 8 22:53:18 2026 |
| Group: Productivity/Multimedia/Sound/Players | Build host: reproducible |
| Size: 4568544 | Source RPM: beets-2.8.0-1.1.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: http://beets.io/ | |
| Summary: Music tagger and library organizer | |
Beets is a media library management system for obsessive-compulsive music geeks. The purpose of beets is to get a music collection right once and for all. It catalogs the collection, automatically improving its metadata as it goes. It then provides a bouquet of tools for manipulating and accessing the music. beets is designed as a library, has a number of plugins which support these actions: - Fetch or calculate all the metadata that could possibly be needed: album art, lyrics, genres, tempos, ReplayGain levels, or acoustic fingerprints. - Get metadata from MusicBrainz, Discogs, and Beatport, or guess metadata using songs' filenames or their acoustic fingerprints. - Transcode audio to any format. - Check your library for duplicate tracks and albums or for albums that are missing tracks. - Clean up crufty tags left behind by other tools. - Embed and extract album art from files' metadata. - Browse the music library graphically through a Web browser and play it in any browser that supports HTML5 Audio. - Analyze music files' metadata from the command line. - Listen to your library with a music player that speaks the MPD protocol and works with a variety of interfaces. Writing additional plugins for beets is possible using Python.
MIT
* Wed Apr 08 2026 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- update to 2.8.0:
* New features
* Discogs Plugin: Add extra_tags option to use additional tags (such as
barcode, catalognum, country, label, media, and year) in Discogs search
queries.
* Lyrics Plugin: Add auto_ignore configuration option to skip fetching
lyrics for items matching a beets query during auto import.
* Missing Plugin: When running in missing album mode, allows users to
specify MusicBrainz release types to show using the --release-type flag.
The default behavior is also changed to just show releases of type album.
(#2661)
* Play Plugin: Added -R/--randomize flag to shuffle the playlist order
before passing it to the player.
* Smart Playlist Plugin: Add new configuration option dest_regen to
regenerate items' path in the generated playlist instead of using those
in the library. This is useful when items have been imported in don't
copy-move (-C -M) mode in the library but are later passed through the
Convert Plugin plugin which will regenerate new paths according to the
Beets path format.
* Bug fixes
* Beatport Plugin: Use va_name config for the album artist on VA releases
instead of hardcoded "Various Artists". (#6316)
* config command on Windows now uses cmd /c start "" for the default editor
fallback so beet config -e works when VISUAL and EDITOR are unset.
(#6436)
* Fish Plugin: Fix AttributeError. (#6340)
* import command Autotagging by explicit release or recording IDs now keeps
candidates from all enabled metadata sources instead of dropping matches
when different providers share the same ID. (#6178) (#6181)
* import command Simplify autotag metadata application for albums and
singletons, fixing null-overwrite handling and keeping singular/plural
artist metadata fields in sync during tagging.
* LastImport Plugin: Rename flexible field play_count to lastfm_play_count
to avoid conflicts with MPDStats Plugin. Migration: This cannot be
migrated automatically because of the field clash. If you use LastImport
Plugin without MPDStats Plugin, migrate manually with beet modify
lastfm_play_count='$play_count'.
* MBSync Plugin and Missing Plugin now use each item's stored data_source
for ID lookups, with a fallback to MusicBrainz.
* Missing Plugin: Fix --album mode incorrectly reporting albums already in
the library as missing. The comparison now correctly uses
mb_releasegroupid.
* MusicBrainz Plugin: Use va_name config for albumartist_sort,
albumartists_sort, albumartist_credit, albumartists_credit, and
albumartists on VA releases instead of hardcoded "Various Artists".
(#6316)
* replace: Made drive_sep_replace regex logic more precise to prevent
edge-case mismatches (e.g., a song titled "1:00 AM" would incorrectly be
considered a Windows drive path).
* Other changes
* Contributing: Update pipx installation guide link
* Getting Started: Update quick installation section to reflect current
installation guide structure.
* Installation: Remove redundant macOS section from the installation guide.
(#5993)
* Installation: Update installation guide to document plugin management
with pipx and move package manager instructions to the FAQ.
* Installation: Update pipx installation guide link
* API-backed metadata source plugins can now use
SearchApiMetadataSourcePlugin for shared search orchestration. Implement
provider behavior in
~beets.metadata_plugins.SearchApiMetadataSourcePlugin.get_search_query_with_filters
and
~beets.metadata_plugins.SearchApiMetadataSourcePlugin.get_search_response.
* Deprecate the Beatport Plugin and BPSync Plugin plugins. Beatport has
retired the API these plugins rely on, making them non-functional.
(#3862)
* Wed Apr 08 2026 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- Update dependencies to matches the changes in version 2.6.0 to 2.7.1
* Wed Mar 25 2026 Dirk Müller <dmueller@suse.com>
- update to 2.7.1:
* Tests that depend on the optional langdetect package are now
skipped when the package is not installed. :bug:`6421`
* :doc:`plugins/lastgenre`: Added cleanup_existing
configuration flag to allow whitelist canonicalization of
existing genres.
* Add native support for multiple genres per album/track. The
genres field now stores genres as a list and is written to
files as multiple individual genre tags (e.g., separate GENRE
tags for FLAC/MP3). The :doc:`plugins/musicbrainz`,
:doc:`plugins/beatport`, :doc:`plugins/discogs` and
:doc:`plugins/lastgenre` plugins have been updated to
populate the genres field as a list. Migration: Existing
libraries with comma-separated, semicolon-separated, or
slash-separated genre strings (e.g., "Rock, Alternative,
Indie") are automatically migrated to the genres list when
you first run beets after upgrading. The migration runs once
when the database schema is updated, splitting genre strings
and writing the changes to the database. The updated genres
values will be written to media files the next time you run a
command that writes tags (such as beet write or during
import). No manual action or mbsync is required. The genre
field is split by the first separator found in the string, in
the following order of precedence: :doc:`plugins/lastgenre`
separator configuration Semicolon followed by a space Comma
followed by a space Slash wrapped by spaces
* :doc:`plugins/lastgenre` separator configuration
* Semicolon followed by a space
* Comma followed by a space
* Slash wrapped by spaces
* :doc:`plugins/lyrics`: With synced enabled, existing synced
lyrics are no longer replaced by newly fetched plain lyrics,
even when force is enabled.
* :doc:`plugins/lyrics`: Remove Source: <lyrics-url> suffix
from lyrics. Store the backend name in lyrics_backend, URL in
lyrics_url, language in lyrics_language and translation
language (if translations present) in
lyrics_translation_language flexible attributes. Lyrics are
automatically migrated on the first beets run. :bug:`6370`
* :doc:`plugins/ftintitle`: Fix handling of multiple featured
artists with ampersand.
* :doc:`plugins/zero`: When the omit_single_disc option is set,
disctotal is zeroed alongside disc.
* :doc:`plugins/fetchart`: Prevent deletion of configured
fallback cover art
* :ref:`import-cmd` When autotagging, initialise empty multi-
valued fields with None instead of empty list, which caused
beets to overwrite existing metadata with empty list values
instead of leaving them unchanged. :bug:`6403`
* :doc:`plugins/fuzzy`: Improve fuzzy matching when the query
is shorter than the field value so substring-style searches
produce more useful results. :bug:`2043`
* :doc:`plugins/fuzzy`: Force slow query evaluation whenever
the fuzzy prefix is used (for example ~foo or %%foo), so
fuzzy matching is applied consistently. :bug:`5638`
* :ref:`import-cmd` Duplicate detection now works for as-is
imports (when autotag is disabled). Previously,
duplicate_keys and duplicate_action config options were
silently ignored for as-is imports.
* :doc:`/plugins/convert`: Fix extension substitution inside
path of the exported playlist.
* If you maintain a metadata source plugin that populates the
genre field, please update it to populate a list of genres
instead. You will see a deprecation warning for now, but
support for populating the single genre field will be removed
in version 3.0.0.
* :ref:`modify-cmd`: Use the following separator to delimit
multiple field values: |semicolon_space|. For example beet
modify albumtypes="album; ep". Previously, \␀ was used as a
separator. This applies to fields such as artists, albumtypes
etc.
* Improve highlighting of multi-valued fields changes.
* :doc:`plugins/edit`: Editing multi-valued fields now behaves
more naturally, with list values handled directly to make
metadata edits smoother and more predictable.
* :doc:`plugins/lastgenre`: The separator configuration option
is removed. Since genres are now stored as a list in the
genres field and written to files as individual genre tags,
this option has no effect and has been removed.
* :doc:`plugins/lyrics`: To cut down noise from the lrclib
lyrics source, synced lyrics are now checked to ensure the
final verse falls within the track's duration.
* Updated URLs in the documentation to use HTTPS where possible
and updated outdated links.
* :doc:`plugins/musicbrainz`: Fix crash when release mediums
lack the tracks key. :bug:`6302`
* :doc:`plugins/musicbrainz`: Fix search terms escaping.
:bug:`6347`
* :doc:`plugins/musicbrainz`: Fix support for alias and tracks
:conf:`plugins.musicbrainz:extra_tags`.
* :doc:`plugins/musicbrainz`: Fix fetching very large releases
that have more than 500 tracks. :bug:`6355`
* :doc:`plugins/badfiles`: Fix number of found errors in log
message
* :doc:`plugins/replaygain`: Avoid magic Windows prefix in
calls to command backends, such as mp3gain. :bug:`2946`
* :doc:`plugins/mbpseudo`: Fix crash due to missing
artist_credit field in the MusicBrainz API response.
:bug:`6339`
* :ref:`config-cmd`: Improved error message when user-
configured editor does not exist. :bug:`6176`
* :doc:`plugins/lyrics`: Disable tekstowo by default because it
blocks the beets User-Agent.
* Make packaging a required dependency. :bug:`6332`
* :doc:`plugins/fetchart`: Added config setting for a fallback
cover art image.
* :doc:`plugins/ftintitle`: Added argument for custom feat.
words in ftintitle.
* :doc:`plugins/ftintitle`: Added album template value
album_artist_no_feat.
* :doc:`plugins/musicbrainz`: Allow selecting tags or genres to
populate the genres tag.
* :doc:`plugins/ftintitle`: Added argument to skip the
processing of artist and album artist are the same in
ftintitle.
* :doc:`plugins/play`: Added $playlist marker to precisely edit
the playlist filepath into the command calling the player
program.
* :doc:`plugins/lastgenre`: For tuning plugin settings -vvv can
be passed to receive extra verbose logging around last.fm
results and how they are resolved. The extended_debug config
setting and --debug option have been removed.
* :doc:`plugins/importsource`: Added new plugin that tracks
original import paths and optionally suggests removing source
files when items are removed from the library.
* :doc:`plugins/mbpseudo`: Add a new mbpseudo plugin to
proactively receive MusicBrainz pseudo-releases as
recommendations during import.
* Added support for Python 3.13.
* :doc:`/plugins/convert`: force can be passed to override
checks like no_convert, never_convert_lossy_files, same
format, and max_bitrate
* :doc:`plugins/titlecase`: Add the titlecase plugin to allow
users to resolve differences in metadata source styles.
* :doc:`plugins/spotify`: Added support for multi-artist albums
and tracks, saving all contributing artists to the respective
fields.
* :doc:`plugins/fetchart`: Fix colorized output text.
* :doc:`plugins/ftintitle`: Featured artists are now inserted
before brackets containing remix/edit-related keywords (e.g.,
"Remix", "Live", "Edit") instead of being appended at the
end. This improves formatting for titles like "Song 1 (Carol
Remix) ft. Bob" which becomes "Song 1 ft. Bob (Carol Remix)".
A variety of brackets are supported and a new
bracket_keywords configuration option allows customizing the
keywords. Setting bracket_keywords to an empty list matches
any bracket content regardless of keywords.
* :doc:`plugins/discogs`: Added support for multi value fields.
:bug:`6068`
* :doc:`plugins/embedart`: Embedded arts can now be cleared
during import with the clearart_on_import config option.
Also, beet clearart is only going to update the files
matching the query and with an embedded art, leaving
untouched the files without.
* :doc:`plugins/fish`: Filenames are now completed in more
places, like after beet import.
* :doc:`plugins/random`: Added --field option to specify which
field to use for equal-chance sampling (default:
albumartist).
* :doc:`/plugins/lastgenre`: Canonicalize genres when force and
keep_existing are on, yet no genre info on lastfm could be
found. :bug:`6303`
* Handle potential OSError when unlinking temporary files in
ArtResizer. :bug:`5615`
* :doc:`/plugins/spotify`: Updated Spotify API credentials.
:bug:`6270`
* :doc:`/plugins/smartplaylist`: Fixed an issue where multiple
queries in a playlist configuration were not preserving their
order, causing items to appear in database order rather than
the order specified in the config. :bug:`6183`
* :doc:`plugins/inline`: Fix recursion error when an inline
field definition shadows a built-in item field (e.g.,
redefining track_no). Inline expressions now skip self-
references during evaluation to avoid infinite recursion.
:bug:`6115`
* When hardlinking from a symlink (e.g. importing a symlink
with hardlinking enabled), dereference the symlink then
hardlink, rather than creating a new (potentially broken)
symlink :bug:`5676`
* :doc:`/plugins/spotify`: The plugin now gracefully handles
audio-features API deprecation (HTTP 403 errors). When a 403
error is encountered from the audio-features endpoint, the
plugin logs a warning once and skips audio features for all
remaining tracks in the session, avoiding unnecessary API
calls and rate limit exhaustion.
* Running beet --config <mypath> config -e now edits <mypath>
rather than the default config path. :bug:`5652`
* :doc:`plugins/lyrics`: Accepts strings for lyrics sources
(previously only accepted a list of strings). :bug:`5962`
* Fix a bug introduced in release 2.4.0 where import from any
valid import-log-file always threw a "none of the paths are
importable" error.
* :doc:`/plugins/web`: repair broken /item/values/… and
/albums/values/… endpoints. Previously, due to single-quotes
(ie. string literal) in the SQL query, the query eg. GET
/item/values/albumartist would return the literal
"albumartist" instead of a list of unique album artists.
* Sanitize log messages by removing control characters
preventing terminal rendering issues.
* When using :doc:`plugins/fromfilename` together with
:doc:`plugins/edit`, temporary tags extracted from filenames
are no longer lost when discarding or cancelling an edit
session during import. :bug:`6104`
* :ref:`update-cmd` :doc:`plugins/edit` fix display formatting
of field changes to clearly show added and removed flexible
fields.
* :doc:`plugins/lastgenre`: Fix the issue where last.fm doesn't
return any result in the artist genre stage because
"concatenation" words in the artist name (like "feat.", "+",
or "&") prevent it. Using the albumartists list field and
fetching a genre for each artist separately improves the
chance of receiving valid results in that stage.
* :doc:`/plugins/ftintitle`: Fixed artist name splitting to
prioritize explicit featuring tokens (feat, ft, featuring)
over generic separators (&, and), preventing incorrect splits
when both are present.
* :doc:`reference/cli`: Fix 'from_scratch' option for singleton
imports: delete all (old) metadata when new metadata is
applied. :bug:`3706`
* :doc:`/plugins/convert`: auto_keep now respects no_convert
and never_convert_lossy_files when deciding whether to
copy/transcode items, avoiding extra lossy duplicates.
* :doc:`plugins/discogs`: Fixed unexpected flex attr from the
Discogs plugin. :bug:`6177`
* Errors in metadata plugins during autotage process will now
be logged but won't crash beets anymore. If you want to raise
exceptions instead, set the new configuration option
raise_on_error to yes :bug:`5903`, :bug:`4789`.
* A new plugin event, album_matched, is sent when an album that
is being imported has been matched to its metadata and the
corresponding distance has been calculated.
* Added a reusable requests handler which can be used by
plugins to make HTTP requests with built-in retry and backoff
logic. It uses beets user-agent and configures timeouts. See
:class:`~beetsplug._utils.requests.RequestHandler` for
documentation.
* Replaced dependency on python-musicbrainzngs with a
lightweight custom MusicBrainz client implementation and
updated relevant plugins accordingly:
:doc:`plugins/listenbrainz` :doc:`plugins/mbcollection`
:doc:`plugins/mbpseudo` :doc:`plugins/missing`
:doc:`plugins/musicbrainz` :doc:`plugins/parentwork` See
:class:`~beetsplug._utils.musicbrainz.MusicBrainzAPI` for
documentation.
* :doc:`plugins/listenbrainz`
* :doc:`plugins/mbcollection`
* :doc:`plugins/mbpseudo`
* :doc:`plugins/missing`
* :doc:`plugins/musicbrainz`
* :doc:`plugins/parentwork`
* The minimum supported Python version is now 3.10.
* An unused dependency on mock has been removed.
* The documentation chapter :doc:`dev/paths` has been moved to
the "For Developers" section and revised to reflect current
best practices (pathlib usage).
* Refactored the beets/ui/commands.py monolithic file (2000+
lines) into multiple modules within the beets/ui/commands
directory for better maintainability.
* :doc:`plugins/bpd`: Raise ImportError instead of ValueError
when GStreamer is unavailable, enabling importorskip usage in
pytest setup.
* Finally removed gmusic plugin and all related code/docs as
the Google Play Music service was shut down in 2020.
* Updated color documentation with bright_* and bg_bright_*
entries.
* Moved beets/random.py into beetsplug/random.py to cleanup
core module.
* dbcore: Allow models to declare SQL indices; add an
items.album_id index to speed up album.items() queries.
:bug:`5809`
* Wed Oct 15 2025 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- update to 2.5.1:
* New features
* Zero Plugin: Add new configuration option, omit_single_disc, to allow
zeroing the disc number on write for single-disc albums. Defaults to
False.
* Bug fixes
* beets.plugins.BeetsPlugin: load the last plugin class defined in the
plugin namespace. (#6093)
* For packagers
* Fixed issue with legacy metadata plugins not copying properties from the
base class.
* Reverted the following: When installing beets via git or locally the
version string now reflects the current git branch and commit hash.
(#6089)
* Other changes
* Removed outdated mailing list contact information from the documentation
(#5462).
* Getting Started: Modernized the Getting Started guide with tabbed
sections and dropdown menus. Installation instructions have been
streamlined, and a new subpage now provides additional setup details.
* Mon Oct 13 2025 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- update to 2.5.0:
* New features
* Convert Plugin: Add a config option to disable writing metadata to
converted files.
* Discogs Plugin Added support for featured artists. (#6038)
* Discogs Plugin New configuration option featured_string to change the
default string used to join featured artists. The default string is
Feat..
* Discogs Plugin Support for artist_credit in Discogs tags. (#3354)
* Discogs Plugin Support for name variations and config options to specify
where the variations are written. (#3354)
* Discogs Plugin: New config option strip_disambiguation to toggle
stripping discogs numeric disambiguation on artist and label fields.
* LastGenre Plugin: Add a --pretend option to preview genre changes without
storing or writing them.
* Bug fixes
* Metadata source plugins: Fixed data source penalty calculation that was
incorrectly applied during import matching. The source_weight
configuration option has been renamed to data_source_mismatch_penalty to
better reflect its purpose. (#6066)
* Chromaprint/Acoustid Plugin BPSync Plugin Fix plugin loading issue caused
by an import of another beets.plugins.BeetsPlugin class. (#6033)
* Discogs Plugin Fixed inconsistency in stripping disambiguation from
artists but not labels. (#5366)
* FromFilename Plugin: Fix (#5218), improve the code (refactor regexps,
allow for more cases, add some logging), add tests.
* MusicBrainz Plugin Refresh flexible MusicBrainz metadata on reimport so
format changes are applied. (#6036)
* Spotify Plugin Ensure spotifysync keeps popularity, ISRC, and related
fields current even when audio features requests fail. (#6061)
* Spotify Plugin Fixed an issue where candidate lookup would not find
matches due to query escaping (single vs double quotes).
* Spotify Plugin Fixed an issue where track matching and lookups could
return incorrect or misleading results when using the Spotify plugin. The
problem occurred primarily when no album was provided or when the album
field was an empty string. (#5189)
* Spotify Plugin Removed old and undocumented config options artist_field,
album_field and track that were causing issues with track matching.
(#5189)
* Other changes
* Moved art.py utility module from beets into beetsplug namespace as it is
not used in the core beets codebase. It can now be found in
beetsplug._utils.
* Moved vfs.py utility module from beets into beetsplug namespace as it is
not used in the core beets codebase. It can now be found in
beetsplug._utils.
* When installing beets via git or locally the version string now reflects
the current git branch and commit hash. (#4448)
* Autotagger Matching Options: match.distance_weights.source configuration
has been renamed to match.distance_weights.data_source for consistency
with the name of the field it refers to.
* FAQ: Add check for musicbrainz plugin if auto-tagger can't find a match
(#6020)
* Plugins: Clarify that musicbrainz must be mentioned if plugin list
modified (#6020)
* Using the Auto-Tagger: Section on no matching release found, related to
possibly disabled musicbrainz plugin (#6020)
* beets.metadata_plugin.MetadataSourcePlugin: Remove discogs specific
disambiguation stripping.
* For developers and plugin authors
* Metadata source plugins are now registered globally when instantiated,
which makes their handling slightly more efficient.
* The track_distance() and album_distance() methods have been removed from
MetadataSourcePlugin. Distance calculation for data source mismatches is
now handled automatically by the core matching logic. This change
simplifies the plugin architecture and fixes incorrect penalty
calculations. (#6066)
* Typing improvements in beets/logging.py: getLogger now returns
BeetsLogger when called with a name, or RootLogger when called without a
name.
- update to 2.4.0:
* New features
* Discogs Plugin: Add configurable search_limit option to limit the number
of results returned by the Discogs metadata search queries.
* Discogs Plugin: Implement track_for_id method to allow retrieving
singletons by their Discogs ID. (#4661)
* Duplicates Plugin: Add --remove option, allowing to remove from the
library without deleting media files. (#5832)
* MPDStats Plugin: Add new configuration option, played_ratio_threshold, to
allow configuring the percentage the song must be played for it to be
counted as played instead of skipped.
* MusicBrainz Collection Plugin: When getting the user collections, only
consider collections of releases, and ignore collections of other entity
types.
* MusicBrainz Plugin: The MusicBrainz autotagger has been moved to a
separate plugin. The default plugins includes MusicBrainz Plugin, but if
you've customized your plugins list in your configuration, you'll need to
explicitly add MusicBrainz Plugin to continue using this functionality.
Configuration option musicbrainz.enabled has thus been deprecated.
(#2686) (#4605)
* Playlist Plugin: Support files with the .m3u8 extension. (#5829)
* Replace Plugin: Add new plugin.
* Spotify Plugin Deezer Plugin: Add new configuration option search_limit
to limit the number of results returned by search queries.
* Web Plugin: Display artist and album as part of the search results.
* Web Plugin: Show notifications when a track plays. This uses the Media
Session API to customize media notifications.
* Bug fixes
* Fix HiddenFileTest by using bytestring_path().
* Fix an issue where calling Library.add would cause the database_change
event to be sent twice, not once. (#5560)
* Fixed regression with ListenBrainz Plugin where the plugin could not be
loaded (#5975)
* Chromaprint/Acoustid Plugin: AcoustID lookup HTTP requests will now time
out after 10 seconds, rather than hanging the entire import process.
* Deezer Plugin: Fix the issue with that every query to deezer was ascii
encoded. This resulted in bad matches for queries that contained special
e.g. non latin characters as 盗作. If you want to keep the legacy
behavior set the config option deezer.search_query_ascii: yes. (#5860)
* Discogs Plugin: Beets will no longer crash if a release has been deleted,
and returns a 404.
* LastGenre Plugin: Fix the issue introduced in Beets 2.3.0 where
non-whitelisted last.fm genres were not canonicalized to parent genres.
(#5930)
* MusicBrainz Plugin: Fix the MusicBrainz search not taking into account
the album/recording aliases
* MusicBrainz Plugin: fix regression where user configured extra_tags have
been read incorrectly. (#5788)
* Spotify Plugin: Fix the issue with that every query to spotify was ascii
encoded. This resulted in bad matches for queries that contained special
e.g. non latin characters as 盗作. If you want to keep the legacy
behavior set the config option spotify.search_query_ascii: yes. (#5699)
* tests: Fix library tests failing on Windows when run from outside D:/.
(#5802)
* tests: Fix tests failing without langdetect (by making it required).
(#5797)
* For packagers
* Loosened typing_extensions dependency in pyproject.toml to apply to every
python version.
* Optional extra_tags parameter has been removed from
BeetsPlugin.candidates method signature since it is never passed in. If
you override this method in your plugin, feel free to remove this
parameter.
* For plugin developers
* The FetchArt Plugin plugins has seen a few changes to function signatures
and source registration in the process of introducing typings to the
code. Custom art sources might need to be adapted.
* We split the responsibilities of plugins into two base classes
* beets.plugins.BeetsPlugin is the base class for all plugins, any plugin
needs to inherit from this class.
* beets.metadata_plugin.MetadataSourcePlugin allows plugins to act like
metadata sources. E.g. used by the MusicBrainz plugin. All plugins in
the beets repo are opted into this class where applicable. If you are
maintaining a plugin that acts like a metadata source, i.e. you expose
any of track_for_id, album_for_id, candidates, item_candidates,
album_distance, track_distance methods, please update your plugin to
inherit from the new baseclass, as otherwise your plugin will stop
working with the next major release.
* Several definitions have been moved:
* BLOB_TYPE constant, PathQuery and SingletonQuery queries have moved
from beets.library to beets.dbcore.query module
* DateType, DurationType, PathType types and MusicalKey class have moved
from beets.library to beets.dbcore.types module.
* Distance has moved from beets.autotag to beets.autotag.distance module.
* beets.autotag.current_metadata has been renamed to
beets.util.get_most_common_tags.
Old imports are now deprecated and will be removed in version 3.0.0.
* beets.ui.decargs is deprecated and will be removed in version 3.0.0.
* Beets is now PEP 561 compliant, which means that it provides type hints
for all public APIs. This allows IDEs to provide better autocompletion
and type checking for downstream users of the beets API.
* plugins.find_plugins function does not anymore load plugins. You need to
explicitly call plugins.load_plugins() to load them.
* plugins.load_plugins function does not anymore accept the list of plugins
to load. Instead, it loads all plugins that are configured by plugins
configuration.
* Flexible fields, which can be used by plugins to store additional
metadata, now also support list values. Previously, beets would throw an
error while storing the data in the SQL database due to missing type
conversion. (#5698)
* Other changes
* Added a test to check that all plugins can be imported without errors.
* Documentation structure for auto generated API references changed
slightly. Autogenerated API references are now located in the docs/api
subdirectory.
* Refactor: Split responsibilities of Plugins into MetaDataPlugins and
general Plugins.
* Refactored library.py file by splitting it into multiple modules within
the beets/library directory.
* UI: Update default text_diff_added color from bold red to bold green.
* UI: Use text_diff_added and text_diff_removed colors in all diff
comparisons, including case differences.
* Getting Started: Add instructions to install beets on Void Linux.
* LastGenre Plugin: Refactor loading whitelist and canonicalization file.
(#5979)
* LastGenre Plugin: Updated and streamlined the genre whitelist and
canonicalization tree (#5977)
* Substitute Plugin: Fix rST formatting for example cases so that each case
is shown on separate lines.
- Bump minimum version of Python
- Add optional langdetect dependency for the lyrics plugin
* Tue Sep 16 2025 Daniel Garcia <daniel.garcia@suse.com>
- Add missing requirements python3-numpy and python3-lap, bsc#1249619
- Remove leftover requirement python3-munkres
- Add missing requirement python3-sqlite3
* Thu Sep 11 2025 Dirk Müller <dmueller@suse.com>
- update to 2.3.1:
* :doc:`plugins/lastgenre`: The new configuration option,
keep_existing, provides more fine-grained control over how
pre-populated genre tags are handled. The force option now
behaves in a more conventional manner. :bug:`4982`
* :doc:`plugins/lyrics`: Add new configuration option
dist_thresh to control the maximum allowed distance between
the lyrics search result and the tagged item's artist and
title. This is useful for preventing false positives when
fetching lyrics.
* :doc:`plugins/lyrics`: Rewrite lyrics translation
functionality to use Azure AI Translator API and add relevant
instructions to the documentation.
* :doc:`plugins/missing`: Add support for all metadata sources.
* :doc:`plugins/mbsync`: Add support for all metadata sorces.
* :doc:`plugins/thumbnails`: Fix API call to GIO on big endian
architectures (like s390x) in thumbnails plugin. :bug:`5708`
* :doc:`plugins/listenbrainz`: Fix rST formatting for URLs of
Listenbrainz API Key documentation and config.yaml.
* :doc:`plugins/listenbrainz`: Fix UnboundLocalError in cases
where 'mbid' is not defined.
* :doc:`plugins/fetchart`: Fix fetchart bug where a tempfile
could not be deleted due to never being properly closed.
:bug:`5521`
* :doc:`plugins/lyrics`: LRCLib will fallback to plain lyrics
if synced lyrics are not found and synced flag is set to yes.
* Synchronise files included in the source distribution with
what we used to have before the introduction of Poetry.
:bug:`5531` :bug:`5526`
* :ref:`write-cmd`: Fix the issue where for certain files
differences in mb_artistid, mb_albumartistid and albumtype
fields are shown on every attempt to write tags. Note: your
music needs to be reimported with beet import -LI or
synchronised with beet mbsync in order to fix this!
:bug:`5265` :bug:`5371` :bug:`4715`
* :ref:`import-cmd`: Fix MemoryError and improve performance
tagging large albums by replacing munkres library with
lap.lapjv. :bug:`5207`
* :ref:`query-sort`: Fix a bug that would raise an exception
when sorting on a non-string field that is not populated in
all items. :bug:`5512`
* :doc:`plugins/lastgenre`: Fix track-level genre handling. Now
when an album-level genre is set already, single tracks don't
fall back to the album's genre and request their own last.fm
genre. Also log messages regarding what's been tagged are now
more polished. :bug:`5582`
* Fix ambiguous column name sqlite3.OperationalError that
occured in album queries that filtered album track titles,
for example beet list -a keyword title:foo.
* :doc:`plugins/lyrics`: Rewrite lyrics tests using pytest to
provide isolated configuration for each test case. This fixes
the issue where some tests failed because they read
developers' local lyrics configuration. :bug:`5133`
* :doc:`plugins/lyrics`: Do not attempt to search for lyrics if
either the artist or title is missing and ignore artist_sort
value if it is empty. :bug:`2635`
* :doc:`plugins/lyrics`: Fix fetching lyrics from lrclib
source. If we cannot find lyrics for a specific album,
artist, title combination, the plugin now tries to search for
the artist and title and picks the most relevant result.
Update the default sources configuration to prioritize lrclib
over other sources since it returns reliable results quicker
than others. :bug:`5102`
* :doc:`plugins/lyrics`: Fix the issue with genius backend not
being able to match lyrics when there is a slight variation
in the artist name. :bug:`4791`
* :doc:`plugins/lyrics`: Fix plugin crash when genius backend
returns empty lyrics. :bug:`5583`
* ImageMagick 7.1.1-44 is now supported.
* :doc:`plugins/parentwork`: Only output parentwork changes
when running in verbose mode.
* The minimum supported Python version is now 3.9.
* External plugin developers: beetsplug/__init__.py file can be
removed from your plugin as beets now uses native/implicit
namespace package setup.
* Release workflow: fix the issue where the new release tag is
created for the wrong (outdated) commit. Now the tag is
created in the same workflow step right after committing the
version update. :bug:`5539`
* :doc:`/plugins/smartplaylist`: URL-encode additional item
fields within generated EXTM3U playlists instead of JSON-
encoding them.
* typehints: ./beets/importer.py file now has improved
typehints.
* typehints: ./beets/plugins.py file now includes typehints.
* :doc:`plugins/ftintitle`: Optimize the plugin by avoiding
unnecessary writes to the database.
* Database models are now serializable with pickle.
* Fri Jan 17 2025 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- Update to 2.2.0
* New features
* /plugins/substitute: Allow the replacement string to use capture groups
from the match. It is thus possible to create more general rules,
applying to many different artists at once.
* Bug fixes
* Bring back test files and the manual to the source distribution tarball.
* Fix bug where matcher doesn't consider medium number when importing. This
makes it difficult to import hybrid SACDs and other releases with
duplicate tracks.
* Check if running python from the Microsoft Store and provide feedback to
install from python.org.
* Other changes
* Changed bitesize label to good first issue. Our contribute page is now
automatically populated with these issues.
- Update to 2.1.0
* New features
* Ability to query albums with track db fields and vice-versa, for example
beet list -a title:something or beet list artpath:cover. Consequently
album queries involving path field have been sped up, like beet list -a
path:/path/.
* Beets now uses platformdirs to determine the default music directory.
This location varies between systems -- for example, users can configure
it on Unix systems via user-dirs.dirs(5).
* New template function added: %capitalize. Converts the first letter of
the text to uppercase and the rest to lowercase.
* Plugin autobpm: Add new configuration option beat_track_kwargs which
enables adjusting keyword arguments supplied to librosa's beat_track
function call.
* Plugin ftintitle: New keep_in_artist option for the plugin, which allows
keeping the "feat." part in the artist metadata while still changing the
title.
* Bug fixes
* Album flexible fields are now correctly saved. For instance MusicBrainz
external links such as bandcamp_album_id will be available on albums in
addition to tracks. For albums already in your library, a re-import is
required for the fields to be added. Such a re-import can be done with,
in this case, beet import -L data_source:=MusicBrainz.
* Fix lyrics plugin only getting part of the lyrics from Genius.com
* Fix the TypeError when set_fields is provided non-string values.
* Fix the auto value for the reflink config option.
* Improve naming of temporary files by separating the random part with the
file extension.
* Plugin autobpm: Fix the TypeError where tempo was being returned as a
numpy array. Update librosa dependency constraint to prevent similar
issues in the future.
* Plugin convert: Fixed the convert plugin no_convert option so that it no
longer treats "and" and "or" queries the same. To maintain previous
behaviour add commas between your query keywords. For help see
combiningqueries.
* Plugin discogs: Fix the TypeError when there is no description.
* Plugin ftintitle: The detection of a "feat. X" part in a song title does
not produce any false positives caused by words like "and" or "with"
anymore.
* Plugin ftintitle: The detection of a "feat. X" part now also matches such
parts if they are in parentheses or brackets.
* Plugin lyrics: Update tekstowo backend to fetch lyrics directly since
recent updates to their website made it unsearchable.
* Use single quotes in all SQL queries
* For packagers
* The beet script has been removed from the repository.
* The typing_extensions is required for Python 3.10 and below.
* The minimum supported Python version is now 3.8.
* Other changes
* Added caching for dependency installation in all CI jobs which speeds
them up a bit, especially the tests.
* GitHub workflows have been reorganised for clarity: style, linting, type
and docs checks now live in separate jobs and are named accordingly.
* Installation instructions have been made consistent across plugins
documentation. Users should simply install beets with an extra of the
corresponding plugin name in order to install extra dependencies for that
plugin.
* Plugin autobpm: Add plugin dependencies to pyproject.toml under the
autobpm extra and update the plugin installation instructions in the
docs. Since importing the bpm calculation functionality from librosa
takes around 4 seconds, update the plugin to only do so when it actually
needs to calculate the bpm. Previously this import was being done
immediately, so every beet invocation was being delayed by a couple of
seconds.
* The linting workflow has been made to run only when Python files or
documentation is changed, and they only check the changed files. When
dependencies are updated (poetry.lock), then the entire code base is
checked.
* The long-deprecated beets.util.confit module has been removed. This may
cause extremely outdated external plugins to fail to load.
* contributing: Since poetry now manages local virtual environments, tox
has been replaced by a task runner poethepoet. This change affects beets
developers and contributors. Please see updates in the development-tools
section for more details. Type poe while in the project directory to see
the available commands.
* contributing: The project now uses poetry for packaging and dependency
management. This change affects project management and mostly affects
beets developers. Please see updates in getting-the-source and testing
for more information.
* Tue Jul 09 2024 Frantisek Simorda <frantisek.simorda@suse.com>
- Update to 2.0.0
Major new features
* The beets importer UI received a major overhaul. Several new configuration options are available for customizing layout and colors: ui_options.
New features
* edit: Prefer editor from VISUAL environment variable over EDITOR.
* config: Prefer editor from VISUAL environment variable over EDITOR.
* listenbrainz: Add initial support for importing history and playlists from ListenBrainz
* mbsubmit: add new prompt choices helping further to submit unmatched tracks to MusicBrainz faster.
* spotify: We now fetch track's ISRC, EAN, and UPC identifiers from Spotify when using the spotifysync command.
* discogs: supply a value for the cover_art_url attribute, for use by fetchart.
* update: added `-e` flag for excluding fields from being updated.
* deezer: Import rank and other attributes from Deezer during import and add a function to update the rank of existing items.
* resolve transl-tracklisting relations for pseudo releases and merge data with the actual release
* Fetchart: Use the right field (spotify_album_id) to obtain the Spotify album id
* Prevent reimporting album if it is permanently removed from Spotify
* Added option to use cover_art_url as an album art source in the fetchart plugin.
* fetchart: The plugin can now get album art from spotify.
* Added option to specify a URL in the embedart plugin.
* list singleton:true queries have been made faster
* list singleton:1 and singleton:0 can now alternatively be used in queries, same as comp
* --from-logfile now parses log files using a UTF-8 encoding in beets/beets/ui/commands.py.
* bareasc lookups have been made faster
* list lookups using the pattern operator :: have been made faster
* Added additional error handling for spotify plugin.
* We now import the remixer field from Musicbrainz into the library.
* mbsubmit: Added a new mbsubmit command to print track information to be submitted to MusicBrainz after initial import.
* Added spotify_updated field to track when the information was last updated.
* We now import and tag the album information when importing singletons using Spotify source.
* spotify: The plugin now provides an additional command spotifysync that allows getting track popularity and audio features information from Spotify.
* spotify: The plugin now records Spotify-specific IDs in the spotify_album_id, spotify_artist_id, and spotify_track_id fields.
* Create the parental directories for database if they do not exist.
* musicbrainz-config: a new musicbrainz.enabled option allows disabling the MusicBrainz metadata source during the autotagging process
* kodiupdate: Now supports multiple kodi instances
* Add the item fields bitrate_mode, encoder_info and encoder_settings.
* Add query prefixes = and ~.
* A new configuration option, duplicate_keys, lets you change which fields the beets importer uses to identify duplicates.
* Add exact match <exact-match> queries, using the prefixes = and =~.
* discogs: Permit appending style to genre.
* discogs: Implement item_candidates for matching singletons.
* discogs: Check for compliant discogs_client module.
* convert: Add a new auto_keep option that automatically converts files but keeps the originals in the library.
* Added a -P (or --disable-plugins) flag to specify one/multiple plugin(s) to be disabled at startup.
* import-options: Add support for re-running the importer on paths in log files that were created with the -l (or --logfile) argument.
* Preserve mtimes from archives
* Add %sunique{} <sunique> template to disambiguate between singletons.
* Add a new import.ignored_alias_types config option to allow for specific alias types to be skipped over when importing items/albums.
* smartplaylist: A new --pretend option lets the user see what a new or changed smart playlist saved in the config is actually returning.
* fromfilename: Add debug log messages that inform when the plugin replaced bad (missing) artist, title or tracknumber metadata.
* musicbrainz-config: MusicBrainz release pages often link to related metadata sources like Discogs, Bandcamp, Spotify, Deezer and Beatport. When enabled via the musicbrainz.external_ids options, release ID's will be extracted from those URL's and imported to the library.
* convert: Add support for generating m3u8 playlists together with converted media files.
* Fetch the release_group_title field from MusicBrainz. 4809
* discogs: Add support for applying album information on singleton imports. 4716
* smartplaylist: During explicit runs of the splupdate command, the log message "Creating playlist ..."" is now displayed instead of hidden in the debug log, which states some form of progress through the UI.
* subsonicupdate: Updates are now triggered whenever either the beets database is changed or a smart playlist is created/updated. 4862
* importfeeds: Add a new output format allowing to save a playlist once per import session. 4863
* Make ArtResizer work with PIL/pillow 10.0.0 removals.
* A new configuration option, duplicate_verbose_prompt, allows changing how duplicates are presented during import. 4866
* embyupdate: Add handling for private users by adding userid config option.
* substitute: Add the new plugin substitute as an alternative to the rewrite plugin. The main difference between them being that rewrite modifies files' metadata and substitute does not.
* Add support for artists and albumartists multi-valued tags.
* autobpm: Add the autobpm plugin which uses Librosa to calculate the BPM of the audio.
* fetchart: Fix the error with CoverArtArchive where the maxwidth option would not be used to download a pre-sized thumbnail for release groups, as is already done with releases.
* fetchart: Fix the error with CoverArtArchive where no cover would be found when the maxwidth option matches a pre-sized thumbnail size, but no thumbnail is provided by CAA. We now fallback to the raw image.
* advancedrewrite: Add an advanced version of the rewrite plugin which allows to replace fields based on a given library query.
* lyrics: Add LRCLIB as a new lyrics provider and a new synced option to prefer synced lyrics over plain lyrics.
* import: Expose import.quiet_fallback as CLI option.
* import: Expose import.incremental_skip_later as CLI option.
* smartplaylist: Expose config options as CLI options.
* smartplaylist: Add new option smartplaylist.output.
* smartplaylist: Add new option smartplaylist.uri_format.
* Sorted the default configuration file into categories.
* convert: Don't treat WAVE (.wav) files as lossy anymore when using the never_convert_lossy_files option. They will get transcoded like the other lossless formats.
* Add support for barcode field.
* smartplaylist: Add new config option smartplaylist.fields.
Bug fixes
* lastimport: Improve error handling in the process_tracks function and enable it to be used with other plugins.
* spotify: Improve handling of ConnectionError.
* deezer: Improve Deezer plugin error handling and set requests timeout to 10 seconds.
* spotify: Add bad gateway (502) error handling.
* spotify: Add a limit of 3 retries, instead of retrying endlessly when the API is not available.
* Fix a crash when the Spotify API timeouts or does not return a Retry-After interval.
* scrub: Fixed the import behavior where scrubbed database tags were restored to newly imported tracks with config settings scrub.auto: yes and import.write: no.
* deezer: Fixed the error where Deezer plugin would crash if non-Deezer id is passed during import.
* fetchart: Fix fetching from Cover Art Archive when the maxwidth option is set to one of the supported Cover Art Archive widths.
* discogs: Fix "Discogs plugin replacing Feat. or Ft. with a comma" by fixing an oversight that removed a functionality from the code base when the MetadataSourcePlugin abstract class was introduced in PR's #3335 and #3371.
* convert: Set default max_bitrate value to None to avoid transcoding when this parameter is not set.
* replaygain: Avoid a crash when errors occur in the analysis backend.
* We now use Python's defaults for command-line argument encoding, which should reduce the chance for errors and "file not found" failures when invoking other command-line tools, especially on Windows.
* We now respect the Spotify API's rate limiting, which avoids crashing when the API reports code 429 (too many requests).
* Fix implicit paths OR queries (e.g. beet list /path/ , /other-path/) which have previously been returning the entire library.
* The Discogs release ID is now populated correctly to the discogs_albumid field again (it was no longer working after Discogs changed their release URL format).
* The autotagger no longer considers all matches without a MusicBrainz ID as duplicates of each other.
* convert: Resize album art when embedding
* deezer: Fix auto tagger pagination issues (fetch beyond the first 25 tracks of a release).
* spotify: Fix auto tagger pagination issues (fetch beyond the first 50 tracks of a release).
* lyrics: Fix Genius search by using query params instead of body.
* unimported: The new ignore_subdirectories configuration option added in 1.6.0 now has a default value if it hasn't been set.
* deezer: Tolerate missing fields when searching for singleton tracks.
* replaygain: The type of the internal r128_track_gain and r128_album_gain fields was changed from integer to float to fix loss of precision due to truncation.
* Fix a regression in the previous release that caused a TypeError when moving files across filesystems.
* convert: Deleting the original files during conversion no longer logs output when the quiet flag is enabled.
* web: Fix handling of "query" requests. Previously queries consisting of more than one token (separated by a slash) always returned an empty result.
* discogs: Skip Discogs query on insufficiently tagged files (artist and album tags missing) to prevent arbitrary candidate results.
* lyrics: Fixed issues with the Tekstowo.pl and Genius backends where some non-lyrics content got included in the lyrics
* limit: Better header formatting to improve index
* replaygain: Correctly handle the overwrite config option, which forces recomputing ReplayGain values on import even for tracks that already have the tags.
* embedart: Fix a crash when using recent versions of ImageMagick and the compare_threshold option.
* lyrics: Fixed issue with Genius header being included in lyrics, added test case of up-to-date Genius html
* importadded: Fix a bug with recently added reflink import option that causes a crash when ImportAdded plugin enabled.
* convert: Fix a bug with the wma format alias.
* web: Fix get file from item.
* lastgenre: Fix a duplicated entry for trip hop in the default genre list.
* lyrics: Fixed issue with Tekstowo backend not actually checking if the found song matches.
* embedart: Add support for ImageMagick 7.1.1-12
* fromfilename: Fix failed detection of <track> <title> filename patterns.
* Fix issue where deletion of flexible fields on an album doesn't cascade to items
* Fix issue where beet write continuously retags the albumtypes metadata field in files. Additionally broken data could have been added to the library when the tag was read from file back into the library using beet update. It is required for all users to check if such broken data is present in the library. Following the instructions described here, a sanity check and potential fix is easily possible.
* Fix updating "data_source" on re-imports and improve logging when flexible attributes are being re-imported.
* fetchart: Correctly select the cover art from fanart.tv with the highest number of likes
* lyrics: Fix a crash with the Google backend when processing some web pages.
* Modifying flexible attributes of albums now cascade to the individual album tracks, similar to how fixed album attributes have been cascading to tracks already. A new option --noinherit/-I to modify <modify-cmd> allows changing this behaviour.
* Fix bug where an interrupted import process poisons the database, causing a null path that can't be removed.
* discogs: Fix bug where empty artist and title fields would return None instead of an empty list.
* Fix bug regarding displaying tracks that have been changed not being displayed unless the detail configuration is enabled.
* web: Fix range request support, allowing to play large audio/ opus files using e.g. a browser/firefox or gstreamer/mopidy directly.
* Fix bug where zsh completion script made assumptions about the specific variant of awk installed and required specific settings for sqlite3 and caching in zsh.
* Remove unused functions
* Fix bug where all media types are reported as the first media type when importing with MusicBrainz as the data source
* Fix bug where unimported plugin would not ignore children directories of ignored directories.
For plugin developers
* beets now explicitly prevents multiple plugins to define replacement functions for the same field. When previously defining template_fields for the same field in two plugins, the last loaded plugin would silently overwrite the function defined by the other plugin. Now, beets will raise an exception when this happens.
* Allow reuse of some parts of beets' testing components. This may ease the work for externally developed plugins or related software (e.g. the beets plugin for Mopidy), if they need to create an in-memory instance of a beets music library for their tests.
For packagers
* As noted above, the minimum Python version is now 3.7.
* We fixed a version for the dependency on the Confuse library.
* The minimum required version of mediafile is now 0.9.0.
Other changes
* Add sphinx and sphinx_rtd_theme as dependencies for a new docs extra
* absubmit: Deprecate the absubmit plugin since AcousticBrainz has stopped accepting new submissions.
* acousticbrainz: Deprecate the acousticbrainz plugin since the AcousticBrainz project has shut down.
* limit: Limit query results to head or tail (lslimit command only)
* fish: Add --output option.
* lyrics: Remove Musixmatch from default enabled sources as they are currently blocking requests from the beets user agent.
* /faq: multidisc: Elaborated the multi-disc FAQ
* /faq: src: Removed some long lines.
* Refactor the test cases to avoid test smells.
* Tue Aug 22 2023 Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
- Fix the names of the Flask recommended packages
/usr/bin/beet /usr/lib/python3.13/site-packages/beets /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/INSTALLER /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/METADATA /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/RECORD /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/REQUESTED /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/WHEEL /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/entry_points.txt /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/licenses /usr/lib/python3.13/site-packages/beets-2.8.0.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/beets/__init__.py /usr/lib/python3.13/site-packages/beets/__main__.py /usr/lib/python3.13/site-packages/beets/__pycache__ /usr/lib/python3.13/site-packages/beets/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/__main__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/__main__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/logging.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/logging.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/mediafile.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/mediafile.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/metadata_plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/metadata_plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/plugins.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/__pycache__/plugins.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/autotag /usr/lib/python3.13/site-packages/beets/autotag/__init__.py /usr/lib/python3.13/site-packages/beets/autotag/__pycache__ /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/distance.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/distance.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/hooks.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/hooks.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/match.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/autotag/__pycache__/match.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/autotag/distance.py /usr/lib/python3.13/site-packages/beets/autotag/hooks.py /usr/lib/python3.13/site-packages/beets/autotag/match.py /usr/lib/python3.13/site-packages/beets/config_default.yaml /usr/lib/python3.13/site-packages/beets/dbcore /usr/lib/python3.13/site-packages/beets/dbcore/__init__.py /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__ /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/db.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/db.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/query.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/query.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/queryparse.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/queryparse.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/types.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/dbcore/__pycache__/types.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/dbcore/db.py /usr/lib/python3.13/site-packages/beets/dbcore/query.py /usr/lib/python3.13/site-packages/beets/dbcore/queryparse.py /usr/lib/python3.13/site-packages/beets/dbcore/types.py /usr/lib/python3.13/site-packages/beets/importer /usr/lib/python3.13/site-packages/beets/importer/__init__.py /usr/lib/python3.13/site-packages/beets/importer/__pycache__ /usr/lib/python3.13/site-packages/beets/importer/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/session.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/session.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/stages.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/stages.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/state.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/state.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/tasks.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/importer/__pycache__/tasks.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/importer/session.py /usr/lib/python3.13/site-packages/beets/importer/stages.py /usr/lib/python3.13/site-packages/beets/importer/state.py /usr/lib/python3.13/site-packages/beets/importer/tasks.py /usr/lib/python3.13/site-packages/beets/library /usr/lib/python3.13/site-packages/beets/library/__init__.py /usr/lib/python3.13/site-packages/beets/library/__pycache__ /usr/lib/python3.13/site-packages/beets/library/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/exceptions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/exceptions.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/library.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/library.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/migrations.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/migrations.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/models.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/models.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/queries.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/library/__pycache__/queries.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/library/exceptions.py /usr/lib/python3.13/site-packages/beets/library/library.py /usr/lib/python3.13/site-packages/beets/library/migrations.py /usr/lib/python3.13/site-packages/beets/library/models.py /usr/lib/python3.13/site-packages/beets/library/queries.py /usr/lib/python3.13/site-packages/beets/logging.py /usr/lib/python3.13/site-packages/beets/mediafile.py /usr/lib/python3.13/site-packages/beets/metadata_plugins.py /usr/lib/python3.13/site-packages/beets/plugins.py /usr/lib/python3.13/site-packages/beets/py.typed /usr/lib/python3.13/site-packages/beets/test /usr/lib/python3.13/site-packages/beets/test/__init__.py /usr/lib/python3.13/site-packages/beets/test/__pycache__ /usr/lib/python3.13/site-packages/beets/test/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/test/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/test/__pycache__/_common.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/test/__pycache__/_common.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/test/__pycache__/helper.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/test/__pycache__/helper.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/test/_common.py /usr/lib/python3.13/site-packages/beets/test/helper.py /usr/lib/python3.13/site-packages/beets/ui /usr/lib/python3.13/site-packages/beets/ui/__init__.py /usr/lib/python3.13/site-packages/beets/ui/__pycache__ /usr/lib/python3.13/site-packages/beets/ui/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands /usr/lib/python3.13/site-packages/beets/ui/commands/__init__.py /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__ /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/completion.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/completion.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/config.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/config.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/fields.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/fields.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/help.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/help.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/list.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/list.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/modify.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/modify.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/move.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/move.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/remove.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/remove.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/stats.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/stats.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/update.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/update.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/version.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/write.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/__pycache__/write.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/completion.py /usr/lib/python3.13/site-packages/beets/ui/commands/completion_base.sh /usr/lib/python3.13/site-packages/beets/ui/commands/config.py /usr/lib/python3.13/site-packages/beets/ui/commands/fields.py /usr/lib/python3.13/site-packages/beets/ui/commands/help.py /usr/lib/python3.13/site-packages/beets/ui/commands/import_ /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__init__.py /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__ /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/display.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/display.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/session.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/__pycache__/session.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/ui/commands/import_/display.py /usr/lib/python3.13/site-packages/beets/ui/commands/import_/session.py /usr/lib/python3.13/site-packages/beets/ui/commands/list.py /usr/lib/python3.13/site-packages/beets/ui/commands/modify.py /usr/lib/python3.13/site-packages/beets/ui/commands/move.py /usr/lib/python3.13/site-packages/beets/ui/commands/remove.py /usr/lib/python3.13/site-packages/beets/ui/commands/stats.py /usr/lib/python3.13/site-packages/beets/ui/commands/update.py /usr/lib/python3.13/site-packages/beets/ui/commands/utils.py /usr/lib/python3.13/site-packages/beets/ui/commands/version.py /usr/lib/python3.13/site-packages/beets/ui/commands/write.py /usr/lib/python3.13/site-packages/beets/util /usr/lib/python3.13/site-packages/beets/util/__init__.py /usr/lib/python3.13/site-packages/beets/util/__pycache__ /usr/lib/python3.13/site-packages/beets/util/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/artresizer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/artresizer.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/bluelet.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/bluelet.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/color.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/color.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/config.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/config.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/deprecation.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/deprecation.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/diff.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/diff.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/functemplate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/functemplate.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/hidden.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/hidden.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/id_extractors.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/id_extractors.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/layout.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/layout.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/lyrics.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/lyrics.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/m3u.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/m3u.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/pipeline.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/pipeline.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/units.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beets/util/__pycache__/units.cpython-313.pyc /usr/lib/python3.13/site-packages/beets/util/artresizer.py /usr/lib/python3.13/site-packages/beets/util/bluelet.py /usr/lib/python3.13/site-packages/beets/util/color.py /usr/lib/python3.13/site-packages/beets/util/config.py /usr/lib/python3.13/site-packages/beets/util/deprecation.py /usr/lib/python3.13/site-packages/beets/util/diff.py /usr/lib/python3.13/site-packages/beets/util/functemplate.py /usr/lib/python3.13/site-packages/beets/util/hidden.py /usr/lib/python3.13/site-packages/beets/util/id_extractors.py /usr/lib/python3.13/site-packages/beets/util/layout.py /usr/lib/python3.13/site-packages/beets/util/lyrics.py /usr/lib/python3.13/site-packages/beets/util/m3u.py /usr/lib/python3.13/site-packages/beets/util/pipeline.py /usr/lib/python3.13/site-packages/beets/util/units.py /usr/lib/python3.13/site-packages/beetsplug /usr/lib/python3.13/site-packages/beetsplug/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/__pycache__/_typing.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/_typing.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/absubmit.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/absubmit.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/acousticbrainz.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/acousticbrainz.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/advancedrewrite.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/advancedrewrite.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/albumtypes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/albumtypes.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/aura.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/aura.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/autobpm.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/autobpm.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/badfiles.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/badfiles.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bareasc.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bareasc.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/beatport.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/beatport.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bench.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bench.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bpm.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bpm.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bpsync.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bpsync.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bucket.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/bucket.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/chroma.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/chroma.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/convert.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/convert.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/deezer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/deezer.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/duplicates.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/duplicates.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/edit.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/edit.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/embedart.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/embedart.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/embyupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/embyupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/export.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/export.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fetchart.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fetchart.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/filefilter.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/filefilter.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fish.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fish.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/freedesktop.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/freedesktop.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fromfilename.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fromfilename.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ftintitle.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ftintitle.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fuzzy.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/fuzzy.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/hook.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/hook.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ihate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ihate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importadded.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importadded.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importfeeds.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importfeeds.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importsource.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/importsource.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/info.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/info.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/inline.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/inline.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ipfs.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/ipfs.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/keyfinder.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/keyfinder.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/kodiupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/kodiupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/lastimport.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/lastimport.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/limit.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/limit.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/listenbrainz.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/listenbrainz.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/loadext.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/loadext.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/lyrics.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/lyrics.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbcollection.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbcollection.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbpseudo.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbpseudo.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbsubmit.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbsubmit.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbsync.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mbsync.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/missing.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/missing.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mpdstats.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mpdstats.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mpdupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/mpdupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/musicbrainz.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/musicbrainz.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/parentwork.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/parentwork.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/permissions.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/permissions.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/play.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/play.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/playlist.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/playlist.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/plexupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/plexupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/random.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/random.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/replace.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/replace.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/replaygain.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/replaygain.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/rewrite.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/rewrite.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/scrub.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/scrub.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/smartplaylist.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/smartplaylist.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/sonosupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/sonosupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/spotify.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/spotify.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/subsonicplaylist.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/subsonicplaylist.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/subsonicupdate.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/subsonicupdate.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/substitute.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/substitute.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/the.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/the.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/thumbnails.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/thumbnails.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/titlecase.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/titlecase.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/types.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/types.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/unimported.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/unimported.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/zero.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/__pycache__/zero.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_typing.py /usr/lib/python3.13/site-packages/beetsplug/_utils /usr/lib/python3.13/site-packages/beetsplug/_utils/__init__.py /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/art.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/art.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/musicbrainz.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/musicbrainz.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/requests.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/requests.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/vfs.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/__pycache__/vfs.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/_utils/art.py /usr/lib/python3.13/site-packages/beetsplug/_utils/musicbrainz.py /usr/lib/python3.13/site-packages/beetsplug/_utils/requests.py /usr/lib/python3.13/site-packages/beetsplug/_utils/vfs.py /usr/lib/python3.13/site-packages/beetsplug/absubmit.py /usr/lib/python3.13/site-packages/beetsplug/acousticbrainz.py /usr/lib/python3.13/site-packages/beetsplug/advancedrewrite.py /usr/lib/python3.13/site-packages/beetsplug/albumtypes.py /usr/lib/python3.13/site-packages/beetsplug/aura.py /usr/lib/python3.13/site-packages/beetsplug/autobpm.py /usr/lib/python3.13/site-packages/beetsplug/badfiles.py /usr/lib/python3.13/site-packages/beetsplug/bareasc.py /usr/lib/python3.13/site-packages/beetsplug/beatport.py /usr/lib/python3.13/site-packages/beetsplug/bench.py /usr/lib/python3.13/site-packages/beetsplug/bpd /usr/lib/python3.13/site-packages/beetsplug/bpd/__init__.py /usr/lib/python3.13/site-packages/beetsplug/bpd/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/bpd/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/bpd/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/bpd/__pycache__/gstplayer.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/bpd/__pycache__/gstplayer.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/bpd/gstplayer.py /usr/lib/python3.13/site-packages/beetsplug/bpm.py /usr/lib/python3.13/site-packages/beetsplug/bpsync.py /usr/lib/python3.13/site-packages/beetsplug/bucket.py /usr/lib/python3.13/site-packages/beetsplug/chroma.py /usr/lib/python3.13/site-packages/beetsplug/convert.py /usr/lib/python3.13/site-packages/beetsplug/deezer.py /usr/lib/python3.13/site-packages/beetsplug/discogs /usr/lib/python3.13/site-packages/beetsplug/discogs/__init__.py /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/states.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/states.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/types.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/__pycache__/types.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/discogs/states.py /usr/lib/python3.13/site-packages/beetsplug/discogs/types.py /usr/lib/python3.13/site-packages/beetsplug/duplicates.py /usr/lib/python3.13/site-packages/beetsplug/edit.py /usr/lib/python3.13/site-packages/beetsplug/embedart.py /usr/lib/python3.13/site-packages/beetsplug/embyupdate.py /usr/lib/python3.13/site-packages/beetsplug/export.py /usr/lib/python3.13/site-packages/beetsplug/fetchart.py /usr/lib/python3.13/site-packages/beetsplug/filefilter.py /usr/lib/python3.13/site-packages/beetsplug/fish.py /usr/lib/python3.13/site-packages/beetsplug/freedesktop.py /usr/lib/python3.13/site-packages/beetsplug/fromfilename.py /usr/lib/python3.13/site-packages/beetsplug/ftintitle.py /usr/lib/python3.13/site-packages/beetsplug/fuzzy.py /usr/lib/python3.13/site-packages/beetsplug/hook.py /usr/lib/python3.13/site-packages/beetsplug/ihate.py /usr/lib/python3.13/site-packages/beetsplug/importadded.py /usr/lib/python3.13/site-packages/beetsplug/importfeeds.py /usr/lib/python3.13/site-packages/beetsplug/importsource.py /usr/lib/python3.13/site-packages/beetsplug/info.py /usr/lib/python3.13/site-packages/beetsplug/inline.py /usr/lib/python3.13/site-packages/beetsplug/ipfs.py /usr/lib/python3.13/site-packages/beetsplug/keyfinder.py /usr/lib/python3.13/site-packages/beetsplug/kodiupdate.py /usr/lib/python3.13/site-packages/beetsplug/lastgenre /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__init__.py /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__pycache__/client.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/lastgenre/__pycache__/client.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/lastgenre/client.py /usr/lib/python3.13/site-packages/beetsplug/lastgenre/genres-tree.yaml /usr/lib/python3.13/site-packages/beetsplug/lastgenre/genres.txt /usr/lib/python3.13/site-packages/beetsplug/lastimport.py /usr/lib/python3.13/site-packages/beetsplug/limit.py /usr/lib/python3.13/site-packages/beetsplug/listenbrainz.py /usr/lib/python3.13/site-packages/beetsplug/loadext.py /usr/lib/python3.13/site-packages/beetsplug/lyrics.py /usr/lib/python3.13/site-packages/beetsplug/mbcollection.py /usr/lib/python3.13/site-packages/beetsplug/mbpseudo.py /usr/lib/python3.13/site-packages/beetsplug/mbsubmit.py /usr/lib/python3.13/site-packages/beetsplug/mbsync.py /usr/lib/python3.13/site-packages/beetsplug/metasync /usr/lib/python3.13/site-packages/beetsplug/metasync/__init__.py /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/amarok.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/amarok.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/itunes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/__pycache__/itunes.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/metasync/amarok.py /usr/lib/python3.13/site-packages/beetsplug/metasync/itunes.py /usr/lib/python3.13/site-packages/beetsplug/missing.py /usr/lib/python3.13/site-packages/beetsplug/mpdstats.py /usr/lib/python3.13/site-packages/beetsplug/mpdupdate.py /usr/lib/python3.13/site-packages/beetsplug/musicbrainz.py /usr/lib/python3.13/site-packages/beetsplug/parentwork.py /usr/lib/python3.13/site-packages/beetsplug/permissions.py /usr/lib/python3.13/site-packages/beetsplug/play.py /usr/lib/python3.13/site-packages/beetsplug/playlist.py /usr/lib/python3.13/site-packages/beetsplug/plexupdate.py /usr/lib/python3.13/site-packages/beetsplug/random.py /usr/lib/python3.13/site-packages/beetsplug/replace.py /usr/lib/python3.13/site-packages/beetsplug/replaygain.py /usr/lib/python3.13/site-packages/beetsplug/rewrite.py /usr/lib/python3.13/site-packages/beetsplug/scrub.py /usr/lib/python3.13/site-packages/beetsplug/smartplaylist.py /usr/lib/python3.13/site-packages/beetsplug/sonosupdate.py /usr/lib/python3.13/site-packages/beetsplug/spotify.py /usr/lib/python3.13/site-packages/beetsplug/subsonicplaylist.py /usr/lib/python3.13/site-packages/beetsplug/subsonicupdate.py /usr/lib/python3.13/site-packages/beetsplug/substitute.py /usr/lib/python3.13/site-packages/beetsplug/the.py /usr/lib/python3.13/site-packages/beetsplug/thumbnails.py /usr/lib/python3.13/site-packages/beetsplug/titlecase.py /usr/lib/python3.13/site-packages/beetsplug/types.py /usr/lib/python3.13/site-packages/beetsplug/unimported.py /usr/lib/python3.13/site-packages/beetsplug/web /usr/lib/python3.13/site-packages/beetsplug/web/__init__.py /usr/lib/python3.13/site-packages/beetsplug/web/__pycache__ /usr/lib/python3.13/site-packages/beetsplug/web/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/beetsplug/web/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/beetsplug/web/static /usr/lib/python3.13/site-packages/beetsplug/web/static/backbone.js /usr/lib/python3.13/site-packages/beetsplug/web/static/beets.css /usr/lib/python3.13/site-packages/beetsplug/web/static/beets.js /usr/lib/python3.13/site-packages/beetsplug/web/static/jquery.js /usr/lib/python3.13/site-packages/beetsplug/web/static/underscore.js /usr/lib/python3.13/site-packages/beetsplug/web/templates /usr/lib/python3.13/site-packages/beetsplug/web/templates/index.html /usr/lib/python3.13/site-packages/beetsplug/zero.py /usr/share/doc/packages/beets /usr/share/doc/packages/beets/README.rst /usr/share/licenses/beets /usr/share/licenses/beets/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Apr 21 22:23:10 2026