Someone previously asked this question, but the links in the answer no longer work/the answer was not clear to me.
I have a list of 172 chemical compounds that I would like to determine properties for. I have been able to determine SOME of the properties of the compounds (e.g. structure and molecular weight) using something like:
from chemspipy import ChemSpider
cs = ChemSpider('my API key')
cmpd=cs.get_compound(61140)
cmpd.molecular_weight
I've been in the documentation for chemspipy (https://chemspipy.readthedocs.io/en/latest/guide/compound.html#compound-properties) and I can't find any arguments that relate to the properties I'm interested in (e.g. boiling point, solubility in water). I do know chem spider HAS that information available on their website, but if anybody has an idea on how to return those properties in python, that would be great!