ChemSpider is a database of typical compounds. Here, we will explain how to use ChemSpider data in Python.
First, you need to apply for the use of Web API. Apply from the Developers Portal. An API key will be issued here, so use it to get ChemSpider data.
To use ChemSpider in Python, use chemspipy
.
Create an instance of the ChemSpider
class using the API key obtained above.
from chemspipy import ChemSpider
cs = ChemSpider(Issued API key)
search_results = cs.search('glycine')
filter_results = cs.filter_name('glycine')
Here's how to access ChemSpider data.
With ChemSpipy
, you can easily use the information stored in ChemSpider.
It's an essential tool for chemoinformatics, so make sure you have it ready for use.
How can chemoinformatics help pharmaceutical companies? What kind of knowledge do you need?
Recommended Posts