Extract data use matminer

HI all
what is the nececary command in matminer used to find the structural and mechanical properties each elements selected for example (Li, Na, Mg, … exct) in an identical table.
thanks,
Houssam.

Hi, Any answers plz.

As detailed by @ardunn in your previous question (Get properties of several elements), you can retrieve the properties from the Materials Project using the following snippet:

from matminer.data_retrieval.retrieve_MP import MPDataRetrieval
mpdr = MPDataRetrieval()

elements = ["Ti", "Mg", "Li", "Na"]
properties = ["density", "pretty_formula"]

criteria = {"elements": {"$in": elements}, "nelements": 1}
df = mpdr.get_dataframe(criteria=criteria, properties=properties)

You can see which properties are available from the Materials Project here: https://materialsproject.org/docs/api

HI Alex
Okey I will try, thank u