How to use ChemPrice

ChemPrice is a computer tool that allows retrieving the prices of molecules from their SMILES using various integrators. ChemPrice supports three integrators: Molport, ChemSpace, and MCule. Each integrator requires an API key to be used.

Getting started

To demonstrate how to use the functions, you need to create a list of molecule SMILES:

smiles_list = ["CC(=O)NC1=CC=C(C=C1)O", "CC(C)CC1=CC=C(C=C1)C(C)C(=O)O", "O=C(C)Oc1ccccc1C(=O)O"]

Next, create a first instance with the PriceCollector class. It’s from this class that we’ll be able to connect to the various integrators and then launch a search on the list of smiles entered.

from chemprice import PriceCollector

pc = PriceCollector()

Request an api key

To access integrators’ data, you need to be able to connect to their api.

If you don’t have an api key yet, you can click on the following links : Molport, ChemSpace and MCule, which will take you back to their sites where you can request an api key.

Enter the API key for each integrator

Now that the PriceCollector class has been created, we need to connect to one or more integrators via an api key.

Connection to Molport via api key: 880d8343-8ui2-418c-9g7a-68b4e2e78c8b

pc.setMolportApiKey("880d8343-8ui2-418c-9g7a-68b4e2e78c8b")

In the case of molport, it’s also possible to log in with a login and password. ChemSpace and MCule require an api key.

pc.setMolportUsername("john.spade")
pc.setMolportPassword("fasdga34a3")

To check the status of each key that has been returned to the class, run the :

pc.status()

Possible Outputs

# Username/Password and API Key are Set:
Status: Molport: both credentials are set.

# Only Username/Password or API Key is Set:
Status: Molport: credential is set.

# No Credential is Set:
Status: Molport: no credential is set.

In these examples, we’re only talking about the Molport connection; for ChemSpace and MCule, the approach is the same. You need to use the setChemSpaceApiKey() and setMCuleApiKey() functions, such as :

pc.setChemSpaceApiKey(<chemspace_api_key>)
pc.setMCuleApiKey(<mcule_api_key>)