Metadata-Version: 2.1
Name: mpcontribs-client
Version: 1.5.2
Summary: client library for MPContribs API
Home-page: https://github.com/materialsproject/MPContribs/tree/master/mpcontribs-client
Author: Patrick Huck
Author-email: phuck@lbl.gov
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: bravado (==10.2.2)

Small, dynamic python client library to connect to [MPContribs API](https://api.mpcontribs.org) based on Yelp's [bravado](https://bravado.readthedocs.io).

```python
from mpcontribs.client import load_client
api_key = "<replace-me>" # API key from https://portal.mpcontribs.org/dashboard
client = load_client(api_key)
dir(client) # show available resources
```

See the [MPContribs Docs](https://mpcontribs.org/api) for specific usage and examples.


