├── .gitignore ├── LICENSE.txt ├── PKGBUILD ├── README.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── yams.plist ├── yams.service └── yams ├── __init__.py ├── __main__.py ├── configure.py └── scrobble.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/setup.py -------------------------------------------------------------------------------- /yams.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/yams.plist -------------------------------------------------------------------------------- /yams.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/yams.service -------------------------------------------------------------------------------- /yams/__init__.py: -------------------------------------------------------------------------------- 1 | import yams 2 | 3 | 4 | def __init__(): 5 | pass 6 | -------------------------------------------------------------------------------- /yams/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/yams/__main__.py -------------------------------------------------------------------------------- /yams/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/yams/configure.py -------------------------------------------------------------------------------- /yams/scrobble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Berulacks/yams/HEAD/yams/scrobble.py --------------------------------------------------------------------------------