我正試圖編寫一個python腳本來檢索我輸入的化合物的沸點,熔點,分子量,化學結構和密度。化學信息的API?
我正在查看數據庫,發現chemspipy和PubChemPy,但都沒有能力檢索我需要的所有屬性。
我有一個使用書面chemspipy的腳本,即正常工作的一部分:
from chemspipy import ChemSpider
import urllib
cs = ChemSpider('my_token')
def getImage(compound):
c = cs.search(compound)[0]
imgUrl = c.image_url
urllib.request.urlretrieve(imgUrl, c.common_name + '.png')
def getWeight(compound):
c = cs.search(compound)[0]
return(c.molecular_weight)
但我仍然需要找到一種方法來檢索沸點/熔點。
(這是我在這裏的第一個問題,所以道歉,如果這是在錯誤的地方!)