Advanced Usage
Information for advanced users of the API.
from mp_api.client import MPRester
with MPRester("your_api_key_here") as mpr:
# -- Using 'search'
docs = mpr.materials.summary.search(volume=(3,10))
# -- Using '_search'
docs = mpr.materials.summary._search(volume_min=3, volume_max=10)Last updated
Was this helpful?