├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── albumart-dl ├── albumart_dl ├── __init__.py ├── __version__.py └── core.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/README.md -------------------------------------------------------------------------------- /albumart-dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/albumart-dl -------------------------------------------------------------------------------- /albumart_dl/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /albumart_dl/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/albumart_dl/__version__.py -------------------------------------------------------------------------------- /albumart_dl/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/albumart_dl/core.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgalow/albumart-dl/HEAD/setup.py --------------------------------------------------------------------------------