Getting Started
Setting up the Materials Project API client.
The MPRester is a Python client provided by the Materials Project for easily accessing data through its API. It can be found in the mp-api
package, which can be installed most easily using pip
:
As an alternative, the package can also be installed from its code repository:
An API key is needed in order to use the client. This is a unique key provided to each Materials Project account. Your API key can be found on your profile dashboard page or the main API page once logged in.
The MPRester client can then be imported and instantiated. It is preferred to use Python's with
context manager for session management:
See the following sections for details on how to query different types of data. Documentation for MPRester
's classes and methods can be found here.
Last updated