├── .gitignore ├── README.md ├── beetsplug ├── __init__.py ├── edit.py └── moveall.py ├── ez_setup.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/README.md -------------------------------------------------------------------------------- /beetsplug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/beetsplug/__init__.py -------------------------------------------------------------------------------- /beetsplug/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/beetsplug/edit.py -------------------------------------------------------------------------------- /beetsplug/moveall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/beetsplug/moveall.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/ez_setup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsedivec/beets-plugins/HEAD/setup.py --------------------------------------------------------------------------------