Skip to content

PubChem API

The PubChem API module provides access to PubChem's REST services for retrieving compound and substance data. This module has been recently enhanced with improved data access patterns and new search methods.

provesid.pubchem

Classes

CompoundProperties

Available compound properties for property tables

Source code in src/provesid/pubchem.py
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
class CompoundProperties:
    """Available compound properties for property tables"""
    MOLECULAR_FORMULA = "MolecularFormula"
    MOLECULAR_WEIGHT = "MolecularWeight"
    SMILES = "SMILES"
    CONNECTIVITY_SMILES = "ConnectivitySMILES"
    INCHI = "InChI"
    INCHIKEY = "InChIKey"
    IUPAC_NAME = "IUPACName"
    TITLE = "Title"
    XLOGP = "XLogP"
    EXACT_MASS = "ExactMass"
    MONOISOTOPIC_MASS = "MonoisotopicMass"
    TPSA = "TPSA"
    COMPLEXITY = "Complexity"
    CHARGE = "Charge"
    HBOND_DONOR_COUNT = "HBondDonorCount"
    HBOND_ACCEPTOR_COUNT = "HBondAcceptorCount"
    ROTATABLE_BOND_COUNT = "RotatableBondCount"
    HEAVY_ATOM_COUNT = "HeavyAtomCount"
    ISOTOPE_ATOM_COUNT = "IsotopeAtomCount"
    ATOM_STEREO_COUNT = "AtomStereoCount"
    DEFINED_ATOM_STEREO_COUNT = "DefinedAtomStereoCount"
    UNDEFINED_ATOM_STEREO_COUNT = "UndefinedAtomStereoCount"
    BOND_STEREO_COUNT = "BondStereoCount"
    DEFINED_BOND_STEREO_COUNT = "DefinedBondStereoCount"
    UNDEFINED_BOND_STEREO_COUNT = "UndefinedBondStereoCount"
    COVALENT_UNIT_COUNT = "CovalentUnitCount"
    PATENT_COUNT = "PatentCount"
    PATENT_FAMILY_COUNT = "PatentFamilyCount"
    ANNOTATION_TYPES = "AnnotationTypes"
    ANNOTATION_TYPE_COUNT = "AnnotationTypeCount"
    SOURCE_CATEGORIES = "SourceCategories"
    LITERATURE_COUNT = "LiteratureCount"
    VOLUME_3D = "Volume3D"
    X_STERIC_QUADRUPOLE_3D = "XStericQuadrupole3D"
    Y_STERIC_QUADRUPOLE_3D = "YStericQuadrupole3D"
    Z_STERIC_QUADRUPOLE_3D = "ZStericQuadrupole3D"
    FEATURE_COUNT_3D = "FeatureCount3D"
    FEATURE_ACCEPTOR_COUNT_3D = "FeatureAcceptorCount3D"
    FEATURE_DONOR_COUNT_3D = "FeatureDonorCount3D"
    FEATURE_ANION_COUNT_3D = "FeatureAnionCount3D"
    FEATURE_CATION_COUNT_3D = "FeatureCationCount3D"
    FEATURE_RING_COUNT_3D = "FeatureRingCount3D"
    FEATURE_HYDROPHOBE_COUNT_3D = "FeatureHydrophobeCount3D"
    CONFORMER_MODEL_RMSD_3D = "ConformerModelRMSD3D"
    EFFECTIVE_ROTOR_COUNT_3D = "EffectiveRotorCount3D"
    CONFORMER_COUNT_3D = "ConformerCount3D"
    FINGERPRINT_2D = "Fingerprint2D"

PubChemError

Bases: Exception

Custom exception for PubChem API errors

Source code in src/provesid/pubchem.py
160
161
162
class PubChemError(Exception):
    """Custom exception for PubChem API errors"""
    pass

PubChemTimeoutError

Bases: PubChemError

Exception raised when request times out

Source code in src/provesid/pubchem.py
164
165
166
class PubChemTimeoutError(PubChemError):
    """Exception raised when request times out"""
    pass

PubChemNotFoundError

Bases: PubChemError

Exception raised when resource is not found

Source code in src/provesid/pubchem.py
168
169
170
class PubChemNotFoundError(PubChemError):
    """Exception raised when resource is not found"""
    pass

PubChemServerError

Bases: PubChemError

Exception raised when server error occurs

Source code in src/provesid/pubchem.py
172
173
174
class PubChemServerError(PubChemError):
    """Exception raised when server error occurs"""
    pass

PubChemAPI

A Python interface to the PubChem REST API (PUG-REST)

This class provides methods to interact with PubChem's REST API for retrieving chemical compound, substance, and assay information.

Usage examples

api = PubChemAPI()

Get compound by CID

compound = api.get_compound_by_cid(2244)

Get compound properties

props = api.get_compound_properties([2244, 5793], ['MolecularFormula', 'MolecularWeight'])

Search by name

compounds = api.get_compounds_by_name('aspirin')

similar = api.similarity_search('CCO', threshold=90)

Source code in src/provesid/pubchem.py
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
class PubChemAPI:
    """
    A Python interface to the PubChem REST API (PUG-REST)

    This class provides methods to interact with PubChem's REST API for retrieving
    chemical compound, substance, and assay information.

    Usage examples:
        api = PubChemAPI()

        # Get compound by CID
        compound = api.get_compound_by_cid(2244)

        # Get compound properties
        props = api.get_compound_properties([2244, 5793], ['MolecularFormula', 'MolecularWeight'])

        # Search by name
        compounds = api.get_compounds_by_name('aspirin')

        # Structure search
        similar = api.similarity_search('CCO', threshold=90)
    """

    def __init__(self, base_url: str = pugrest_prolog, pause_time: float = pause_between_calls):
        """
        Initialize PubChem API client

        Args:
            base_url: Base URL for PubChem REST API
            pause_time: Minimum time between API calls in seconds
        """
        self.base_url = base_url.rstrip('/')
        self.pause_time = pause_time
        self.last_request_time = 0

    def _rate_limit(self):
        """Enforce rate limiting between requests"""
        current_time = time.time()
        time_since_last = current_time - self.last_request_time
        if time_since_last < self.pause_time:
            time.sleep(self.pause_time - time_since_last)
        self.last_request_time = time.time()

    def _make_request(self, url: str, method: str = 'GET', data: Optional[Dict] = None, 
                     timeout: int = 30, headers: Optional[Dict] = None) -> requests.Response:
        """
        Make HTTP request with error handling and rate limiting

        Args:
            url: Request URL
            method: HTTP method (GET or POST)
            data: POST data
            timeout: Request timeout in seconds
            headers: HTTP headers

        Returns:
            Response object

        Raises:
            PubChemTimeoutError: If request times out
            PubChemNotFoundError: If resource not found (404)
            PubChemServerError: If server error occurs (5xx)
            PubChemError: For other HTTP errors
        """
        self._rate_limit()

        try:
            if method.upper() == 'GET':
                response = requests.get(url, timeout=timeout, headers=headers)
            elif method.upper() == 'POST':
                response = requests.post(url, data=data, timeout=timeout, headers=headers)
            else:
                raise ValueError(f"Unsupported HTTP method: {method}")

            # Handle different HTTP status codes
            if response.status_code == 200:
                return response
            elif response.status_code == 202:
                # Accepted - asynchronous operation pending
                logging.warning("Asynchronous operation pending - may need to poll for results")
                return response
            elif response.status_code == 400:
                raise PubChemError(f"Bad request: {response.text}")
            elif response.status_code == 404:
                raise PubChemNotFoundError("Resource not found")
            elif response.status_code == 405:
                raise PubChemError("Method not allowed")
            elif response.status_code == 500:
                raise PubChemServerError("Internal server error")
            elif response.status_code == 501:
                raise PubChemError("Not implemented")
            elif response.status_code == 503:
                raise PubChemServerError("Server busy - try again later")
            elif response.status_code == 504:
                raise PubChemTimeoutError("Request timed out")
            else:
                raise PubChemError(f"HTTP error {response.status_code}: {response.text}")

        except requests.Timeout:
            raise PubChemTimeoutError("Request timed out")
        except requests.RequestException as e:
            raise PubChemError(f"Request failed: {str(e)}")

    def _build_url(self, domain: str, namespace: str, identifiers: Union[str, int, List[Union[str, int]]], 
                   operation: Optional[str] = None, output_format: str = OutputFormat.JSON,
                   **options) -> str:
        """
        Build PubChem REST API URL

        Args:
            domain: API domain (compound, substance, assay, etc.)
            namespace: Namespace within domain (cid, name, smiles, etc.)
            identifiers: Single identifier or list of identifiers
            operation: Operation to perform
            output_format: Desired output format
            **options: Additional URL parameters

        Returns:
            Complete URL string
        """
        # Handle identifiers
        if isinstance(identifiers, list):
            identifiers_str = ','.join(map(str, identifiers))
        else:
            identifiers_str = str(identifiers)

        # URL-encode identifiers for special characters
        identifiers_str = quote(identifiers_str, safe=',')

        # Build base URL path
        url_parts = [self.base_url, domain, namespace, identifiers_str]

        if operation:
            url_parts.append(operation)

        if output_format:
            url_parts.append(output_format)

        url = '/'.join(url_parts)

        # Add query parameters
        if options:
            params = []
            for key, value in options.items():
                if isinstance(value, bool):
                    value = str(value).lower()
                params.append(f"{key}={quote(str(value))}")
            if params:
                url += '?' + '&'.join(params)

        return url

    def _parse_response(self, response: requests.Response, output_format: str = OutputFormat.JSON) -> Any:
        """
        Parse API response based on format

        Args:
            response: HTTP response object
            output_format: Expected output format

        Returns:
            Parsed response data
        """
        if output_format == OutputFormat.JSON:
            try:
                return response.json()
            except json.JSONDecodeError:
                return response.text
        elif output_format in [OutputFormat.XML, OutputFormat.SDF, OutputFormat.CSV, 
                              OutputFormat.TXT, OutputFormat.ASNT, OutputFormat.ASNB]:
            return response.text
        elif output_format == OutputFormat.PNG:
            return response.content
        else:
            return response.text

    # Compound methods
    def get_compound_by_cid(self, cid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
        """
        Get compound record by CID

        Args:
            cid: Compound ID
            output_format: Desired output format

        Returns:
            Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid, 
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the compound data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
                return result["PC_Compounds"][0]

        return result

    def get_compounds_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                             name_type: str = "word") -> Any:
        """
        Get compounds by name

        Args:
            name: Compound name
            output_format: Desired output format
            name_type: Name search type ("word" or "complete")

        Returns:
            Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.NAME, name,
                             Operation.RECORD, output_format, name_type=name_type)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the compound data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
                # If there's only one compound, return it directly, otherwise return the list
                if len(result["PC_Compounds"]) == 1:
                    return result["PC_Compounds"][0]
                else:
                    return result["PC_Compounds"]

        return result

    def get_compounds_by_smiles(self, smiles: str, output_format: str = OutputFormat.JSON) -> Any:
        """
        Get compounds by SMILES

        Args:
            smiles: SMILES string
            output_format: Desired output format

        Returns:
            Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.SMILES, smiles,
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the compound data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
                # If there's only one compound, return it directly, otherwise return the list
                if len(result["PC_Compounds"]) == 1:
                    return result["PC_Compounds"][0]
                else:
                    return result["PC_Compounds"]

        return result

    def get_compounds_by_inchikey(self, inchikey: str, output_format: str = OutputFormat.JSON) -> Any:
        """
        Get compounds by InChIKey

        Args:
            inchikey: InChI Key
            output_format: Desired output format

        Returns:
            Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.INCHIKEY, inchikey,
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the compound data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
                # If there's only one compound, return it directly, otherwise return the list
                if len(result["PC_Compounds"]) == 1:
                    return result["PC_Compounds"][0]
                else:
                    return result["PC_Compounds"]

        return result

    def get_compound_properties(self, cid: Union[int, str], 
                               properties: List[str], 
                               include_synonyms: bool = True,
                               output_format: str = OutputFormat.JSON) -> Dict[str, Any]:
        """
        Get compound properties and synonyms by CID with direct property access

        Args:
            cid: Single Compound ID
            properties: List of property names
            include_synonyms: Whether to include synonyms in the output
            output_format: Desired output format

        Returns:
            Dictionary with properties directly accessible at top level,
            plus 'success', 'cid', 'synonyms', and 'error' metadata keys
        """
        try:
            props_str = ','.join(properties)
            operation = f"{Operation.PROPERTY}/{props_str}"
            url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid,
                                 operation, output_format)
            response = self._make_request(url)
            prop_data = self._parse_response(response, output_format)

            # Get synonyms if requested
            synonyms_data = None
            if include_synonyms:
                try:
                    synonyms_data = self.get_compound_synonyms(cid, output_format)
                except Exception as e:
                    # Don't fail the whole request if synonyms fail
                    synonyms_data = []

            # Extract properties from nested structure
            if prop_data and 'PropertyTable' in prop_data and 'Properties' in prop_data['PropertyTable']:
                properties_dict = prop_data['PropertyTable']['Properties'][0]

                # Add metadata keys
                properties_dict['success'] = True
                properties_dict['cid'] = cid
                properties_dict['error'] = None
                if include_synonyms:
                    properties_dict['synonyms'] = synonyms_data

                return properties_dict
            else:
                # Fallback for unexpected structure
                result = {
                    "success": False,
                    "cid": cid,
                    "error": "Unexpected response structure",
                    "raw_response": prop_data
                }
                if include_synonyms:
                    result['synonyms'] = synonyms_data
                return result

        except Exception as e:
            result = {
                "success": False,
                "cid": cid,
                "error": str(e)
            }
            if include_synonyms:
                result['synonyms'] = None
            return result

    def get_compound_properties_batch(self, cids: List[Union[int, str]], 
                                     properties: List[str], 
                                     output_format: str = OutputFormat.JSON) -> List[Dict[str, Any]]:
        """
        Get compound properties for multiple CIDs (legacy batch method)

        Args:
            cids: List of CIDs
            properties: List of property names
            output_format: Desired output format

        Returns:
            List of dictionaries, each with flat structure like get_compound_properties
        """
        results = []
        for cid in cids:
            try:
                result = self.get_compound_properties(cid, properties, include_synonyms=False, output_format=output_format)
                results.append(result)
            except Exception as e:
                results.append({
                    "success": False,
                    "cid": cid,
                    "error": str(e)
                })
        return results

    def get_compound_synonyms(self, cid: Union[int, str], output_format: str = OutputFormat.JSON) -> List[str]:
        """
        Get compound synonyms by CID

        Args:
            cid: Compound ID
            output_format: Desired output format

        Returns:
            List of synonyms (flattened from nested structure)
        """
        try:
            url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid,
                                 Operation.SYNONYMS, output_format)
            response = self._make_request(url)
            raw_data = self._parse_response(response, output_format)

            # Extract synonyms from nested structure
            if raw_data and 'InformationList' in raw_data:
                info_list = raw_data['InformationList'].get('Information', [])
                if info_list and len(info_list) > 0:
                    return info_list[0].get('Synonym', [])

            # Return empty list if no synonyms found
            return []

        except Exception:
            # Return empty list on error to maintain consistent return type
            return []

    def get_cids_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                        name_type: str = "word", domain: str = Domain.COMPOUND) -> Any:
        """
        Get CIDs by name from compound or substance domain

        Args:
            name: Compound or substance name
            output_format: Desired output format
            name_type: Name search type ("word" or "complete")
            domain: Search domain (Domain.COMPOUND or Domain.SUBSTANCE)

        Returns:
            CID list (extracted from nested response structure)

        Note:
            When searching in the substance domain, this can find CIDs for substances
            that may not be directly searchable in the compound domain.
        """
        # Choose appropriate namespace based on domain
        if domain == Domain.COMPOUND:
            namespace = CompoundDomainNamespace.NAME
        elif domain == Domain.SUBSTANCE:
            namespace = SubstanceDomainNamespace.NAME
        else:
            raise ValueError(f"Unsupported domain: {domain}. Use Domain.COMPOUND or Domain.SUBSTANCE")

        url = self._build_url(domain, namespace, name,
                             Operation.CIDS, output_format, name_type=name_type)
        response = self._make_request(url)
        parsed_response = self._parse_response(response, output_format)

        # Extract CID list from nested structure if JSON format
        if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
            # Handle compound domain response structure
            if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
                return parsed_response['IdentifierList']['CID']
            # Handle substance domain response structure
            elif 'InformationList' in parsed_response and 'Information' in parsed_response['InformationList']:
                cids = []
                for info in parsed_response['InformationList']['Information']:
                    if 'CID' in info:
                        cids.extend(info['CID'])
                return list(set(cids))  # Remove duplicates and return unique CIDs
            elif 'Fault' in parsed_response:
                # Handle API fault response
                raise PubChemNotFoundError(f"No CIDs found for name: {name}")

        # Return original response for non-JSON formats or if structure is different
        return parsed_response

    def get_cids_by_smiles(self, smiles: str, output_format: str = OutputFormat.JSON) -> Any:
        """
        Get CIDs by SMILES

        Args:
            smiles: SMILES string
            output_format: Desired output format

        Returns:
            CID list (extracted from nested response structure)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.SMILES, smiles,
                             Operation.CIDS, output_format)
        response = self._make_request(url)
        parsed_response = self._parse_response(response, output_format)

        # Extract CID list from nested structure if JSON format
        if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
            if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
                return parsed_response['IdentifierList']['CID']
            elif 'Fault' in parsed_response:
                # Handle API fault response
                raise PubChemNotFoundError(f"No CIDs found for SMILES: {smiles}")

        # Return original response for non-JSON formats or if structure is different
        return parsed_response

    def get_cids_by_inchikey(self, inchikey: str, output_format: str = OutputFormat.JSON) -> Any:
        """
        Get CIDs by InChI Key

        Args:
            inchikey: InChI Key string
            output_format: Desired output format

        Returns:
            CID list (extracted from nested response structure)
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.INCHIKEY, inchikey,
                             Operation.CIDS, output_format)
        response = self._make_request(url)
        parsed_response = self._parse_response(response, output_format)

        # Extract CID list from nested structure if JSON format
        if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
            if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
                return parsed_response['IdentifierList']['CID']
            elif 'Fault' in parsed_response:
                # Handle API fault response
                raise PubChemNotFoundError(f"No CIDs found for InChI Key: {inchikey}")

        # Return original response for non-JSON formats or if structure is different
        return parsed_response

    def get_cids_by_formula(self, formula: str, output_format: str = OutputFormat.JSON,
                           allow_other_elements: bool = False) -> Any:
        """
        Get CIDs by molecular formula using fast search

        Args:
            formula: Molecular formula
            output_format: Desired output format
            allow_other_elements: Allow other elements beyond those specified

        Returns:
            CID list
        """
        url = self._build_url(Domain.COMPOUND, FastSearch.FASTFORMULA, formula,
                             Operation.CIDS, output_format, 
                             AllowOtherElements=allow_other_elements)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    # Structure search methods
    def substructure_search(self, query: str, query_type: str = "smiles", 
                           output_format: str = OutputFormat.JSON, **options: Any) -> Any:
        """
        Perform substructure search

        Args:
            query: Query structure (SMILES, CID, etc.)
            query_type: Type of query (smiles, cid, etc.)
            output_format: Desired output format
            **options: Search options (MatchIsotopes, MaxRecords, etc.)

        Returns:
            Search results
        """
        search_type = f"{FastSearch.FASTSUBSTRUCTURE}/{query_type}"
        url = self._build_url(Domain.COMPOUND, search_type, query,
                             Operation.CIDS, output_format, **options)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    def superstructure_search(self, query: str, query_type: str = "smiles",
                             output_format: str = OutputFormat.JSON, **options: Any) -> Any:
        """
        Perform superstructure search

        Args:
            query: Query structure (SMILES, CID, etc.)
            query_type: Type of query (smiles, cid, etc.)
            output_format: Desired output format
            **options: Search options

        Returns:
            Search results
        """
        search_type = f"{FastSearch.FASTSUPERSTRUCTURE}/{query_type}"
        url = self._build_url(Domain.COMPOUND, search_type, query,
                             Operation.CIDS, output_format, **options)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    def similarity_search(self, query: str, query_type: str = "smiles",
                         threshold: int = 90, output_format: str = OutputFormat.JSON,
                         **options: Any) -> Any:
        """
        Perform 2D similarity search

        Args:
            query: Query structure (SMILES, CID, etc.)
            query_type: Type of query (smiles, cid, etc.)
            threshold: Similarity threshold (0-100)
            output_format: Desired output format
            **options: Search options

        Returns:
            Search results
        """
        search_type = f"{FastSearch.FASTSIMILARITY_2D}/{query_type}"
        url = self._build_url(Domain.COMPOUND, search_type, query,
                             Operation.CIDS, output_format, 
                             Threshold=threshold, **options)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    def identity_search(self, query: str, query_type: str = "smiles",
                       identity_type: str = "same_stereo_isotope",
                       output_format: str = OutputFormat.JSON, **options: Any) -> Any:
        """
        Perform identity search

        Args:
            query: Query structure (SMILES, CID, etc.)
            query_type: Type of query (smiles, cid, etc.)
            identity_type: Type of identity match
            output_format: Desired output format
            **options: Search options

        Returns:
            Search results
        """
        search_type = f"{FastSearch.FASTIDENTITY}/{query_type}"
        url = self._build_url(Domain.COMPOUND, search_type, query,
                             Operation.CIDS, output_format,
                             identity_type=identity_type, **options)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    # Substance methods
    def get_substance_by_sid(self, sid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
        """
        Get substance by SID

        Args:
            sid: Substance ID
            output_format: Desired output format

        Returns:
            Substance data (automatically extracts from PC_Substances wrapper for JSON format)
        """
        url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.SID, sid,
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the substance data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Substances" in result and isinstance(result["PC_Substances"], list) and len(result["PC_Substances"]) > 0:
                return result["PC_Substances"][0]

        return result

    def get_substances_by_name(self, name: str, output_format: str = OutputFormat.JSON) -> Any:
        """
        Get substances by name

        Args:
            name: Substance name
            output_format: Desired output format

        Returns:
            Substance data (automatically extracts from PC_Substances wrapper for JSON format)
        """
        url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.NAME, name,
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        result = self._parse_response(response, output_format)

        # For JSON format, automatically extract the substance data from the wrapper
        if output_format == OutputFormat.JSON and isinstance(result, dict):
            if "PC_Substances" in result and isinstance(result["PC_Substances"], list) and len(result["PC_Substances"]) > 0:
                # If there's only one substance, return it directly, otherwise return the list
                if len(result["PC_Substances"]) == 1:
                    return result["PC_Substances"][0]
                else:
                    return result["PC_Substances"]

        return result

    def get_sids_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                        sourcename: Optional[str] = None) -> Any:
        """
        Get SIDs by name

        Args:
            name: Substance name
            output_format: Desired output format
            sourcename: Restrict to specific source

        Returns:
            SID list (extracted from nested response structure)
        """
        options = {}
        if sourcename:
            options['sourcename'] = sourcename

        url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.NAME, name,
                             Operation.SIDS, output_format, **options)
        response = self._make_request(url)
        parsed_response = self._parse_response(response, output_format)

        # Extract SID list from nested structure if JSON format
        if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
            if 'IdentifierList' in parsed_response and 'SID' in parsed_response['IdentifierList']:
                return parsed_response['IdentifierList']['SID']
            elif 'Fault' in parsed_response:
                # Handle API fault response
                raise PubChemNotFoundError(f"No SIDs found for name: {name}")

        # Return original response for non-JSON formats or if structure is different
        return parsed_response

    # Assay methods
    def get_assay_by_aid(self, aid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
        """
        Get assay by AID

        Args:
            aid: Assay ID
            output_format: Desired output format

        Returns:
            Assay data
        """
        url = self._build_url(Domain.ASSAY, AssayDomainNamespace.AID, aid,
                             Operation.RECORD, output_format)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    def get_assay_summary(self, cids: Union[int, str, List[Union[int, str]]],
                         output_format: str = OutputFormat.JSON) -> Any:
        """
        Get assay summary for compounds

        Args:
            cids: Single CID or list of CIDs
            output_format: Desired output format

        Returns:
            Assay summary data
        """
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cids,
                             Operation.ASSAYSUMMARY, output_format)
        response = self._make_request(url)
        return self._parse_response(response, output_format)

    # Convenience methods for common use cases
    def search_compound(self, query: str, search_type: str = "name") -> Dict[str, Any]:
        """
        Search for compound with automatic format detection

        Args:
            query: Search query (name, SMILES, InChIKey, etc.)
            search_type: Type of search ("name", "smiles", "inchikey", "cid")

        Returns:
            Dictionary with search results and metadata
        """
        try:
            if search_type == "name":
                result = self.get_compounds_by_name(query)
            elif search_type == "smiles":
                result = self.get_compounds_by_smiles(query)
            elif search_type == "inchikey":
                result = self.get_compounds_by_inchikey(query)
            elif search_type == "cid":
                result = self.get_compound_by_cid(query)
            else:
                raise ValueError(f"Unsupported search type: {search_type}")

            return {
                "success": True,
                "query": query,
                "search_type": search_type,
                "data": result,
                "error": None
            }

        except Exception as e:
            return {
                "success": False,
                "query": query,
                "search_type": search_type,
                "data": None,
                "error": str(e)
            }

    def get_basic_compound_info(self, cid: Union[int, str], 
                                include_synonyms: bool = False) -> Dict[str, Any]:
        """
        Get basic compound information including formula, molecular weight, 
        and structure, and IUPAC name. Synonyms can be included optionally.

        Args:
            cid: Compound ID
            include_synonyms: Whether to include synonyms in the response

        Returns:
            Dictionary with compound properties directly accessible at top level,
            plus 'success', 'cid', 'synonyms', and 'error' metadata keys
        """
        # Get basic properties with synonyms
        properties = [
            CompoundProperties.MOLECULAR_FORMULA,
            CompoundProperties.MOLECULAR_WEIGHT,
            CompoundProperties.SMILES,
            CompoundProperties.INCHI,
            CompoundProperties.INCHIKEY,
            CompoundProperties.IUPAC_NAME
        ]

        # Use the new get_compound_properties method which already includes synonyms and metadata
        return self.get_compound_properties(cid, properties, include_synonyms=include_synonyms)

    def get_all_compound_info(self, cid: Union[int, str]) -> Dict[str, Any]:
        """
        Get all compound properties as listed in CompoundProperties

        Args:
            cid: Compound ID

        Returns:
            Dictionary with compound properties directly accessible at top level,
            plus 'success', 'cid', and 'error' metadata keys
        """
        # Get all property values from CompoundProperties class
        properties = []
        for attr_name in dir(CompoundProperties):
            if not attr_name.startswith("_"):
                prop_value = getattr(CompoundProperties, attr_name)
                if isinstance(prop_value, str):
                    properties.append(prop_value)

        # Use the new get_compound_properties method which already returns flat data
        return self.get_compound_properties(cid, properties, include_synonyms=False)

    def extract_identifiers_from_synonyms(self, synonyms: List[str]) -> Dict[str, List[str]]:
        """
        Extract chemical identifiers from a list of synonyms

        Args:
            synonyms: List of synonym strings

        Returns:
            Dictionary with lists of unique identifiers for each type:
            - casrn: CAS Registry Numbers (format: 2-5 digit-2 digit-single digit)
            - nsc: NSC numbers (begins with NSC)
            - dtxsid: DTXSID identifiers (begins with DTXSID)
            - dtxcid: DTXCID identifiers (begins with DTXCID)
            - ec_number: EC numbers (format: NNN-NNN-N)
            - chebi_id: ChEBI IDs (begins with CHEBI)
            - chembl: ChEMBL numbers (begins with CHEMBL)
        """
        identifiers = {
            'casrn': [],
            'nsc': [],
            'dtxsid': [],
            'dtxcid': [],
            'ec_number': [],
            'chebi_id': [],
            'chembl': []
        }

        for synonym in synonyms:
            if not isinstance(synonym, str):
                continue

            synonym_upper = synonym.upper().strip()

            # CAS Registry Number: 2-5 digits, hyphen, 2 digits, hyphen, 1 digit
            # May or may not begin with "CAS"
            cas_patterns = [
                r'\b(?:CAS\s*[:\-]?\s*)?(\d{2,7}-\d{2}-\d)\b',  # With optional CAS prefix and separators
            ]
            for pattern in cas_patterns:
                matches = re.findall(pattern, synonym_upper)
                for match in matches:
                    # Validate CAS number format more strictly
                    if re.match(r'^\d{2,7}-\d{2}-\d$', match):
                        if match not in identifiers['casrn']:
                            identifiers['casrn'].append(match)

            # NSC Number: begins with NSC
            nsc_match = re.search(r'\b(NSC\s*\d+)\b', synonym_upper)
            if nsc_match:
                nsc = nsc_match.group(1).replace(' ', '')
                if nsc not in identifiers['nsc']:
                    identifiers['nsc'].append(nsc)

            # DTXSID: begins with DTXSID
            dtxsid_match = re.search(r'\b(DTXSID\d+)\b', synonym_upper)
            if dtxsid_match:
                dtxsid = dtxsid_match.group(1)
                if dtxsid not in identifiers['dtxsid']:
                    identifiers['dtxsid'].append(dtxsid)

            # DTXCID: begins with DTXCID
            dtxcid_match = re.search(r'\b(DTXCID\d+)\b', synonym_upper)
            if dtxcid_match:
                dtxcid = dtxcid_match.group(1)
                if dtxcid not in identifiers['dtxcid']:
                    identifiers['dtxcid'].append(dtxcid)

            # EC Number: standard format is N.N.N.N (enzyme classification)
            # Only accept the standard dot-separated format
            ec_pattern = r'\b(?:EC\s*[:\-]?\s*)?(\d{1,2}\.\d{1,3}\.\d{1,3}\.(?:\d{1,3}|\-))\b'
            matches = re.findall(ec_pattern, synonym_upper)
            for match in matches:
                if match not in identifiers['ec_number']:
                    identifiers['ec_number'].append(match)

            # ChEBI ID: begins with CHEBI
            chebi_match = re.search(r'\b(CHEBI:?\s*\d+)\b', synonym_upper)
            if chebi_match:
                chebi = chebi_match.group(1).replace(' ', '').replace(':', ':')
                # Standardize format to CHEBI:XXXXX
                if not chebi.startswith('CHEBI:'):
                    chebi = chebi.replace('CHEBI', 'CHEBI:')
                if chebi not in identifiers['chebi_id']:
                    identifiers['chebi_id'].append(chebi)

            # ChEMBL: begins with CHEMBL
            chembl_match = re.search(r'\b(CHEMBL\d+)\b', synonym_upper)
            if chembl_match:
                chembl = chembl_match.group(1)
                if chembl not in identifiers['chembl']:
                    identifiers['chembl'].append(chembl)

        return identifiers

    def get_compound_identifiers(self, cid: Union[int, str]) -> Dict[str, Any]:
        """
        Get compound identifiers extracted from synonyms

        Args:
            cid: Compound ID

        Returns:
            Dictionary with 'success', 'cid', 'error' metadata and extracted identifiers
        """
        try:
            # Get synonyms
            synonyms_list = self.get_compound_synonyms(cid)

            # Extract identifiers
            identifiers = self.extract_identifiers_from_synonyms(synonyms_list)

            # Add metadata
            result = {
                'success': True,
                'cid': cid,
                'error': None,
                'total_synonyms': len(synonyms_list)
            }
            result.update(identifiers)

            return result

        except Exception as e:
            return {
                'success': False,
                'cid': cid,
                'error': str(e),
                'casrn': [],
                'nsc': [],
                'dtxsid': [],
                'dtxcid': [],
                'ec_number': [],
                'chebi_id': [],
                'chembl': [],
                'total_synonyms': 0
            }

    def find_cids_comprehensive(self, name: str, name_type: str = "word") -> Dict[str, Any]:
        """
        Search for CIDs in both compound and substance domains

        This method first searches in the compound domain, and if no results are found,
        it searches in the substance domain. This is useful for comprehensive searching
        when you're not sure which domain contains the identifier.

        Args:
            name: Compound or substance name (including CAS numbers, trade names, etc.)
            name_type: Name search type ("word" or "complete")

        Returns:
            Dictionary with search results from both domains
        """
        results = {
            "query": name,
            "name_type": name_type,
            "compound_domain": {"cids": [], "success": False, "error": None},
            "substance_domain": {"cids": [], "success": False, "error": None},
            "total_unique_cids": [],
            "recommended_domain": None
        }

        # Try compound domain first
        try:
            compound_cids = self.get_cids_by_name(name, name_type=name_type, domain=Domain.COMPOUND)
            results["compound_domain"]["cids"] = compound_cids
            results["compound_domain"]["success"] = True
            results["total_unique_cids"].extend(compound_cids)
        except Exception as e:
            results["compound_domain"]["error"] = str(e)

        # Try substance domain
        try:
            substance_cids = self.get_cids_by_name(name, name_type=name_type, domain=Domain.SUBSTANCE)
            results["substance_domain"]["cids"] = substance_cids
            results["substance_domain"]["success"] = True
            results["total_unique_cids"].extend(substance_cids)
        except Exception as e:
            results["substance_domain"]["error"] = str(e)

        # Remove duplicates and determine recommended domain
        results["total_unique_cids"] = list(set(results["total_unique_cids"]))

        if results["compound_domain"]["success"] and results["substance_domain"]["success"]:
            # Both succeeded - recommend the one with more results
            compound_count = len(results["compound_domain"]["cids"])
            substance_count = len(results["substance_domain"]["cids"])
            results["recommended_domain"] = "compound" if compound_count >= substance_count else "substance"
        elif results["compound_domain"]["success"]:
            results["recommended_domain"] = "compound"
        elif results["substance_domain"]["success"]:
            results["recommended_domain"] = "substance"
        else:
            results["recommended_domain"] = None

        return results
Functions
__init__(base_url=pugrest_prolog, pause_time=pause_between_calls)

Initialize PubChem API client

Parameters:

Name Type Description Default
base_url str

Base URL for PubChem REST API

pugrest_prolog
pause_time float

Minimum time between API calls in seconds

pause_between_calls
Source code in src/provesid/pubchem.py
199
200
201
202
203
204
205
206
207
208
209
def __init__(self, base_url: str = pugrest_prolog, pause_time: float = pause_between_calls):
    """
    Initialize PubChem API client

    Args:
        base_url: Base URL for PubChem REST API
        pause_time: Minimum time between API calls in seconds
    """
    self.base_url = base_url.rstrip('/')
    self.pause_time = pause_time
    self.last_request_time = 0
get_compound_by_cid(cid, output_format=OutputFormat.JSON)

Get compound record by CID

Parameters:

Name Type Description Default
cid Union[int, str]

Compound ID

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Compound data (automatically extracts from PC_Compounds wrapper for JSON format)

Source code in src/provesid/pubchem.py
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
def get_compound_by_cid(self, cid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
    """
    Get compound record by CID

    Args:
        cid: Compound ID
        output_format: Desired output format

    Returns:
        Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid, 
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the compound data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
            return result["PC_Compounds"][0]

    return result
get_compounds_by_name(name, output_format=OutputFormat.JSON, name_type='word')

Get compounds by name

Parameters:

Name Type Description Default
name str

Compound name

required
output_format str

Desired output format

JSON
name_type str

Name search type ("word" or "complete")

'word'

Returns:

Type Description
Any

Compound data (automatically extracts from PC_Compounds wrapper for JSON format)

Source code in src/provesid/pubchem.py
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
def get_compounds_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                         name_type: str = "word") -> Any:
    """
    Get compounds by name

    Args:
        name: Compound name
        output_format: Desired output format
        name_type: Name search type ("word" or "complete")

    Returns:
        Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.NAME, name,
                         Operation.RECORD, output_format, name_type=name_type)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the compound data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
            # If there's only one compound, return it directly, otherwise return the list
            if len(result["PC_Compounds"]) == 1:
                return result["PC_Compounds"][0]
            else:
                return result["PC_Compounds"]

    return result
get_compounds_by_smiles(smiles, output_format=OutputFormat.JSON)

Get compounds by SMILES

Parameters:

Name Type Description Default
smiles str

SMILES string

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Compound data (automatically extracts from PC_Compounds wrapper for JSON format)

Source code in src/provesid/pubchem.py
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
def get_compounds_by_smiles(self, smiles: str, output_format: str = OutputFormat.JSON) -> Any:
    """
    Get compounds by SMILES

    Args:
        smiles: SMILES string
        output_format: Desired output format

    Returns:
        Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.SMILES, smiles,
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the compound data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
            # If there's only one compound, return it directly, otherwise return the list
            if len(result["PC_Compounds"]) == 1:
                return result["PC_Compounds"][0]
            else:
                return result["PC_Compounds"]

    return result
get_compounds_by_inchikey(inchikey, output_format=OutputFormat.JSON)

Get compounds by InChIKey

Parameters:

Name Type Description Default
inchikey str

InChI Key

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Compound data (automatically extracts from PC_Compounds wrapper for JSON format)

Source code in src/provesid/pubchem.py
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
def get_compounds_by_inchikey(self, inchikey: str, output_format: str = OutputFormat.JSON) -> Any:
    """
    Get compounds by InChIKey

    Args:
        inchikey: InChI Key
        output_format: Desired output format

    Returns:
        Compound data (automatically extracts from PC_Compounds wrapper for JSON format)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.INCHIKEY, inchikey,
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the compound data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Compounds" in result and isinstance(result["PC_Compounds"], list) and len(result["PC_Compounds"]) > 0:
            # If there's only one compound, return it directly, otherwise return the list
            if len(result["PC_Compounds"]) == 1:
                return result["PC_Compounds"][0]
            else:
                return result["PC_Compounds"]

    return result
get_compound_properties(cid, properties, include_synonyms=True, output_format=OutputFormat.JSON)

Get compound properties and synonyms by CID with direct property access

Parameters:

Name Type Description Default
cid Union[int, str]

Single Compound ID

required
properties List[str]

List of property names

required
include_synonyms bool

Whether to include synonyms in the output

True
output_format str

Desired output format

JSON

Returns:

Type Description
Dict[str, Any]

Dictionary with properties directly accessible at top level,

Dict[str, Any]

plus 'success', 'cid', 'synonyms', and 'error' metadata keys

Source code in src/provesid/pubchem.py
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
def get_compound_properties(self, cid: Union[int, str], 
                           properties: List[str], 
                           include_synonyms: bool = True,
                           output_format: str = OutputFormat.JSON) -> Dict[str, Any]:
    """
    Get compound properties and synonyms by CID with direct property access

    Args:
        cid: Single Compound ID
        properties: List of property names
        include_synonyms: Whether to include synonyms in the output
        output_format: Desired output format

    Returns:
        Dictionary with properties directly accessible at top level,
        plus 'success', 'cid', 'synonyms', and 'error' metadata keys
    """
    try:
        props_str = ','.join(properties)
        operation = f"{Operation.PROPERTY}/{props_str}"
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid,
                             operation, output_format)
        response = self._make_request(url)
        prop_data = self._parse_response(response, output_format)

        # Get synonyms if requested
        synonyms_data = None
        if include_synonyms:
            try:
                synonyms_data = self.get_compound_synonyms(cid, output_format)
            except Exception as e:
                # Don't fail the whole request if synonyms fail
                synonyms_data = []

        # Extract properties from nested structure
        if prop_data and 'PropertyTable' in prop_data and 'Properties' in prop_data['PropertyTable']:
            properties_dict = prop_data['PropertyTable']['Properties'][0]

            # Add metadata keys
            properties_dict['success'] = True
            properties_dict['cid'] = cid
            properties_dict['error'] = None
            if include_synonyms:
                properties_dict['synonyms'] = synonyms_data

            return properties_dict
        else:
            # Fallback for unexpected structure
            result = {
                "success": False,
                "cid": cid,
                "error": "Unexpected response structure",
                "raw_response": prop_data
            }
            if include_synonyms:
                result['synonyms'] = synonyms_data
            return result

    except Exception as e:
        result = {
            "success": False,
            "cid": cid,
            "error": str(e)
        }
        if include_synonyms:
            result['synonyms'] = None
        return result
get_compound_properties_batch(cids, properties, output_format=OutputFormat.JSON)

Get compound properties for multiple CIDs (legacy batch method)

Parameters:

Name Type Description Default
cids List[Union[int, str]]

List of CIDs

required
properties List[str]

List of property names

required
output_format str

Desired output format

JSON

Returns:

Type Description
List[Dict[str, Any]]

List of dictionaries, each with flat structure like get_compound_properties

Source code in src/provesid/pubchem.py
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
def get_compound_properties_batch(self, cids: List[Union[int, str]], 
                                 properties: List[str], 
                                 output_format: str = OutputFormat.JSON) -> List[Dict[str, Any]]:
    """
    Get compound properties for multiple CIDs (legacy batch method)

    Args:
        cids: List of CIDs
        properties: List of property names
        output_format: Desired output format

    Returns:
        List of dictionaries, each with flat structure like get_compound_properties
    """
    results = []
    for cid in cids:
        try:
            result = self.get_compound_properties(cid, properties, include_synonyms=False, output_format=output_format)
            results.append(result)
        except Exception as e:
            results.append({
                "success": False,
                "cid": cid,
                "error": str(e)
            })
    return results
get_compound_synonyms(cid, output_format=OutputFormat.JSON)

Get compound synonyms by CID

Parameters:

Name Type Description Default
cid Union[int, str]

Compound ID

required
output_format str

Desired output format

JSON

Returns:

Type Description
List[str]

List of synonyms (flattened from nested structure)

Source code in src/provesid/pubchem.py
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
def get_compound_synonyms(self, cid: Union[int, str], output_format: str = OutputFormat.JSON) -> List[str]:
    """
    Get compound synonyms by CID

    Args:
        cid: Compound ID
        output_format: Desired output format

    Returns:
        List of synonyms (flattened from nested structure)
    """
    try:
        url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cid,
                             Operation.SYNONYMS, output_format)
        response = self._make_request(url)
        raw_data = self._parse_response(response, output_format)

        # Extract synonyms from nested structure
        if raw_data and 'InformationList' in raw_data:
            info_list = raw_data['InformationList'].get('Information', [])
            if info_list and len(info_list) > 0:
                return info_list[0].get('Synonym', [])

        # Return empty list if no synonyms found
        return []

    except Exception:
        # Return empty list on error to maintain consistent return type
        return []
get_cids_by_name(name, output_format=OutputFormat.JSON, name_type='word', domain=Domain.COMPOUND)

Get CIDs by name from compound or substance domain

Parameters:

Name Type Description Default
name str

Compound or substance name

required
output_format str

Desired output format

JSON
name_type str

Name search type ("word" or "complete")

'word'
domain str

Search domain (Domain.COMPOUND or Domain.SUBSTANCE)

COMPOUND

Returns:

Type Description
Any

CID list (extracted from nested response structure)

Note

When searching in the substance domain, this can find CIDs for substances that may not be directly searchable in the compound domain.

Source code in src/provesid/pubchem.py
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
def get_cids_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                    name_type: str = "word", domain: str = Domain.COMPOUND) -> Any:
    """
    Get CIDs by name from compound or substance domain

    Args:
        name: Compound or substance name
        output_format: Desired output format
        name_type: Name search type ("word" or "complete")
        domain: Search domain (Domain.COMPOUND or Domain.SUBSTANCE)

    Returns:
        CID list (extracted from nested response structure)

    Note:
        When searching in the substance domain, this can find CIDs for substances
        that may not be directly searchable in the compound domain.
    """
    # Choose appropriate namespace based on domain
    if domain == Domain.COMPOUND:
        namespace = CompoundDomainNamespace.NAME
    elif domain == Domain.SUBSTANCE:
        namespace = SubstanceDomainNamespace.NAME
    else:
        raise ValueError(f"Unsupported domain: {domain}. Use Domain.COMPOUND or Domain.SUBSTANCE")

    url = self._build_url(domain, namespace, name,
                         Operation.CIDS, output_format, name_type=name_type)
    response = self._make_request(url)
    parsed_response = self._parse_response(response, output_format)

    # Extract CID list from nested structure if JSON format
    if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
        # Handle compound domain response structure
        if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
            return parsed_response['IdentifierList']['CID']
        # Handle substance domain response structure
        elif 'InformationList' in parsed_response and 'Information' in parsed_response['InformationList']:
            cids = []
            for info in parsed_response['InformationList']['Information']:
                if 'CID' in info:
                    cids.extend(info['CID'])
            return list(set(cids))  # Remove duplicates and return unique CIDs
        elif 'Fault' in parsed_response:
            # Handle API fault response
            raise PubChemNotFoundError(f"No CIDs found for name: {name}")

    # Return original response for non-JSON formats or if structure is different
    return parsed_response
get_cids_by_smiles(smiles, output_format=OutputFormat.JSON)

Get CIDs by SMILES

Parameters:

Name Type Description Default
smiles str

SMILES string

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

CID list (extracted from nested response structure)

Source code in src/provesid/pubchem.py
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
def get_cids_by_smiles(self, smiles: str, output_format: str = OutputFormat.JSON) -> Any:
    """
    Get CIDs by SMILES

    Args:
        smiles: SMILES string
        output_format: Desired output format

    Returns:
        CID list (extracted from nested response structure)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.SMILES, smiles,
                         Operation.CIDS, output_format)
    response = self._make_request(url)
    parsed_response = self._parse_response(response, output_format)

    # Extract CID list from nested structure if JSON format
    if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
        if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
            return parsed_response['IdentifierList']['CID']
        elif 'Fault' in parsed_response:
            # Handle API fault response
            raise PubChemNotFoundError(f"No CIDs found for SMILES: {smiles}")

    # Return original response for non-JSON formats or if structure is different
    return parsed_response
get_cids_by_inchikey(inchikey, output_format=OutputFormat.JSON)

Get CIDs by InChI Key

Parameters:

Name Type Description Default
inchikey str

InChI Key string

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

CID list (extracted from nested response structure)

Source code in src/provesid/pubchem.py
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
def get_cids_by_inchikey(self, inchikey: str, output_format: str = OutputFormat.JSON) -> Any:
    """
    Get CIDs by InChI Key

    Args:
        inchikey: InChI Key string
        output_format: Desired output format

    Returns:
        CID list (extracted from nested response structure)
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.INCHIKEY, inchikey,
                         Operation.CIDS, output_format)
    response = self._make_request(url)
    parsed_response = self._parse_response(response, output_format)

    # Extract CID list from nested structure if JSON format
    if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
        if 'IdentifierList' in parsed_response and 'CID' in parsed_response['IdentifierList']:
            return parsed_response['IdentifierList']['CID']
        elif 'Fault' in parsed_response:
            # Handle API fault response
            raise PubChemNotFoundError(f"No CIDs found for InChI Key: {inchikey}")

    # Return original response for non-JSON formats or if structure is different
    return parsed_response
get_cids_by_formula(formula, output_format=OutputFormat.JSON, allow_other_elements=False)

Get CIDs by molecular formula using fast search

Parameters:

Name Type Description Default
formula str

Molecular formula

required
output_format str

Desired output format

JSON
allow_other_elements bool

Allow other elements beyond those specified

False

Returns:

Type Description
Any

CID list

Source code in src/provesid/pubchem.py
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
def get_cids_by_formula(self, formula: str, output_format: str = OutputFormat.JSON,
                       allow_other_elements: bool = False) -> Any:
    """
    Get CIDs by molecular formula using fast search

    Args:
        formula: Molecular formula
        output_format: Desired output format
        allow_other_elements: Allow other elements beyond those specified

    Returns:
        CID list
    """
    url = self._build_url(Domain.COMPOUND, FastSearch.FASTFORMULA, formula,
                         Operation.CIDS, output_format, 
                         AllowOtherElements=allow_other_elements)
    response = self._make_request(url)
    return self._parse_response(response, output_format)

Perform substructure search

Parameters:

Name Type Description Default
query str

Query structure (SMILES, CID, etc.)

required
query_type str

Type of query (smiles, cid, etc.)

'smiles'
output_format str

Desired output format

JSON
**options Any

Search options (MatchIsotopes, MaxRecords, etc.)

{}

Returns:

Type Description
Any

Search results

Source code in src/provesid/pubchem.py
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
def substructure_search(self, query: str, query_type: str = "smiles", 
                       output_format: str = OutputFormat.JSON, **options: Any) -> Any:
    """
    Perform substructure search

    Args:
        query: Query structure (SMILES, CID, etc.)
        query_type: Type of query (smiles, cid, etc.)
        output_format: Desired output format
        **options: Search options (MatchIsotopes, MaxRecords, etc.)

    Returns:
        Search results
    """
    search_type = f"{FastSearch.FASTSUBSTRUCTURE}/{query_type}"
    url = self._build_url(Domain.COMPOUND, search_type, query,
                         Operation.CIDS, output_format, **options)
    response = self._make_request(url)
    return self._parse_response(response, output_format)

Perform superstructure search

Parameters:

Name Type Description Default
query str

Query structure (SMILES, CID, etc.)

required
query_type str

Type of query (smiles, cid, etc.)

'smiles'
output_format str

Desired output format

JSON
**options Any

Search options

{}

Returns:

Type Description
Any

Search results

Source code in src/provesid/pubchem.py
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
def superstructure_search(self, query: str, query_type: str = "smiles",
                         output_format: str = OutputFormat.JSON, **options: Any) -> Any:
    """
    Perform superstructure search

    Args:
        query: Query structure (SMILES, CID, etc.)
        query_type: Type of query (smiles, cid, etc.)
        output_format: Desired output format
        **options: Search options

    Returns:
        Search results
    """
    search_type = f"{FastSearch.FASTSUPERSTRUCTURE}/{query_type}"
    url = self._build_url(Domain.COMPOUND, search_type, query,
                         Operation.CIDS, output_format, **options)
    response = self._make_request(url)
    return self._parse_response(response, output_format)

Perform 2D similarity search

Parameters:

Name Type Description Default
query str

Query structure (SMILES, CID, etc.)

required
query_type str

Type of query (smiles, cid, etc.)

'smiles'
threshold int

Similarity threshold (0-100)

90
output_format str

Desired output format

JSON
**options Any

Search options

{}

Returns:

Type Description
Any

Search results

Source code in src/provesid/pubchem.py
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
def similarity_search(self, query: str, query_type: str = "smiles",
                     threshold: int = 90, output_format: str = OutputFormat.JSON,
                     **options: Any) -> Any:
    """
    Perform 2D similarity search

    Args:
        query: Query structure (SMILES, CID, etc.)
        query_type: Type of query (smiles, cid, etc.)
        threshold: Similarity threshold (0-100)
        output_format: Desired output format
        **options: Search options

    Returns:
        Search results
    """
    search_type = f"{FastSearch.FASTSIMILARITY_2D}/{query_type}"
    url = self._build_url(Domain.COMPOUND, search_type, query,
                         Operation.CIDS, output_format, 
                         Threshold=threshold, **options)
    response = self._make_request(url)
    return self._parse_response(response, output_format)

Perform identity search

Parameters:

Name Type Description Default
query str

Query structure (SMILES, CID, etc.)

required
query_type str

Type of query (smiles, cid, etc.)

'smiles'
identity_type str

Type of identity match

'same_stereo_isotope'
output_format str

Desired output format

JSON
**options Any

Search options

{}

Returns:

Type Description
Any

Search results

Source code in src/provesid/pubchem.py
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
def identity_search(self, query: str, query_type: str = "smiles",
                   identity_type: str = "same_stereo_isotope",
                   output_format: str = OutputFormat.JSON, **options: Any) -> Any:
    """
    Perform identity search

    Args:
        query: Query structure (SMILES, CID, etc.)
        query_type: Type of query (smiles, cid, etc.)
        identity_type: Type of identity match
        output_format: Desired output format
        **options: Search options

    Returns:
        Search results
    """
    search_type = f"{FastSearch.FASTIDENTITY}/{query_type}"
    url = self._build_url(Domain.COMPOUND, search_type, query,
                         Operation.CIDS, output_format,
                         identity_type=identity_type, **options)
    response = self._make_request(url)
    return self._parse_response(response, output_format)
get_substance_by_sid(sid, output_format=OutputFormat.JSON)

Get substance by SID

Parameters:

Name Type Description Default
sid Union[int, str]

Substance ID

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Substance data (automatically extracts from PC_Substances wrapper for JSON format)

Source code in src/provesid/pubchem.py
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
def get_substance_by_sid(self, sid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
    """
    Get substance by SID

    Args:
        sid: Substance ID
        output_format: Desired output format

    Returns:
        Substance data (automatically extracts from PC_Substances wrapper for JSON format)
    """
    url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.SID, sid,
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the substance data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Substances" in result and isinstance(result["PC_Substances"], list) and len(result["PC_Substances"]) > 0:
            return result["PC_Substances"][0]

    return result
get_substances_by_name(name, output_format=OutputFormat.JSON)

Get substances by name

Parameters:

Name Type Description Default
name str

Substance name

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Substance data (automatically extracts from PC_Substances wrapper for JSON format)

Source code in src/provesid/pubchem.py
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
def get_substances_by_name(self, name: str, output_format: str = OutputFormat.JSON) -> Any:
    """
    Get substances by name

    Args:
        name: Substance name
        output_format: Desired output format

    Returns:
        Substance data (automatically extracts from PC_Substances wrapper for JSON format)
    """
    url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.NAME, name,
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    result = self._parse_response(response, output_format)

    # For JSON format, automatically extract the substance data from the wrapper
    if output_format == OutputFormat.JSON and isinstance(result, dict):
        if "PC_Substances" in result and isinstance(result["PC_Substances"], list) and len(result["PC_Substances"]) > 0:
            # If there's only one substance, return it directly, otherwise return the list
            if len(result["PC_Substances"]) == 1:
                return result["PC_Substances"][0]
            else:
                return result["PC_Substances"]

    return result
get_sids_by_name(name, output_format=OutputFormat.JSON, sourcename=None)

Get SIDs by name

Parameters:

Name Type Description Default
name str

Substance name

required
output_format str

Desired output format

JSON
sourcename Optional[str]

Restrict to specific source

None

Returns:

Type Description
Any

SID list (extracted from nested response structure)

Source code in src/provesid/pubchem.py
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
def get_sids_by_name(self, name: str, output_format: str = OutputFormat.JSON,
                    sourcename: Optional[str] = None) -> Any:
    """
    Get SIDs by name

    Args:
        name: Substance name
        output_format: Desired output format
        sourcename: Restrict to specific source

    Returns:
        SID list (extracted from nested response structure)
    """
    options = {}
    if sourcename:
        options['sourcename'] = sourcename

    url = self._build_url(Domain.SUBSTANCE, SubstanceDomainNamespace.NAME, name,
                         Operation.SIDS, output_format, **options)
    response = self._make_request(url)
    parsed_response = self._parse_response(response, output_format)

    # Extract SID list from nested structure if JSON format
    if output_format == OutputFormat.JSON and isinstance(parsed_response, dict):
        if 'IdentifierList' in parsed_response and 'SID' in parsed_response['IdentifierList']:
            return parsed_response['IdentifierList']['SID']
        elif 'Fault' in parsed_response:
            # Handle API fault response
            raise PubChemNotFoundError(f"No SIDs found for name: {name}")

    # Return original response for non-JSON formats or if structure is different
    return parsed_response
get_assay_by_aid(aid, output_format=OutputFormat.JSON)

Get assay by AID

Parameters:

Name Type Description Default
aid Union[int, str]

Assay ID

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Assay data

Source code in src/provesid/pubchem.py
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
def get_assay_by_aid(self, aid: Union[int, str], output_format: str = OutputFormat.JSON) -> Any:
    """
    Get assay by AID

    Args:
        aid: Assay ID
        output_format: Desired output format

    Returns:
        Assay data
    """
    url = self._build_url(Domain.ASSAY, AssayDomainNamespace.AID, aid,
                         Operation.RECORD, output_format)
    response = self._make_request(url)
    return self._parse_response(response, output_format)
get_assay_summary(cids, output_format=OutputFormat.JSON)

Get assay summary for compounds

Parameters:

Name Type Description Default
cids Union[int, str, List[Union[int, str]]]

Single CID or list of CIDs

required
output_format str

Desired output format

JSON

Returns:

Type Description
Any

Assay summary data

Source code in src/provesid/pubchem.py
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
def get_assay_summary(self, cids: Union[int, str, List[Union[int, str]]],
                     output_format: str = OutputFormat.JSON) -> Any:
    """
    Get assay summary for compounds

    Args:
        cids: Single CID or list of CIDs
        output_format: Desired output format

    Returns:
        Assay summary data
    """
    url = self._build_url(Domain.COMPOUND, CompoundDomainNamespace.CID, cids,
                         Operation.ASSAYSUMMARY, output_format)
    response = self._make_request(url)
    return self._parse_response(response, output_format)
search_compound(query, search_type='name')

Search for compound with automatic format detection

Parameters:

Name Type Description Default
query str

Search query (name, SMILES, InChIKey, etc.)

required
search_type str

Type of search ("name", "smiles", "inchikey", "cid")

'name'

Returns:

Type Description
Dict[str, Any]

Dictionary with search results and metadata

Source code in src/provesid/pubchem.py
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
def search_compound(self, query: str, search_type: str = "name") -> Dict[str, Any]:
    """
    Search for compound with automatic format detection

    Args:
        query: Search query (name, SMILES, InChIKey, etc.)
        search_type: Type of search ("name", "smiles", "inchikey", "cid")

    Returns:
        Dictionary with search results and metadata
    """
    try:
        if search_type == "name":
            result = self.get_compounds_by_name(query)
        elif search_type == "smiles":
            result = self.get_compounds_by_smiles(query)
        elif search_type == "inchikey":
            result = self.get_compounds_by_inchikey(query)
        elif search_type == "cid":
            result = self.get_compound_by_cid(query)
        else:
            raise ValueError(f"Unsupported search type: {search_type}")

        return {
            "success": True,
            "query": query,
            "search_type": search_type,
            "data": result,
            "error": None
        }

    except Exception as e:
        return {
            "success": False,
            "query": query,
            "search_type": search_type,
            "data": None,
            "error": str(e)
        }
get_basic_compound_info(cid, include_synonyms=False)

Get basic compound information including formula, molecular weight, and structure, and IUPAC name. Synonyms can be included optionally.

Parameters:

Name Type Description Default
cid Union[int, str]

Compound ID

required
include_synonyms bool

Whether to include synonyms in the response

False

Returns:

Type Description
Dict[str, Any]

Dictionary with compound properties directly accessible at top level,

Dict[str, Any]

plus 'success', 'cid', 'synonyms', and 'error' metadata keys

Source code in src/provesid/pubchem.py
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
def get_basic_compound_info(self, cid: Union[int, str], 
                            include_synonyms: bool = False) -> Dict[str, Any]:
    """
    Get basic compound information including formula, molecular weight, 
    and structure, and IUPAC name. Synonyms can be included optionally.

    Args:
        cid: Compound ID
        include_synonyms: Whether to include synonyms in the response

    Returns:
        Dictionary with compound properties directly accessible at top level,
        plus 'success', 'cid', 'synonyms', and 'error' metadata keys
    """
    # Get basic properties with synonyms
    properties = [
        CompoundProperties.MOLECULAR_FORMULA,
        CompoundProperties.MOLECULAR_WEIGHT,
        CompoundProperties.SMILES,
        CompoundProperties.INCHI,
        CompoundProperties.INCHIKEY,
        CompoundProperties.IUPAC_NAME
    ]

    # Use the new get_compound_properties method which already includes synonyms and metadata
    return self.get_compound_properties(cid, properties, include_synonyms=include_synonyms)
get_all_compound_info(cid)

Get all compound properties as listed in CompoundProperties

Parameters:

Name Type Description Default
cid Union[int, str]

Compound ID

required

Returns:

Type Description
Dict[str, Any]

Dictionary with compound properties directly accessible at top level,

Dict[str, Any]

plus 'success', 'cid', and 'error' metadata keys

Source code in src/provesid/pubchem.py
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
def get_all_compound_info(self, cid: Union[int, str]) -> Dict[str, Any]:
    """
    Get all compound properties as listed in CompoundProperties

    Args:
        cid: Compound ID

    Returns:
        Dictionary with compound properties directly accessible at top level,
        plus 'success', 'cid', and 'error' metadata keys
    """
    # Get all property values from CompoundProperties class
    properties = []
    for attr_name in dir(CompoundProperties):
        if not attr_name.startswith("_"):
            prop_value = getattr(CompoundProperties, attr_name)
            if isinstance(prop_value, str):
                properties.append(prop_value)

    # Use the new get_compound_properties method which already returns flat data
    return self.get_compound_properties(cid, properties, include_synonyms=False)
extract_identifiers_from_synonyms(synonyms)

Extract chemical identifiers from a list of synonyms

Parameters:

Name Type Description Default
synonyms List[str]

List of synonym strings

required

Returns:

Type Description
Dict[str, List[str]]

Dictionary with lists of unique identifiers for each type:

Dict[str, List[str]]
  • casrn: CAS Registry Numbers (format: 2-5 digit-2 digit-single digit)
Dict[str, List[str]]
  • nsc: NSC numbers (begins with NSC)
Dict[str, List[str]]
  • dtxsid: DTXSID identifiers (begins with DTXSID)
Dict[str, List[str]]
  • dtxcid: DTXCID identifiers (begins with DTXCID)
Dict[str, List[str]]
  • ec_number: EC numbers (format: NNN-NNN-N)
Dict[str, List[str]]
  • chebi_id: ChEBI IDs (begins with CHEBI)
Dict[str, List[str]]
  • chembl: ChEMBL numbers (begins with CHEMBL)
Source code in src/provesid/pubchem.py
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
def extract_identifiers_from_synonyms(self, synonyms: List[str]) -> Dict[str, List[str]]:
    """
    Extract chemical identifiers from a list of synonyms

    Args:
        synonyms: List of synonym strings

    Returns:
        Dictionary with lists of unique identifiers for each type:
        - casrn: CAS Registry Numbers (format: 2-5 digit-2 digit-single digit)
        - nsc: NSC numbers (begins with NSC)
        - dtxsid: DTXSID identifiers (begins with DTXSID)
        - dtxcid: DTXCID identifiers (begins with DTXCID)
        - ec_number: EC numbers (format: NNN-NNN-N)
        - chebi_id: ChEBI IDs (begins with CHEBI)
        - chembl: ChEMBL numbers (begins with CHEMBL)
    """
    identifiers = {
        'casrn': [],
        'nsc': [],
        'dtxsid': [],
        'dtxcid': [],
        'ec_number': [],
        'chebi_id': [],
        'chembl': []
    }

    for synonym in synonyms:
        if not isinstance(synonym, str):
            continue

        synonym_upper = synonym.upper().strip()

        # CAS Registry Number: 2-5 digits, hyphen, 2 digits, hyphen, 1 digit
        # May or may not begin with "CAS"
        cas_patterns = [
            r'\b(?:CAS\s*[:\-]?\s*)?(\d{2,7}-\d{2}-\d)\b',  # With optional CAS prefix and separators
        ]
        for pattern in cas_patterns:
            matches = re.findall(pattern, synonym_upper)
            for match in matches:
                # Validate CAS number format more strictly
                if re.match(r'^\d{2,7}-\d{2}-\d$', match):
                    if match not in identifiers['casrn']:
                        identifiers['casrn'].append(match)

        # NSC Number: begins with NSC
        nsc_match = re.search(r'\b(NSC\s*\d+)\b', synonym_upper)
        if nsc_match:
            nsc = nsc_match.group(1).replace(' ', '')
            if nsc not in identifiers['nsc']:
                identifiers['nsc'].append(nsc)

        # DTXSID: begins with DTXSID
        dtxsid_match = re.search(r'\b(DTXSID\d+)\b', synonym_upper)
        if dtxsid_match:
            dtxsid = dtxsid_match.group(1)
            if dtxsid not in identifiers['dtxsid']:
                identifiers['dtxsid'].append(dtxsid)

        # DTXCID: begins with DTXCID
        dtxcid_match = re.search(r'\b(DTXCID\d+)\b', synonym_upper)
        if dtxcid_match:
            dtxcid = dtxcid_match.group(1)
            if dtxcid not in identifiers['dtxcid']:
                identifiers['dtxcid'].append(dtxcid)

        # EC Number: standard format is N.N.N.N (enzyme classification)
        # Only accept the standard dot-separated format
        ec_pattern = r'\b(?:EC\s*[:\-]?\s*)?(\d{1,2}\.\d{1,3}\.\d{1,3}\.(?:\d{1,3}|\-))\b'
        matches = re.findall(ec_pattern, synonym_upper)
        for match in matches:
            if match not in identifiers['ec_number']:
                identifiers['ec_number'].append(match)

        # ChEBI ID: begins with CHEBI
        chebi_match = re.search(r'\b(CHEBI:?\s*\d+)\b', synonym_upper)
        if chebi_match:
            chebi = chebi_match.group(1).replace(' ', '').replace(':', ':')
            # Standardize format to CHEBI:XXXXX
            if not chebi.startswith('CHEBI:'):
                chebi = chebi.replace('CHEBI', 'CHEBI:')
            if chebi not in identifiers['chebi_id']:
                identifiers['chebi_id'].append(chebi)

        # ChEMBL: begins with CHEMBL
        chembl_match = re.search(r'\b(CHEMBL\d+)\b', synonym_upper)
        if chembl_match:
            chembl = chembl_match.group(1)
            if chembl not in identifiers['chembl']:
                identifiers['chembl'].append(chembl)

    return identifiers
get_compound_identifiers(cid)

Get compound identifiers extracted from synonyms

Parameters:

Name Type Description Default
cid Union[int, str]

Compound ID

required

Returns:

Type Description
Dict[str, Any]

Dictionary with 'success', 'cid', 'error' metadata and extracted identifiers

Source code in src/provesid/pubchem.py
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
def get_compound_identifiers(self, cid: Union[int, str]) -> Dict[str, Any]:
    """
    Get compound identifiers extracted from synonyms

    Args:
        cid: Compound ID

    Returns:
        Dictionary with 'success', 'cid', 'error' metadata and extracted identifiers
    """
    try:
        # Get synonyms
        synonyms_list = self.get_compound_synonyms(cid)

        # Extract identifiers
        identifiers = self.extract_identifiers_from_synonyms(synonyms_list)

        # Add metadata
        result = {
            'success': True,
            'cid': cid,
            'error': None,
            'total_synonyms': len(synonyms_list)
        }
        result.update(identifiers)

        return result

    except Exception as e:
        return {
            'success': False,
            'cid': cid,
            'error': str(e),
            'casrn': [],
            'nsc': [],
            'dtxsid': [],
            'dtxcid': [],
            'ec_number': [],
            'chebi_id': [],
            'chembl': [],
            'total_synonyms': 0
        }
find_cids_comprehensive(name, name_type='word')

Search for CIDs in both compound and substance domains

This method first searches in the compound domain, and if no results are found, it searches in the substance domain. This is useful for comprehensive searching when you're not sure which domain contains the identifier.

Parameters:

Name Type Description Default
name str

Compound or substance name (including CAS numbers, trade names, etc.)

required
name_type str

Name search type ("word" or "complete")

'word'

Returns:

Type Description
Dict[str, Any]

Dictionary with search results from both domains

Source code in src/provesid/pubchem.py
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
def find_cids_comprehensive(self, name: str, name_type: str = "word") -> Dict[str, Any]:
    """
    Search for CIDs in both compound and substance domains

    This method first searches in the compound domain, and if no results are found,
    it searches in the substance domain. This is useful for comprehensive searching
    when you're not sure which domain contains the identifier.

    Args:
        name: Compound or substance name (including CAS numbers, trade names, etc.)
        name_type: Name search type ("word" or "complete")

    Returns:
        Dictionary with search results from both domains
    """
    results = {
        "query": name,
        "name_type": name_type,
        "compound_domain": {"cids": [], "success": False, "error": None},
        "substance_domain": {"cids": [], "success": False, "error": None},
        "total_unique_cids": [],
        "recommended_domain": None
    }

    # Try compound domain first
    try:
        compound_cids = self.get_cids_by_name(name, name_type=name_type, domain=Domain.COMPOUND)
        results["compound_domain"]["cids"] = compound_cids
        results["compound_domain"]["success"] = True
        results["total_unique_cids"].extend(compound_cids)
    except Exception as e:
        results["compound_domain"]["error"] = str(e)

    # Try substance domain
    try:
        substance_cids = self.get_cids_by_name(name, name_type=name_type, domain=Domain.SUBSTANCE)
        results["substance_domain"]["cids"] = substance_cids
        results["substance_domain"]["success"] = True
        results["total_unique_cids"].extend(substance_cids)
    except Exception as e:
        results["substance_domain"]["error"] = str(e)

    # Remove duplicates and determine recommended domain
    results["total_unique_cids"] = list(set(results["total_unique_cids"]))

    if results["compound_domain"]["success"] and results["substance_domain"]["success"]:
        # Both succeeded - recommend the one with more results
        compound_count = len(results["compound_domain"]["cids"])
        substance_count = len(results["substance_domain"]["cids"])
        results["recommended_domain"] = "compound" if compound_count >= substance_count else "substance"
    elif results["compound_domain"]["success"]:
        results["recommended_domain"] = "compound"
    elif results["substance_domain"]["success"]:
        results["recommended_domain"] = "substance"
    else:
        results["recommended_domain"] = None

    return results

Quick Start

from provesid import PubChemAPI, Domain, CompoundProperties

# Initialize the API client
pc = PubChemAPI()

# Search for compounds by name
cids = pc.get_cids_by_name('aspirin')
print(f"Found CIDs: {cids}")

# Get basic compound information
basic_info = pc.get_basic_compound_info(cids[0])
print(f"Molecular Formula: {basic_info['MolecularFormula']}")
print(f"Molecular Weight: {basic_info['MolecularWeight']}")

# Get compound by CID (improved - no wrapper needed!)
compound = pc.get_compound_by_cid(cids[0])
print(f"Compound keys: {list(compound.keys())}")

Key Improvements

Elegant Data Access ✨

Before (redundant wrapper access):

# Old way required nested access
substance = pc.get_substance_by_sid(sid)
data = substance["PC_Substances"][0]  # Redundant wrapper

compound = pc.get_compound_by_cid(cid)
data = compound["PC_Compounds"][0]    # Redundant wrapper

Now (direct access):

# New way provides direct access
substance = pc.get_substance_by_sid(sid)  # Direct access!
compound = pc.get_compound_by_cid(cid)    # Direct access!

Enhanced Search Methods

Multiple Search Domains

# Search in compound domain (default)
cids = pc.get_cids_by_name('aspirin', domain=Domain.COMPOUND)

# Search in substance domain  
cids = pc.get_cids_by_name('8000-78-0', domain=Domain.SUBSTANCE)

# Comprehensive search across both domains
results = pc.find_cids_comprehensive('8000-78-0')

Structure-Based Searching

# Search by SMILES (now returns clean list)
smiles = "CC(=O)OC1=CC=CC=C1C(=O)O"  # aspirin
cids = pc.get_cids_by_smiles(smiles)

# Search by InChI Key (newly implemented)
inchi_key = "BSYNRYMUTXBXSQ-UHFFFAOYSA-N"  # aspirin
cids = pc.get_cids_by_inchikey(inchi_key)

# Get compound records directly
compound = pc.get_compounds_by_smiles(smiles)
compound = pc.get_compounds_by_inchikey(inchi_key)

Available Methods

Compound Search Methods

  • get_cids_by_name() - Search by compound name
  • get_cids_by_smiles() - Search by SMILES string
  • get_cids_by_inchikey() - Search by InChI Key ✨ New
  • find_cids_comprehensive() - Multi-domain search

Compound Data Methods

  • get_compound_by_cid() - Get compound record ✨ Improved
  • get_compounds_by_name() - Get compounds by name ✨ Improved
  • get_compounds_by_smiles() - Get compounds by SMILES ✨ Improved
  • get_compounds_by_inchikey() - Get compounds by InChI Key ✨ Improved

Substance Methods

  • get_substance_by_sid() - Get substance record ✨ Improved
  • get_substances_by_name() - Get substances by name ✨ Improved
  • get_sids_by_name() - Search for substance IDs

Property Methods

  • get_basic_compound_info() - Essential compound properties
  • get_compound_properties() - Selected properties
  • get_all_compound_info() - All available properties
  • get_compound_properties_batch() - Batch processing

Utility Methods

  • get_compound_synonyms() - Get compound synonyms
  • get_compound_identifiers() - Extract specific identifiers

Batch Processing

# Process multiple compounds efficiently
compound_names = ["aspirin", "caffeine", "acetaminophen", "ibuprofen"]
all_cids = []

for name in compound_names:
    cids = pc.get_cids_by_name(name)
    if cids:
        all_cids.append(cids[0])

# Batch property retrieval
properties = [CompoundProperties.MOLECULAR_WEIGHT, 
              CompoundProperties.MOLECULAR_FORMULA,
              CompoundProperties.SMILES]

batch_results = pc.get_compound_properties_batch(all_cids, properties)

Error Handling

from provesid import PubChemNotFoundError, PubChemError

try:
    cids = pc.get_cids_by_name('invalid_compound_name')
    if not cids:
        print("No compounds found")
except PubChemNotFoundError:
    print("Compound not found in PubChem")
except PubChemError as e:
    print(f"PubChem API error: {e}")

Best Practices

  • Use batch methods for multiple compounds
  • Always handle potential errors with try/except blocks
  • Use domain-specific searches when appropriate
  • Check data availability before processing
  • Respect PubChem's rate limits (built into the API)

Tutorial

For a comprehensive tutorial with examples, see: PubChem Tutorial