├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── scrobblez ├── __init__.py ├── __main__.py ├── cli.py ├── looper.py ├── metadata_filter │ └── __init__.py ├── scrobblers.py └── types.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | metadata_filter 2 | mpris2 3 | pylast 4 | pyxdg 5 | -------------------------------------------------------------------------------- /scrobblez/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrobblez/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/scrobblez/__main__.py -------------------------------------------------------------------------------- /scrobblez/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/scrobblez/cli.py -------------------------------------------------------------------------------- /scrobblez/looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/scrobblez/looper.py -------------------------------------------------------------------------------- /scrobblez/metadata_filter/__init__.py: -------------------------------------------------------------------------------- 1 | from metadata_filter import * 2 | -------------------------------------------------------------------------------- /scrobblez/scrobblers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/scrobblez/scrobblers.py -------------------------------------------------------------------------------- /scrobblez/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/scrobblez/types.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YodaEmbedding/scrobblez/HEAD/setup.py --------------------------------------------------------------------------------