We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dbd54 commit ad33911Copy full SHA for ad33911
smiles-to-svg/smiles2svg/smiles.py
@@ -1,4 +1,4 @@
1
-from taigapy import TaigaClient
+from taigapy import create_taiga_client_v3
2
from google.cloud import storage
3
4
import pandas as pd
@@ -39,7 +39,7 @@ def get_compound_data(taiga_id: str) -> pd.DataFrame:
39
Returns:
40
DataFrame: A dataframe containing the compound data
41
"""
42
- tc = TaigaClient()
+ tc = create_taiga_client_v3()
43
return tc.get(taiga_id)
44
45
0 commit comments