Metadata-Version: 2.1
Name: mvsma
Version: 1.0.0
Summary: Super simple modrinth api wrapper for python
Project-URL: Github, https://github.com/mhamsterr/mvsma
Author: mhamstere
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# mvsma

mvsma (aka mhamster's very simple modrinth api (wrapper)) is a super simple modrinth api wrapper for python.

It provides plain and simple access to [modrinth's api](https://api.modrinth.com) endpoints.

# Examples

Search:
```py
from mvsma import Modrinth

m = Modrinth()
# Search for mod called 'cesium' and print first result
m.ua = 'Package example from https://github.com/mhamsterr/mvsma' # Edit User-Agent of request so everyone will know who we are and what we are doing

response = m.search(query="cesium")
print(response["hits"][0])

```

Versions:
```py
from mvsma import Modrinth

m = Modrinth()
# Get versions of mod with slug "supercoolmod"
m.ua = 'Package example from https://github.com/mhamsterr/mvsma' # Edit User-Agent of request so everyone will know who we are and what we are doing

response = m.project_versions(slug="supercoolmod")
print(response)

```

# Documentation:
TODO

# Installation
```
pip install mvsma
```

# License:
MIT License, find more in 'LICENSE' file