Skip to main content

A media file discovery tool, intended to work alone or fit into a larger toolchain

Project description

MusicManager

Build a list of media files from a root directory

Usage

First time usage should use the execute function. This will return the python list of entries containing tuples in the form

[
(mtime:float,path:str),
...
]
from music_manager_micro import MusicManager as MM
library = 'my_library'
media_dir = '/media/music'
manager = MM(library,media_dir)
music_list = manager.execute()

Since the program stores the result in a sqlite DB in

$HOME/.config/MusicManagerMicro/<library_name>

We can retrieve the data quickly without re-scanning the directory. We only need to execute when the process running this application is set to check for new files.

Get an existing list

from music_manager_micro.music_manager import MusicManager as MM
library = 'my_library'
media_dir = '/media/music'
manager = MM(library,media_dir)
music_list = manager.get_list()

Features

  • Default searches for .mp3 and .flac files
    • Override list of extensions
  • Supports absolute and relative root directory
  • Supports changing place storing results

Maintenance

  • Remove .cache/MusicManagerMicro directory to safely clear all library data, or individual libraries
  • Safely backup .cache/MusicManagerMicro directory if wanted to preserve cache data

Notes

  • Library name is intended for internal filesystem use so should only contain characters acceptable for a folder name A-Z, a-z, _, -.

Build

python -m build
python -m twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

music_manager_micro-0.3.4.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

music_manager_micro-0.3.4-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page