Hello,
I get a little trouble quering all pervoskite material, can anyone help me?
Thanks a lot!
Hello,
I get a little trouble quering all pervoskite material, can anyone help me?
Thanks a lot!
You can use the Material Tag search outlined in the attached image to find anything we already have tagged as a perovskite.
I see, thanks a lot!
Now that the website has changed. What’s the best way to search for material tags? Is there a way to search material tags through mp_api?
@blondegeek, we are currently working to make those tags searchable via the new API. For now, I would recommend pulling every provenance
document and searching through tags
and remarks
locally.
from mp_api.client import MPRester
with MPRester("your_api_key") as mpr:
docs = mpr.provenance.search(fields=["tags", "remarks", "material_id"])
# Do stuff with docs...
– Jason