├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── README.md ├── pyproject.toml.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── src └── musicxmatch_api ├── __init__.py └── main.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/pyproject.toml.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/setup.py -------------------------------------------------------------------------------- /src/musicxmatch_api/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.7" 2 | 3 | from .main import * 4 | -------------------------------------------------------------------------------- /src/musicxmatch_api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strvm/musicxmatch-api/HEAD/src/musicxmatch_api/main.py --------------------------------------------------------------------------------