Hi,
Thank you for your great work! I am trying to fetch the data from the Materials Project database based on the mp-ids that you provided. I am wondering if the mp-ids that you provided are materials id or task id?
I tried
MPRester().get_structure_by_material_id(id)
but a lot of the ids in your csv files return void responses. Then I tried
mid = get_materials_id_from_task_id(id)
structure = get_structure_by_material_id(mid)
and it worked. I want to ask if this is the correct way of fetching the dataset.
Thank you