可以一次性下载pubchem数据库下的所有的compound信息
2021-11-27 10:43:24 150B pubchem ftp 批量下载
1
公开化学 PubChemPy提供了一种在Python中与PubChem进行交互的方法。 它允许按名称,子结构和相似性进行化学搜索,化学标准化,化学文件格式之间的转换,化学特性的描述和检索。 >> > from pubchempy import get_compounds , Compound >> > comp = Compound . from_cid ( 1423 ) >> > print ( comp . isomeric_smiles ) CCCCCCCNC1CCCC1CCCCCCC ( = O ) O >> > comps = get_compounds ( 'Aspirin' , 'name' ) >> > print ( comps [ 0 ]. xlogp ) 1.2 安装 使用以下命令安装PubChemPy: pip install pubchempy 或者,尝试其
2021-11-03 21:05:26 54KB python chemistry cheminformatics pubchem
1