diff --git a/README.md b/README.md index ecbd022..45a0b54 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,13 @@ -# openapi-client Python SDK for NamSor classifies personal names by gender, country of origin, or ethnicity. - +# openapi-client NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 2.0.12 -- Package version: 2.0.12 +- API version: 2.0.13 +- Package version: 2.0.13 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [http://www.namsor.com/](http://www.namsor.com/) -Refer to the [NamSor API Doc](https://v2.namsor.com/NamSorAPIv2/apidoc.html) for detailed API documentation. - -Also, have a look at the Wiki [NamSor Wiki Doc](https://github.com/namsor/namsor-tools-v2/wiki/NamSor-Tools-V2) for release notes and taxonomies. - -## Release Notes - -NamSorAPIv2.0.12 (2021-01-31) -============================ --Improvements for gender classification of full names --Split Diaspora taxonomy classes Irish,British -> Irish,English,Scottish,Welsh (British remains as first/second best alternative for now) --Improve Diaspora classification with non LATIN names --Added Corridor API for classifying names in cross-border contexts (relevant for : diaspora remittances, international travel, foreign direct investment, crowdfunding etc.) --Added a general name classification API (nameType), accuracy in range 90-95% --[BETA] UI : added an online CSV tool to process files from JavaScript client, append gender, origin, country, diaspora or US 'race'/ethnicity to a list of names in Excel/CSV format. - ## Requirements. Python 2.7 and 3.4+ @@ -75,35 +59,19 @@ configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY' # configuration.api_key_prefix['X-API-KEY'] = 'Bearer' # create an instance of the API class -api_instance = openapi_client.PersonalApi(openapi_client.ApiClient(configuration)) -batch_first_last_name_in = openapi_client.BatchFirstLastNameIn() # BatchFirstLastNameIn | A list of personal names (optional) -name1 = openapi_client.FirstLastNameIn(); -name1.id='1' -name1.first_name='John' -name1.last_name='Smith' -name2 = openapi_client.FirstLastNameIn(); -name2.id='2' -name2.first_name='Elena' -name2.last_name='Rossini' -batch_first_last_name_in.personal_names = [name1, name2] +api_instance = openapi_client.AdminApi(openapi_client.ApiClient(configuration)) +api_key = 'api_key_example' # str | +usage_credits = 56 # int | +user_message = 'user_message_example' # str | + try: - # Infer the likely origin of up to 1000 names, detecting automatically the cultural context. - api_response = api_instance.gender_batch(batch_first_last_name_in=batch_first_last_name_in) + # Add usage credits to an API Key. + api_response = api_instance.add_credits(api_key, usage_credits, user_message) pprint(api_response) except ApiException as e: - print("Exception when calling PersonalApi->gender_batch: %s\n" % e) -``` - - -## Documentation For Authorization - - -## api_key - -- **Type**: API key -- **API key parameter name**: X-API-KEY -- **Location**: HTTP header + print("Exception when calling AdminApi->add_credits: %s\n" % e) +``` ## Documentation for API Endpoints @@ -111,32 +79,6 @@ All URIs are relative to *https://v2.namsor.com/NamSorAPIv2* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -*PersonalApi* | [**corridor**](docs/PersonalApi.md#corridor) | **GET** /api2/json/corridor/{countryIso2From}/{firstNameFrom}/{lastNameFrom}/{countryIso2To}/{firstNameTo}/{lastNameTo} | [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) -*PersonalApi* | [**corridor_batch**](docs/PersonalApi.md#corridor_batch) | **POST** /api2/json/corridorBatch | [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) -*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. -*PersonalApi* | [**country_batch**](docs/PersonalApi.md#country_batch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. -*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) -*PersonalApi* | [**diaspora_batch**](docs/PersonalApi.md#diaspora_batch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) -*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. -*PersonalApi* | [**gender_batch**](docs/PersonalApi.md#gender_batch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. -*PersonalApi* | [**gender_full**](docs/PersonalApi.md#gender_full) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith -*PersonalApi* | [**gender_full_batch**](docs/PersonalApi.md#gender_full_batch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. -*PersonalApi* | [**gender_full_geo**](docs/PersonalApi.md#gender_full_geo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). -*PersonalApi* | [**gender_full_geo_batch**](docs/PersonalApi.md#gender_full_geo_batch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). -*PersonalApi* | [**gender_geo**](docs/PersonalApi.md#gender_geo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). -*PersonalApi* | [**gender_geo_batch**](docs/PersonalApi.md#gender_geo_batch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). -*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. -*PersonalApi* | [**origin_batch**](docs/PersonalApi.md#origin_batch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. -*PersonalApi* | [**parse_name**](docs/PersonalApi.md#parse_name) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. -*PersonalApi* | [**parse_name_batch**](docs/PersonalApi.md#parse_name_batch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. -*PersonalApi* | [**parse_name_geo**](docs/PersonalApi.md#parse_name_geo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. -*PersonalApi* | [**parse_name_geo_batch**](docs/PersonalApi.md#parse_name_geo_batch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. -*PersonalApi* | [**parsed_gender_batch**](docs/PersonalApi.md#parsed_gender_batch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. -*PersonalApi* | [**parsed_gender_geo_batch**](docs/PersonalApi.md#parsed_gender_geo_batch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. -*PersonalApi* | [**us_race_ethnicity**](docs/PersonalApi.md#us_race_ethnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). -*PersonalApi* | [**us_race_ethnicity_batch**](docs/PersonalApi.md#us_race_ethnicity_batch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. -*PersonalApi* | [**us_race_ethnicity_zip5**](docs/PersonalApi.md#us_race_ethnicity_zip5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). -*PersonalApi* | [**us_zip_race_ethnicity_batch**](docs/PersonalApi.md#us_zip_race_ethnicity_batch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. *AdminApi* | [**add_credits**](docs/AdminApi.md#add_credits) | **GET** /api2/json/addCredits/{apiKey}/{usageCredits}/{userMessage} | Add usage credits to an API Key. *AdminApi* | [**anonymize**](docs/AdminApi.md#anonymize) | **GET** /api2/json/anonymize/{source}/{anonymized} | Activate/deactivate anonymization for a source. *AdminApi* | [**api_status**](docs/AdminApi.md#api_status) | **GET** /api2/json/apiStatus | Prints the current status of the classifiers. @@ -197,7 +139,9 @@ Class | Method | HTTP request | Description *JapaneseApi* | [**gender_japanese_name_full_batch**](docs/JapaneseApi.md#gender_japanese_name_full_batch) | **POST** /api2/json/genderJapaneseNameFullBatch | Infer the likely gender of up to 100 full names *JapaneseApi* | [**gender_japanese_name_pinyin**](docs/JapaneseApi.md#gender_japanese_name_pinyin) | **GET** /api2/json/genderJapaneseName/{japaneseSurname}/{japaneseGivenName} | Infer the likely gender of a Japanese name in LATIN (Pinyin). *JapaneseApi* | [**gender_japanese_name_pinyin_batch**](docs/JapaneseApi.md#gender_japanese_name_pinyin_batch) | **POST** /api2/json/genderJapaneseNameBatch | Infer the likely gender of up to 100 Japanese names in LATIN (Pinyin). -*JapaneseApi* | [**japanese_name_kanji_candidates**](docs/JapaneseApi.md#japanese_name_kanji_candidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_gender_kanji_candidates_batch**](docs/JapaneseApi.md#japanese_name_gender_kanji_candidates_batch) | **POST** /api2/json/japaneseNameGenderKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_kanji_candidates**](docs/JapaneseApi.md#japanese_name_kanji_candidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{knownGender} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. +*JapaneseApi* | [**japanese_name_kanji_candidates1**](docs/JapaneseApi.md#japanese_name_kanji_candidates1) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae *JapaneseApi* | [**japanese_name_kanji_candidates_batch**](docs/JapaneseApi.md#japanese_name_kanji_candidates_batch) | **POST** /api2/json/japaneseNameKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname), ex. Yamamoto Sanae *JapaneseApi* | [**japanese_name_latin_candidates**](docs/JapaneseApi.md#japanese_name_latin_candidates) | **GET** /api2/json/japaneseNameLatinCandidates/{japaneseSurnameKanji}/{japaneseGivenNameKanji} | Romanize japanese name, based on the name in Kanji. *JapaneseApi* | [**japanese_name_latin_candidates_batch**](docs/JapaneseApi.md#japanese_name_latin_candidates_batch) | **POST** /api2/json/japaneseNameLatinCandidatesBatch | Romanize japanese names, based on the name in KANJI @@ -206,6 +150,32 @@ Class | Method | HTTP request | Description *JapaneseApi* | [**japanese_name_match_feedback_loop**](docs/JapaneseApi.md#japanese_name_match_feedback_loop) | **GET** /api2/json/japaneseNameMatchFeedbackLoop/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | [CREDITS 1 UNIT] Feedback loop to better perform matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae *JapaneseApi* | [**parse_japanese_name**](docs/JapaneseApi.md#parse_japanese_name) | **GET** /api2/json/parseJapaneseName/{japaneseName} | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae *JapaneseApi* | [**parse_japanese_name_batch**](docs/JapaneseApi.md#parse_japanese_name_batch) | **POST** /api2/json/parseJapaneseNameBatch | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae +*PersonalApi* | [**corridor**](docs/PersonalApi.md#corridor) | **GET** /api2/json/corridor/{countryIso2From}/{firstNameFrom}/{lastNameFrom}/{countryIso2To}/{firstNameTo}/{lastNameTo} | [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**corridor_batch**](docs/PersonalApi.md#corridor_batch) | **POST** /api2/json/corridorBatch | [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**country_batch**](docs/PersonalApi.md#country_batch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**diaspora_batch**](docs/PersonalApi.md#diaspora_batch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. +*PersonalApi* | [**gender_batch**](docs/PersonalApi.md#gender_batch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**gender_full**](docs/PersonalApi.md#gender_full) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith +*PersonalApi* | [**gender_full_batch**](docs/PersonalApi.md#gender_full_batch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. +*PersonalApi* | [**gender_full_geo**](docs/PersonalApi.md#gender_full_geo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). +*PersonalApi* | [**gender_full_geo_batch**](docs/PersonalApi.md#gender_full_geo_batch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). +*PersonalApi* | [**gender_geo**](docs/PersonalApi.md#gender_geo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). +*PersonalApi* | [**gender_geo_batch**](docs/PersonalApi.md#gender_geo_batch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). +*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. +*PersonalApi* | [**origin_batch**](docs/PersonalApi.md#origin_batch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**parse_name**](docs/PersonalApi.md#parse_name) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parse_name_batch**](docs/PersonalApi.md#parse_name_batch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parse_name_geo**](docs/PersonalApi.md#parse_name_geo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. +*PersonalApi* | [**parse_name_geo_batch**](docs/PersonalApi.md#parse_name_geo_batch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. +*PersonalApi* | [**parsed_gender_batch**](docs/PersonalApi.md#parsed_gender_batch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**parsed_gender_geo_batch**](docs/PersonalApi.md#parsed_gender_geo_batch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**us_race_ethnicity**](docs/PersonalApi.md#us_race_ethnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**us_race_ethnicity_batch**](docs/PersonalApi.md#us_race_ethnicity_batch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. +*PersonalApi* | [**us_race_ethnicity_zip5**](docs/PersonalApi.md#us_race_ethnicity_zip5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**us_zip_race_ethnicity_batch**](docs/PersonalApi.md#us_zip_race_ethnicity_batch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. *SocialApi* | [**phone_code**](docs/SocialApi.md#phone_code) | **GET** /api2/json/phoneCode/{firstName}/{lastName}/{phoneNumber} | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. *SocialApi* | [**phone_code_batch**](docs/SocialApi.md#phone_code_batch) | **POST** /api2/json/phoneCodeBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. *SocialApi* | [**phone_code_geo**](docs/SocialApi.md#phone_code_geo) | **GET** /api2/json/phoneCodeGeo/{firstName}/{lastName}/{phoneNumber}/{countryIso2} | [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). @@ -303,6 +273,15 @@ Class | Method | HTTP request | Description - [UserInfoOut](docs/UserInfoOut.md) +## Documentation For Authorization + + +## api_key + +- **Type**: API key +- **API key parameter name**: X-API-KEY +- **Location**: HTTP header + ## Author diff --git a/README_v2.0.12.md b/README_v2.0.12.md new file mode 100644 index 0000000..ecbd022 --- /dev/null +++ b/README_v2.0.12.md @@ -0,0 +1,311 @@ +# openapi-client Python SDK for NamSor classifies personal names by gender, country of origin, or ethnicity. + +NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! + +This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: + +- API version: 2.0.12 +- Package version: 2.0.12 +- Build package: org.openapitools.codegen.languages.PythonClientCodegen +For more information, please visit [http://www.namsor.com/](http://www.namsor.com/) + +Refer to the [NamSor API Doc](https://v2.namsor.com/NamSorAPIv2/apidoc.html) for detailed API documentation. + +Also, have a look at the Wiki [NamSor Wiki Doc](https://github.com/namsor/namsor-tools-v2/wiki/NamSor-Tools-V2) for release notes and taxonomies. + +## Release Notes + +NamSorAPIv2.0.12 (2021-01-31) +============================ +-Improvements for gender classification of full names +-Split Diaspora taxonomy classes Irish,British -> Irish,English,Scottish,Welsh (British remains as first/second best alternative for now) +-Improve Diaspora classification with non LATIN names +-Added Corridor API for classifying names in cross-border contexts (relevant for : diaspora remittances, international travel, foreign direct investment, crowdfunding etc.) +-Added a general name classification API (nameType), accuracy in range 90-95% +-[BETA] UI : added an online CSV tool to process files from JavaScript client, append gender, origin, country, diaspora or US 'race'/ethnicity to a list of names in Excel/CSV format. + +## Requirements. + +Python 2.7 and 3.4+ + +## Installation & Usage +### pip install + +If the python package is hosted on Github, you can install directly from Github + +```sh +pip install git+https://github.com/namsor/namsor-python-sdk2.git +``` +(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/namsor/namsor-python-sdk2.git`) + +Then import the package: +```python +import openapi_client +``` + +### Setuptools + +Install via [Setuptools](http://pypi.python.org/pypi/setuptools). + +```sh +python setup.py install --user +``` +(or `sudo python setup.py install` to install the package for all users) + +Then import the package: +```python +import openapi_client +``` + +## Getting Started + +Please follow the [installation procedure](#installation--usage) and then run the following: + +```python +from __future__ import print_function +import time +import openapi_client +from openapi_client.rest import ApiException +from pprint import pprint + +# Configure API key authorization: api_key +configuration = openapi_client.Configuration() +configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY' +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['X-API-KEY'] = 'Bearer' + +# create an instance of the API class +api_instance = openapi_client.PersonalApi(openapi_client.ApiClient(configuration)) +batch_first_last_name_in = openapi_client.BatchFirstLastNameIn() # BatchFirstLastNameIn | A list of personal names (optional) +name1 = openapi_client.FirstLastNameIn(); +name1.id='1' +name1.first_name='John' +name1.last_name='Smith' +name2 = openapi_client.FirstLastNameIn(); +name2.id='2' +name2.first_name='Elena' +name2.last_name='Rossini' +batch_first_last_name_in.personal_names = [name1, name2] +try: + # Infer the likely origin of up to 1000 names, detecting automatically the cultural context. + api_response = api_instance.gender_batch(batch_first_last_name_in=batch_first_last_name_in) + pprint(api_response) +except ApiException as e: + print("Exception when calling PersonalApi->gender_batch: %s\n" % e) +``` + + +## Documentation For Authorization + + +## api_key + +- **Type**: API key +- **API key parameter name**: X-API-KEY +- **Location**: HTTP header + + +## Documentation for API Endpoints + +All URIs are relative to *https://v2.namsor.com/NamSorAPIv2* + +Class | Method | HTTP request | Description +------------ | ------------- | ------------- | ------------- +*PersonalApi* | [**corridor**](docs/PersonalApi.md#corridor) | **GET** /api2/json/corridor/{countryIso2From}/{firstNameFrom}/{lastNameFrom}/{countryIso2To}/{firstNameTo}/{lastNameTo} | [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**corridor_batch**](docs/PersonalApi.md#corridor_batch) | **POST** /api2/json/corridorBatch | [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**country_batch**](docs/PersonalApi.md#country_batch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**diaspora_batch**](docs/PersonalApi.md#diaspora_batch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. +*PersonalApi* | [**gender_batch**](docs/PersonalApi.md#gender_batch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**gender_full**](docs/PersonalApi.md#gender_full) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith +*PersonalApi* | [**gender_full_batch**](docs/PersonalApi.md#gender_full_batch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. +*PersonalApi* | [**gender_full_geo**](docs/PersonalApi.md#gender_full_geo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). +*PersonalApi* | [**gender_full_geo_batch**](docs/PersonalApi.md#gender_full_geo_batch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). +*PersonalApi* | [**gender_geo**](docs/PersonalApi.md#gender_geo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). +*PersonalApi* | [**gender_geo_batch**](docs/PersonalApi.md#gender_geo_batch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). +*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. +*PersonalApi* | [**origin_batch**](docs/PersonalApi.md#origin_batch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**parse_name**](docs/PersonalApi.md#parse_name) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parse_name_batch**](docs/PersonalApi.md#parse_name_batch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parse_name_geo**](docs/PersonalApi.md#parse_name_geo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. +*PersonalApi* | [**parse_name_geo_batch**](docs/PersonalApi.md#parse_name_geo_batch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. +*PersonalApi* | [**parsed_gender_batch**](docs/PersonalApi.md#parsed_gender_batch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**parsed_gender_geo_batch**](docs/PersonalApi.md#parsed_gender_geo_batch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**us_race_ethnicity**](docs/PersonalApi.md#us_race_ethnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**us_race_ethnicity_batch**](docs/PersonalApi.md#us_race_ethnicity_batch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. +*PersonalApi* | [**us_race_ethnicity_zip5**](docs/PersonalApi.md#us_race_ethnicity_zip5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**us_zip_race_ethnicity_batch**](docs/PersonalApi.md#us_zip_race_ethnicity_batch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. +*AdminApi* | [**add_credits**](docs/AdminApi.md#add_credits) | **GET** /api2/json/addCredits/{apiKey}/{usageCredits}/{userMessage} | Add usage credits to an API Key. +*AdminApi* | [**anonymize**](docs/AdminApi.md#anonymize) | **GET** /api2/json/anonymize/{source}/{anonymized} | Activate/deactivate anonymization for a source. +*AdminApi* | [**api_status**](docs/AdminApi.md#api_status) | **GET** /api2/json/apiStatus | Prints the current status of the classifiers. +*AdminApi* | [**api_usage**](docs/AdminApi.md#api_usage) | **GET** /api2/json/apiUsage | Print current API usage. +*AdminApi* | [**api_usage_history**](docs/AdminApi.md#api_usage_history) | **GET** /api2/json/apiUsageHistory | Print historical API usage. +*AdminApi* | [**api_usage_history_aggregate**](docs/AdminApi.md#api_usage_history_aggregate) | **GET** /api2/json/apiUsageHistoryAggregate | Print historical API usage (in an aggregated view, by service, by day/hour/min). +*AdminApi* | [**available_plans**](docs/AdminApi.md#available_plans) | **GET** /api2/json/availablePlans/{token} | List all available plans in the user's preferred currency. +*AdminApi* | [**available_plans1**](docs/AdminApi.md#available_plans1) | **GET** /api2/json/availablePlans | List all available plans in the default currency (usd). +*AdminApi* | [**available_services**](docs/AdminApi.md#available_services) | **GET** /api2/json/apiServices | List of API services and usage cost in Units (default is 1=ONE Unit). +*AdminApi* | [**billing_currencies**](docs/AdminApi.md#billing_currencies) | **GET** /api2/json/billingCurrencies | List possible currency options for billing (USD, EUR, GBP, ...) +*AdminApi* | [**billing_history**](docs/AdminApi.md#billing_history) | **GET** /api2/json/billingHistory/{token} | Read the history billing information (invoices paid via Stripe or manually). +*AdminApi* | [**billing_info**](docs/AdminApi.md#billing_info) | **GET** /api2/json/billingInfo/{token} | Read the billing information (company name, address, phone, vat ID) +*AdminApi* | [**charge**](docs/AdminApi.md#charge) | **POST** /api2/json/charge | Create a Stripe Customer, based on a payment card token (from secure StripeJS) and email. +*AdminApi* | [**corporate_key**](docs/AdminApi.md#corporate_key) | **GET** /api2/json/corporateKey/{apiKey}/{corporate} | Setting an API Key to a corporate status. +*AdminApi* | [**debug_level**](docs/AdminApi.md#debug_level) | **GET** /api2/json/debugLevel/{logger}/{level} | Update debug level for a classifier +*AdminApi* | [**flush**](docs/AdminApi.md#flush) | **GET** /api2/json/flush | Flush counters. +*AdminApi* | [**invalidate_cache**](docs/AdminApi.md#invalidate_cache) | **GET** /api2/json/invalidateCache | Invalidate system caches. +*AdminApi* | [**learnable**](docs/AdminApi.md#learnable) | **GET** /api2/json/learnable/{source}/{learnable} | Activate/deactivate learning from a source. +*AdminApi* | [**namsor_counter**](docs/AdminApi.md#namsor_counter) | **GET** /api2/json/namsorCounter | Get the overall API counter +*AdminApi* | [**payment_info**](docs/AdminApi.md#payment_info) | **GET** /api2/json/paymentInfo/{token} | Get the Stripe payment information associated with the current google auth session token. +*AdminApi* | [**procure_key**](docs/AdminApi.md#procure_key) | **GET** /api2/json/procureKey/{token} | Procure an API Key (sent via Email), based on an auth token. Keep your API Key secret. +*AdminApi* | [**remove_user_account**](docs/AdminApi.md#remove_user_account) | **GET** /api2/json/removeUserAccount/{token} | Remove the user account. +*AdminApi* | [**remove_user_account_on_behalf**](docs/AdminApi.md#remove_user_account_on_behalf) | **GET** /api2/json/removeUserAccountOnBehalf/{apiKey} | Remove (on behalf) a user account. +*AdminApi* | [**shutdown**](docs/AdminApi.md#shutdown) | **GET** /api2/json/shutdown | Stop learning and shutdown system. +*AdminApi* | [**software_version**](docs/AdminApi.md#software_version) | **GET** /api2/json/softwareVersion | Get the current software version +*AdminApi* | [**source_stats**](docs/AdminApi.md#source_stats) | **GET** /api2/json/sourceStats/{source} | Print basic source statistics. +*AdminApi* | [**stats**](docs/AdminApi.md#stats) | **GET** /api2/json/stats | Print basic system statistics. +*AdminApi* | [**stripe_connect**](docs/AdminApi.md#stripe_connect) | **GET** /api2/json/stripeConnect | Connects a Stripe Account. +*AdminApi* | [**subscribe_plan**](docs/AdminApi.md#subscribe_plan) | **GET** /api2/json/subscribePlan/{planName}/{token} | Subscribe to a give API plan, using the user's preferred or default currency. +*AdminApi* | [**subscribe_plan_on_behalf**](docs/AdminApi.md#subscribe_plan_on_behalf) | **GET** /api2/json/subscribePlanOnBehalf/{planName}/{apiKey} | Subscribe to a give API plan, using the user's preferred or default currency (admin only). +*AdminApi* | [**taxonomy_classes**](docs/AdminApi.md#taxonomy_classes) | **GET** /api2/json/taxonomyClasses/{classifierName} | Print the taxonomy classes valid for the given classifier. +*AdminApi* | [**update_billing_info**](docs/AdminApi.md#update_billing_info) | **POST** /api2/json/updateBillingInfo/{token} | Sets or update the billing information (company name, address, phone, vat ID) +*AdminApi* | [**update_limit**](docs/AdminApi.md#update_limit) | **GET** /api2/json/updateLimit/{usageLimit}/{hardOrSoft}/{token} | Modifies the hard/soft limit on the API plan's overages (default is 0$ soft limit). +*AdminApi* | [**update_payment_default**](docs/AdminApi.md#update_payment_default) | **GET** /api2/json/updatePaymentDefault/{defautSourceId}/{token} | Update the default Stripe card associated with the current google auth session token. +*AdminApi* | [**user_info**](docs/AdminApi.md#user_info) | **GET** /api2/json/userInfo/{token} | Get the user profile associated with the current google auth session token. +*AdminApi* | [**verify_email**](docs/AdminApi.md#verify_email) | **GET** /api2/json/verifyEmail/{emailToken} | Verifies an email, based on token sent to that email +*AdminApi* | [**verify_remove_email**](docs/AdminApi.md#verify_remove_email) | **GET** /api2/json/verifyRemoveEmail/{emailToken} | Verifies an email, based on token sent to that email +*AdminApi* | [**vet**](docs/AdminApi.md#vet) | **GET** /api2/json/vetting/{source}/{vetted} | Vetting of a source. +*ChineseApi* | [**chinese_name_candidates**](docs/ChineseApi.md#chinese_name_candidates) | **GET** /api2/json/chineseNameCandidates/{chineseSurnameLatin}/{chineseGivenNameLatin} | Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming +*ChineseApi* | [**chinese_name_candidates_batch**](docs/ChineseApi.md#chinese_name_candidates_batch) | **POST** /api2/json/chineseNameCandidatesBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming +*ChineseApi* | [**chinese_name_candidates_gender_batch**](docs/ChineseApi.md#chinese_name_candidates_gender_batch) | **POST** /api2/json/chineseNameCandidatesGenderBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname) ex. Wang Xiaoming. +*ChineseApi* | [**chinese_name_gender_candidates**](docs/ChineseApi.md#chinese_name_gender_candidates) | **GET** /api2/json/chineseNameGenderCandidates/{chineseSurnameLatin}/{chineseGivenNameLatin}/{knownGender} | Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming - having a known gender ('male' or 'female') +*ChineseApi* | [**chinese_name_match**](docs/ChineseApi.md#chinese_name_match) | **GET** /api2/json/chineseNameMatch/{chineseSurnameLatin}/{chineseGivenNameLatin}/{chineseName} | Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming +*ChineseApi* | [**chinese_name_match_batch**](docs/ChineseApi.md#chinese_name_match_batch) | **POST** /api2/json/chineseNameMatchBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming +*ChineseApi* | [**gender_chinese_name**](docs/ChineseApi.md#gender_chinese_name) | **GET** /api2/json/genderChineseName/{chineseName} | Infer the likely gender of a Chinese full name ex. 王晓明 +*ChineseApi* | [**gender_chinese_name_batch**](docs/ChineseApi.md#gender_chinese_name_batch) | **POST** /api2/json/genderChineseNameBatch | Infer the likely gender of up to 100 full names ex. 王晓明 +*ChineseApi* | [**gender_chinese_name_pinyin**](docs/ChineseApi.md#gender_chinese_name_pinyin) | **GET** /api2/json/genderChineseNamePinyin/{chineseSurnameLatin}/{chineseGivenNameLatin} | Infer the likely gender of a Chinese name in LATIN (Pinyin). +*ChineseApi* | [**gender_chinese_name_pinyin_batch**](docs/ChineseApi.md#gender_chinese_name_pinyin_batch) | **POST** /api2/json/genderChineseNamePinyinBatch | Infer the likely gender of up to 100 Chinese names in LATIN (Pinyin). +*ChineseApi* | [**parse_chinese_name**](docs/ChineseApi.md#parse_chinese_name) | **GET** /api2/json/parseChineseName/{chineseName} | Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name) +*ChineseApi* | [**parse_chinese_name_batch**](docs/ChineseApi.md#parse_chinese_name_batch) | **POST** /api2/json/parseChineseNameBatch | Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name). +*ChineseApi* | [**pinyin_chinese_name**](docs/ChineseApi.md#pinyin_chinese_name) | **GET** /api2/json/pinyinChineseName/{chineseName} | Romanize the Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name) +*ChineseApi* | [**pinyin_chinese_name_batch**](docs/ChineseApi.md#pinyin_chinese_name_batch) | **POST** /api2/json/pinyinChineseNameBatch | Romanize a list of Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name). +*GeneralApi* | [**name_type**](docs/GeneralApi.md#name_type) | **GET** /api2/json/nameType/{properNoun} | Infer the likely type of a proper noun (personal name, brand name, place name etc.) +*GeneralApi* | [**name_type_batch**](docs/GeneralApi.md#name_type_batch) | **POST** /api2/json/nameTypeBatch | Infer the likely common type of up to 100 proper nouns (personal name, brand name, place name etc.) +*GeneralApi* | [**name_type_geo**](docs/GeneralApi.md#name_type_geo) | **GET** /api2/json/nameTypeGeo/{properNoun}/{countryIso2} | Infer the likely type of a proper noun (personal name, brand name, place name etc.) +*GeneralApi* | [**name_type_geo_batch**](docs/GeneralApi.md#name_type_geo_batch) | **POST** /api2/json/nameTypeGeoBatch | Infer the likely common type of up to 100 proper nouns (personal name, brand name, place name etc.) +*JapaneseApi* | [**gender_japanese_name_full**](docs/JapaneseApi.md#gender_japanese_name_full) | **GET** /api2/json/genderJapaneseNameFull/{japaneseName} | Infer the likely gender of a Japanese full name ex. 王晓明 +*JapaneseApi* | [**gender_japanese_name_full_batch**](docs/JapaneseApi.md#gender_japanese_name_full_batch) | **POST** /api2/json/genderJapaneseNameFullBatch | Infer the likely gender of up to 100 full names +*JapaneseApi* | [**gender_japanese_name_pinyin**](docs/JapaneseApi.md#gender_japanese_name_pinyin) | **GET** /api2/json/genderJapaneseName/{japaneseSurname}/{japaneseGivenName} | Infer the likely gender of a Japanese name in LATIN (Pinyin). +*JapaneseApi* | [**gender_japanese_name_pinyin_batch**](docs/JapaneseApi.md#gender_japanese_name_pinyin_batch) | **POST** /api2/json/genderJapaneseNameBatch | Infer the likely gender of up to 100 Japanese names in LATIN (Pinyin). +*JapaneseApi* | [**japanese_name_kanji_candidates**](docs/JapaneseApi.md#japanese_name_kanji_candidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_kanji_candidates_batch**](docs/JapaneseApi.md#japanese_name_kanji_candidates_batch) | **POST** /api2/json/japaneseNameKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname), ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_latin_candidates**](docs/JapaneseApi.md#japanese_name_latin_candidates) | **GET** /api2/json/japaneseNameLatinCandidates/{japaneseSurnameKanji}/{japaneseGivenNameKanji} | Romanize japanese name, based on the name in Kanji. +*JapaneseApi* | [**japanese_name_latin_candidates_batch**](docs/JapaneseApi.md#japanese_name_latin_candidates_batch) | **POST** /api2/json/japaneseNameLatinCandidatesBatch | Romanize japanese names, based on the name in KANJI +*JapaneseApi* | [**japanese_name_match**](docs/JapaneseApi.md#japanese_name_match) | **GET** /api2/json/japaneseNameMatch/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | Return a score for matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_match_batch**](docs/JapaneseApi.md#japanese_name_match_batch) | **POST** /api2/json/japaneseNameMatchBatch | Return a score for matching a list of Japanese names in KANJI ex. 山本 早苗 with romanized names ex. Yamamoto Sanae +*JapaneseApi* | [**japanese_name_match_feedback_loop**](docs/JapaneseApi.md#japanese_name_match_feedback_loop) | **GET** /api2/json/japaneseNameMatchFeedbackLoop/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | [CREDITS 1 UNIT] Feedback loop to better perform matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**parse_japanese_name**](docs/JapaneseApi.md#parse_japanese_name) | **GET** /api2/json/parseJapaneseName/{japaneseName} | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae +*JapaneseApi* | [**parse_japanese_name_batch**](docs/JapaneseApi.md#parse_japanese_name_batch) | **POST** /api2/json/parseJapaneseNameBatch | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae +*SocialApi* | [**phone_code**](docs/SocialApi.md#phone_code) | **GET** /api2/json/phoneCode/{firstName}/{lastName}/{phoneNumber} | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. +*SocialApi* | [**phone_code_batch**](docs/SocialApi.md#phone_code_batch) | **POST** /api2/json/phoneCodeBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. +*SocialApi* | [**phone_code_geo**](docs/SocialApi.md#phone_code_geo) | **GET** /api2/json/phoneCodeGeo/{firstName}/{lastName}/{phoneNumber}/{countryIso2} | [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). +*SocialApi* | [**phone_code_geo_batch**](docs/SocialApi.md#phone_code_geo_batch) | **POST** /api2/json/phoneCodeGeoBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence). +*SocialApi* | [**phone_code_geo_feedback_loop**](docs/SocialApi.md#phone_code_geo_feedback_loop) | **GET** /api2/json/phoneCodeGeoFeedbackLoop/{firstName}/{lastName}/{phoneNumber}/{phoneNumberE164}/{countryIso2} | [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). + + +## Documentation For Models + + - [APIBillingPeriodUsageOut](docs/APIBillingPeriodUsageOut.md) + - [APIClassifierOut](docs/APIClassifierOut.md) + - [APIClassifierTaxonomyOut](docs/APIClassifierTaxonomyOut.md) + - [APIClassifiersStatusOut](docs/APIClassifiersStatusOut.md) + - [APICounterV2Out](docs/APICounterV2Out.md) + - [APIKeyOut](docs/APIKeyOut.md) + - [APIPeriodUsageOut](docs/APIPeriodUsageOut.md) + - [APIPlanOut](docs/APIPlanOut.md) + - [APIPlanSubscriptionOut](docs/APIPlanSubscriptionOut.md) + - [APIPlansOut](docs/APIPlansOut.md) + - [APIServiceOut](docs/APIServiceOut.md) + - [APIServicesOut](docs/APIServicesOut.md) + - [APIUsageAggregatedOut](docs/APIUsageAggregatedOut.md) + - [BatchCorridorIn](docs/BatchCorridorIn.md) + - [BatchCorridorOut](docs/BatchCorridorOut.md) + - [BatchFirstLastNameDiasporaedOut](docs/BatchFirstLastNameDiasporaedOut.md) + - [BatchFirstLastNameGenderIn](docs/BatchFirstLastNameGenderIn.md) + - [BatchFirstLastNameGenderedOut](docs/BatchFirstLastNameGenderedOut.md) + - [BatchFirstLastNameGeoIn](docs/BatchFirstLastNameGeoIn.md) + - [BatchFirstLastNameGeoZippedIn](docs/BatchFirstLastNameGeoZippedIn.md) + - [BatchFirstLastNameIn](docs/BatchFirstLastNameIn.md) + - [BatchFirstLastNameOriginedOut](docs/BatchFirstLastNameOriginedOut.md) + - [BatchFirstLastNamePhoneCodedOut](docs/BatchFirstLastNamePhoneCodedOut.md) + - [BatchFirstLastNamePhoneNumberGeoIn](docs/BatchFirstLastNamePhoneNumberGeoIn.md) + - [BatchFirstLastNamePhoneNumberIn](docs/BatchFirstLastNamePhoneNumberIn.md) + - [BatchFirstLastNameUSRaceEthnicityOut](docs/BatchFirstLastNameUSRaceEthnicityOut.md) + - [BatchMatchPersonalFirstLastNameIn](docs/BatchMatchPersonalFirstLastNameIn.md) + - [BatchNameGeoIn](docs/BatchNameGeoIn.md) + - [BatchNameIn](docs/BatchNameIn.md) + - [BatchNameMatchCandidatesOut](docs/BatchNameMatchCandidatesOut.md) + - [BatchNameMatchedOut](docs/BatchNameMatchedOut.md) + - [BatchParsedFullNameGeoIn](docs/BatchParsedFullNameGeoIn.md) + - [BatchParsedFullNameIn](docs/BatchParsedFullNameIn.md) + - [BatchPersonalNameGenderedOut](docs/BatchPersonalNameGenderedOut.md) + - [BatchPersonalNameGeoIn](docs/BatchPersonalNameGeoIn.md) + - [BatchPersonalNameGeoOut](docs/BatchPersonalNameGeoOut.md) + - [BatchPersonalNameIn](docs/BatchPersonalNameIn.md) + - [BatchPersonalNameParsedOut](docs/BatchPersonalNameParsedOut.md) + - [BatchProperNounCategorizedOut](docs/BatchProperNounCategorizedOut.md) + - [BillingHistoryOut](docs/BillingHistoryOut.md) + - [BillingInfoInOut](docs/BillingInfoInOut.md) + - [CacheMetricsOut](docs/CacheMetricsOut.md) + - [ClassifierMetricsOut](docs/ClassifierMetricsOut.md) + - [CorridorIn](docs/CorridorIn.md) + - [CorridorOut](docs/CorridorOut.md) + - [CurrenciesOut](docs/CurrenciesOut.md) + - [ExpectedClassMetricsOut](docs/ExpectedClassMetricsOut.md) + - [FeedbackLoopOut](docs/FeedbackLoopOut.md) + - [FirstLastNameDiasporaedOut](docs/FirstLastNameDiasporaedOut.md) + - [FirstLastNameGenderIn](docs/FirstLastNameGenderIn.md) + - [FirstLastNameGenderedOut](docs/FirstLastNameGenderedOut.md) + - [FirstLastNameGeoIn](docs/FirstLastNameGeoIn.md) + - [FirstLastNameGeoZippedIn](docs/FirstLastNameGeoZippedIn.md) + - [FirstLastNameIn](docs/FirstLastNameIn.md) + - [FirstLastNameOriginedOut](docs/FirstLastNameOriginedOut.md) + - [FirstLastNameOut](docs/FirstLastNameOut.md) + - [FirstLastNamePhoneCodedOut](docs/FirstLastNamePhoneCodedOut.md) + - [FirstLastNamePhoneNumberGeoIn](docs/FirstLastNamePhoneNumberGeoIn.md) + - [FirstLastNamePhoneNumberIn](docs/FirstLastNamePhoneNumberIn.md) + - [FirstLastNameUSRaceEthnicityOut](docs/FirstLastNameUSRaceEthnicityOut.md) + - [InlineObject](docs/InlineObject.md) + - [InvoiceItemOut](docs/InvoiceItemOut.md) + - [InvoiceOut](docs/InvoiceOut.md) + - [MatchPersonalFirstLastNameIn](docs/MatchPersonalFirstLastNameIn.md) + - [NamSorCounterOut](docs/NamSorCounterOut.md) + - [NameGeoIn](docs/NameGeoIn.md) + - [NameIn](docs/NameIn.md) + - [NameMatchCandidateOut](docs/NameMatchCandidateOut.md) + - [NameMatchCandidatesOut](docs/NameMatchCandidatesOut.md) + - [NameMatchedOut](docs/NameMatchedOut.md) + - [ParsedFullNameGeoIn](docs/ParsedFullNameGeoIn.md) + - [ParsedFullNameIn](docs/ParsedFullNameIn.md) + - [PersonalNameGenderedOut](docs/PersonalNameGenderedOut.md) + - [PersonalNameGeoIn](docs/PersonalNameGeoIn.md) + - [PersonalNameGeoOut](docs/PersonalNameGeoOut.md) + - [PersonalNameIn](docs/PersonalNameIn.md) + - [PersonalNameParsedOut](docs/PersonalNameParsedOut.md) + - [ProperNounCategorizedOut](docs/ProperNounCategorizedOut.md) + - [RomanizedNameOut](docs/RomanizedNameOut.md) + - [SoftwareVersionOut](docs/SoftwareVersionOut.md) + - [SourceDetailedMetricsOut](docs/SourceDetailedMetricsOut.md) + - [SourceMetricsOut](docs/SourceMetricsOut.md) + - [StripeCardOut](docs/StripeCardOut.md) + - [StripeCustomerOut](docs/StripeCustomerOut.md) + - [SystemMetricsOut](docs/SystemMetricsOut.md) + - [UserInfoOut](docs/UserInfoOut.md) + + + +## Author + +contact@namsor.com + + diff --git a/docs/JapaneseApi.md b/docs/JapaneseApi.md index 446bc3b..fde7ded 100644 --- a/docs/JapaneseApi.md +++ b/docs/JapaneseApi.md @@ -8,7 +8,9 @@ Method | HTTP request | Description [**gender_japanese_name_full_batch**](JapaneseApi.md#gender_japanese_name_full_batch) | **POST** /api2/json/genderJapaneseNameFullBatch | Infer the likely gender of up to 100 full names [**gender_japanese_name_pinyin**](JapaneseApi.md#gender_japanese_name_pinyin) | **GET** /api2/json/genderJapaneseName/{japaneseSurname}/{japaneseGivenName} | Infer the likely gender of a Japanese name in LATIN (Pinyin). [**gender_japanese_name_pinyin_batch**](JapaneseApi.md#gender_japanese_name_pinyin_batch) | **POST** /api2/json/genderJapaneseNameBatch | Infer the likely gender of up to 100 Japanese names in LATIN (Pinyin). -[**japanese_name_kanji_candidates**](JapaneseApi.md#japanese_name_kanji_candidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae +[**japanese_name_gender_kanji_candidates_batch**](JapaneseApi.md#japanese_name_gender_kanji_candidates_batch) | **POST** /api2/json/japaneseNameGenderKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae +[**japanese_name_kanji_candidates**](JapaneseApi.md#japanese_name_kanji_candidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{knownGender} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. +[**japanese_name_kanji_candidates1**](JapaneseApi.md#japanese_name_kanji_candidates1) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae [**japanese_name_kanji_candidates_batch**](JapaneseApi.md#japanese_name_kanji_candidates_batch) | **POST** /api2/json/japaneseNameKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname), ex. Yamamoto Sanae [**japanese_name_latin_candidates**](JapaneseApi.md#japanese_name_latin_candidates) | **GET** /api2/json/japaneseNameLatinCandidates/{japaneseSurnameKanji}/{japaneseGivenNameKanji} | Romanize japanese name, based on the name in Kanji. [**japanese_name_latin_candidates_batch**](JapaneseApi.md#japanese_name_latin_candidates_batch) | **POST** /api2/json/japaneseNameLatinCandidatesBatch | Romanize japanese names, based on the name in KANJI @@ -237,8 +239,120 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **japanese_name_gender_kanji_candidates_batch** +> BatchNameMatchCandidatesOut japanese_name_gender_kanji_candidates_batch(batch_first_last_name_in=batch_first_last_name_in) + +Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae + +### Example + +* Api Key Authentication (api_key): +```python +from __future__ import print_function +import time +import openapi_client +from openapi_client.rest import ApiException +from pprint import pprint + +# Configure API key authorization: api_key +configuration = openapi_client.Configuration() +configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY' +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['X-API-KEY'] = 'Bearer' + +# create an instance of the API class +api_instance = openapi_client.JapaneseApi(openapi_client.ApiClient(configuration)) +batch_first_last_name_in = openapi_client.BatchFirstLastNameIn() # BatchFirstLastNameIn | A list of personal japanese names in LATIN, firstName = japaneseGivenName; lastName=japaneseSurname and known gender (optional) + +try: + # Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae + api_response = api_instance.japanese_name_gender_kanji_candidates_batch(batch_first_last_name_in=batch_first_last_name_in) + pprint(api_response) +except ApiException as e: + print("Exception when calling JapaneseApi->japanese_name_gender_kanji_candidates_batch: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **batch_first_last_name_in** | [**BatchFirstLastNameIn**](BatchFirstLastNameIn.md)| A list of personal japanese names in LATIN, firstName = japaneseGivenName; lastName=japaneseSurname and known gender | [optional] + +### Return type + +[**BatchNameMatchCandidatesOut**](BatchNameMatchCandidatesOut.md) + +### Authorization + +[api_key](../README.md#api_key) + +### HTTP request headers + + - **Content-Type**: application/json + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **japanese_name_kanji_candidates** -> RomanizedNameOut japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin) +> RomanizedNameOut japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin, known_gender) + +Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. + +### Example + +* Api Key Authentication (api_key): +```python +from __future__ import print_function +import time +import openapi_client +from openapi_client.rest import ApiException +from pprint import pprint + +# Configure API key authorization: api_key +configuration = openapi_client.Configuration() +configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY' +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['X-API-KEY'] = 'Bearer' + +# create an instance of the API class +api_instance = openapi_client.JapaneseApi(openapi_client.ApiClient(configuration)) +japanese_surname_latin = 'japanese_surname_latin_example' # str | +japanese_given_name_latin = 'japanese_given_name_latin_example' # str | +known_gender = 'known_gender_example' # str | + +try: + # Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. + api_response = api_instance.japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin, known_gender) + pprint(api_response) +except ApiException as e: + print("Exception when calling JapaneseApi->japanese_name_kanji_candidates: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **japanese_surname_latin** | **str**| | + **japanese_given_name_latin** | **str**| | + **known_gender** | **str**| | + +### Return type + +[**RomanizedNameOut**](RomanizedNameOut.md) + +### Authorization + +[api_key](../README.md#api_key) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + +# **japanese_name_kanji_candidates1** +> RomanizedNameOut japanese_name_kanji_candidates1(japanese_surname_latin, japanese_given_name_latin) Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae @@ -265,10 +379,10 @@ japanese_given_name_latin = 'japanese_given_name_latin_example' # str | try: # Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - api_response = api_instance.japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin) + api_response = api_instance.japanese_name_kanji_candidates1(japanese_surname_latin, japanese_given_name_latin) pprint(api_response) except ApiException as e: - print("Exception when calling JapaneseApi->japanese_name_kanji_candidates: %s\n" % e) + print("Exception when calling JapaneseApi->japanese_name_kanji_candidates1: %s\n" % e) ``` ### Parameters diff --git a/docs/NameMatchCandidateOut.md b/docs/NameMatchCandidateOut.md index f38a30a..539ebeb 100644 --- a/docs/NameMatchCandidateOut.md +++ b/docs/NameMatchCandidateOut.md @@ -5,6 +5,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **candidate_name** | **str** | | [optional] **probability** | **float** | | [optional] +**pred_score_given_name** | **float** | | [optional] +**pred_score_family_name** | **float** | | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/NameMatchCandidatesOut.md b/docs/NameMatchCandidatesOut.md index fe4a8cc..51c98db 100644 --- a/docs/NameMatchCandidatesOut.md +++ b/docs/NameMatchCandidatesOut.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes **id** | **str** | | [optional] **first_name** | **str** | | [optional] **last_name** | **str** | | [optional] +**order_option** | **str** | | [optional] **match_candidates** | [**list[NameMatchCandidateOut]**](NameMatchCandidateOut.md) | | [optional] **category** | **str** | | [optional] diff --git a/openapi_client/__init__.py b/openapi_client/__init__.py index 72ddadf..32135f8 100644 --- a/openapi_client/__init__.py +++ b/openapi_client/__init__.py @@ -7,7 +7,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "2.0.12" +__version__ = "2.0.13" # import apis into sdk package from openapi_client.api.admin_api import AdminApi diff --git a/openapi_client/api/admin_api.py b/openapi_client/api/admin_api.py index a126702..ef0b9f2 100644 --- a/openapi_client/api/admin_api.py +++ b/openapi_client/api/admin_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/api/chinese_api.py b/openapi_client/api/chinese_api.py index 796f6c4..b950b62 100644 --- a/openapi_client/api/chinese_api.py +++ b/openapi_client/api/chinese_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/api/general_api.py b/openapi_client/api/general_api.py index 0349086..dbd3060 100644 --- a/openapi_client/api/general_api.py +++ b/openapi_client/api/general_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/api/japanese_api.py b/openapi_client/api/japanese_api.py index 96ef44f..5da6b1d 100644 --- a/openapi_client/api/japanese_api.py +++ b/openapi_client/api/japanese_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -417,39 +417,135 @@ def gender_japanese_name_pinyin_batch_with_http_info(self, **kwargs): # noqa: E _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) - def japanese_name_kanji_candidates(self, japanese_surname_latin, japanese_given_name_latin, **kwargs): # noqa: E501 - """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae # noqa: E501 + def japanese_name_gender_kanji_candidates_batch(self, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin, async_req=True) + >>> thread = api.japanese_name_gender_kanji_candidates_batch(async_req=True) + >>> result = thread.get() + + :param async_req bool + :param BatchFirstLastNameIn batch_first_last_name_in: A list of personal japanese names in LATIN, firstName = japaneseGivenName; lastName=japaneseSurname and known gender + :return: BatchNameMatchCandidatesOut + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.japanese_name_gender_kanji_candidates_batch_with_http_info(**kwargs) # noqa: E501 + else: + (data) = self.japanese_name_gender_kanji_candidates_batch_with_http_info(**kwargs) # noqa: E501 + return data + + def japanese_name_gender_kanji_candidates_batch_with_http_info(self, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.japanese_name_gender_kanji_candidates_batch_with_http_info(async_req=True) + >>> result = thread.get() + + :param async_req bool + :param BatchFirstLastNameIn batch_first_last_name_in: A list of personal japanese names in LATIN, firstName = japaneseGivenName; lastName=japaneseSurname and known gender + :return: BatchNameMatchCandidatesOut + If the method is called asynchronously, + returns the request thread. + """ + + local_var_params = locals() + + all_params = ['batch_first_last_name_in'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + for key, val in six.iteritems(local_var_params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method japanese_name_gender_kanji_candidates_batch" % key + ) + local_var_params[key] = val + del local_var_params['kwargs'] + + collection_formats = {} + + path_params = {} + + query_params = [] + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + if 'batch_first_last_name_in' in local_var_params: + body_params = local_var_params['batch_first_last_name_in'] + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['api_key'] # noqa: E501 + + return self.api_client.call_api( + '/api2/json/japaneseNameGenderKanjiCandidatesBatch', 'POST', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='BatchNameMatchCandidatesOut', # noqa: E501 + auth_settings=auth_settings, + async_req=local_var_params.get('async_req'), + _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=local_var_params.get('_preload_content', True), + _request_timeout=local_var_params.get('_request_timeout'), + collection_formats=collection_formats) + + def japanese_name_kanji_candidates(self, japanese_surname_latin, japanese_given_name_latin, known_gender, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.japanese_name_kanji_candidates(japanese_surname_latin, japanese_given_name_latin, known_gender, async_req=True) >>> result = thread.get() :param async_req bool :param str japanese_surname_latin: (required) :param str japanese_given_name_latin: (required) + :param str known_gender: (required) :return: RomanizedNameOut If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): - return self.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, **kwargs) # noqa: E501 + return self.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, known_gender, **kwargs) # noqa: E501 else: - (data) = self.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, **kwargs) # noqa: E501 + (data) = self.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, known_gender, **kwargs) # noqa: E501 return data - def japanese_name_kanji_candidates_with_http_info(self, japanese_surname_latin, japanese_given_name_latin, **kwargs): # noqa: E501 - """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae # noqa: E501 + def japanese_name_kanji_candidates_with_http_info(self, japanese_surname_latin, japanese_given_name_latin, known_gender, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True - >>> thread = api.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, async_req=True) + >>> thread = api.japanese_name_kanji_candidates_with_http_info(japanese_surname_latin, japanese_given_name_latin, known_gender, async_req=True) >>> result = thread.get() :param async_req bool :param str japanese_surname_latin: (required) :param str japanese_given_name_latin: (required) + :param str known_gender: (required) :return: RomanizedNameOut If the method is called asynchronously, returns the request thread. @@ -457,7 +553,7 @@ def japanese_name_kanji_candidates_with_http_info(self, japanese_surname_latin, local_var_params = locals() - all_params = ['japanese_surname_latin', 'japanese_given_name_latin'] # noqa: E501 + all_params = ['japanese_surname_latin', 'japanese_given_name_latin', 'known_gender'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -479,6 +575,114 @@ def japanese_name_kanji_candidates_with_http_info(self, japanese_surname_latin, if ('japanese_given_name_latin' not in local_var_params or local_var_params['japanese_given_name_latin'] is None): raise ValueError("Missing the required parameter `japanese_given_name_latin` when calling `japanese_name_kanji_candidates`") # noqa: E501 + # verify the required parameter 'known_gender' is set + if ('known_gender' not in local_var_params or + local_var_params['known_gender'] is None): + raise ValueError("Missing the required parameter `known_gender` when calling `japanese_name_kanji_candidates`") # noqa: E501 + + collection_formats = {} + + path_params = {} + if 'japanese_surname_latin' in local_var_params: + path_params['japaneseSurnameLatin'] = local_var_params['japanese_surname_latin'] # noqa: E501 + if 'japanese_given_name_latin' in local_var_params: + path_params['japaneseGivenNameLatin'] = local_var_params['japanese_given_name_latin'] # noqa: E501 + if 'known_gender' in local_var_params: + path_params['knownGender'] = local_var_params['known_gender'] # noqa: E501 + + query_params = [] + + header_params = {} + + form_params = [] + local_var_files = {} + + body_params = None + # HTTP header `Accept` + header_params['Accept'] = self.api_client.select_header_accept( + ['application/json']) # noqa: E501 + + # Authentication setting + auth_settings = ['api_key'] # noqa: E501 + + return self.api_client.call_api( + '/api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{knownGender}', 'GET', + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type='RomanizedNameOut', # noqa: E501 + auth_settings=auth_settings, + async_req=local_var_params.get('async_req'), + _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 + _preload_content=local_var_params.get('_preload_content', True), + _request_timeout=local_var_params.get('_request_timeout'), + collection_formats=collection_formats) + + def japanese_name_kanji_candidates1(self, japanese_surname_latin, japanese_given_name_latin, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.japanese_name_kanji_candidates1(japanese_surname_latin, japanese_given_name_latin, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str japanese_surname_latin: (required) + :param str japanese_given_name_latin: (required) + :return: RomanizedNameOut + If the method is called asynchronously, + returns the request thread. + """ + kwargs['_return_http_data_only'] = True + if kwargs.get('async_req'): + return self.japanese_name_kanji_candidates1_with_http_info(japanese_surname_latin, japanese_given_name_latin, **kwargs) # noqa: E501 + else: + (data) = self.japanese_name_kanji_candidates1_with_http_info(japanese_surname_latin, japanese_given_name_latin, **kwargs) # noqa: E501 + return data + + def japanese_name_kanji_candidates1_with_http_info(self, japanese_surname_latin, japanese_given_name_latin, **kwargs): # noqa: E501 + """Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae # noqa: E501 + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = api.japanese_name_kanji_candidates1_with_http_info(japanese_surname_latin, japanese_given_name_latin, async_req=True) + >>> result = thread.get() + + :param async_req bool + :param str japanese_surname_latin: (required) + :param str japanese_given_name_latin: (required) + :return: RomanizedNameOut + If the method is called asynchronously, + returns the request thread. + """ + + local_var_params = locals() + + all_params = ['japanese_surname_latin', 'japanese_given_name_latin'] # noqa: E501 + all_params.append('async_req') + all_params.append('_return_http_data_only') + all_params.append('_preload_content') + all_params.append('_request_timeout') + + for key, val in six.iteritems(local_var_params['kwargs']): + if key not in all_params: + raise TypeError( + "Got an unexpected keyword argument '%s'" + " to method japanese_name_kanji_candidates1" % key + ) + local_var_params[key] = val + del local_var_params['kwargs'] + # verify the required parameter 'japanese_surname_latin' is set + if ('japanese_surname_latin' not in local_var_params or + local_var_params['japanese_surname_latin'] is None): + raise ValueError("Missing the required parameter `japanese_surname_latin` when calling `japanese_name_kanji_candidates1`") # noqa: E501 + # verify the required parameter 'japanese_given_name_latin' is set + if ('japanese_given_name_latin' not in local_var_params or + local_var_params['japanese_given_name_latin'] is None): + raise ValueError("Missing the required parameter `japanese_given_name_latin` when calling `japanese_name_kanji_candidates1`") # noqa: E501 collection_formats = {} diff --git a/openapi_client/api/personal_api.py b/openapi_client/api/personal_api.py index 9d9adcc..2182461 100644 --- a/openapi_client/api/personal_api.py +++ b/openapi_client/api/personal_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/api/social_api.py b/openapi_client/api/social_api.py index 5688b11..966c375 100644 --- a/openapi_client/api/social_api.py +++ b/openapi_client/api/social_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/api_client.py b/openapi_client/api_client.py index 0099018..1cd4d40 100644 --- a/openapi_client/api_client.py +++ b/openapi_client/api_client.py @@ -4,7 +4,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/2.0.12/python' + self.user_agent = 'OpenAPI-Generator/2.0.13/python' def __del__(self): if self._pool: diff --git a/openapi_client/configuration.py b/openapi_client/configuration.py index 2186c47..7d92ca5 100644 --- a/openapi_client/configuration.py +++ b/openapi_client/configuration.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -231,6 +231,6 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 2.0.12\n"\ - "SDK Package Version: 2.0.12".\ + "Version of the API: 2.0.13\n"\ + "SDK Package Version: 2.0.13".\ format(env=sys.platform, pyversion=sys.version) diff --git a/openapi_client/models/__init__.py b/openapi_client/models/__init__.py index 9b787a9..34ce0d1 100644 --- a/openapi_client/models/__init__.py +++ b/openapi_client/models/__init__.py @@ -6,7 +6,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_billing_period_usage_out.py b/openapi_client/models/api_billing_period_usage_out.py index 19d905c..14b7a6b 100644 --- a/openapi_client/models/api_billing_period_usage_out.py +++ b/openapi_client/models/api_billing_period_usage_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_classifier_out.py b/openapi_client/models/api_classifier_out.py index e2ea569..6affae2 100644 --- a/openapi_client/models/api_classifier_out.py +++ b/openapi_client/models/api_classifier_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_classifier_taxonomy_out.py b/openapi_client/models/api_classifier_taxonomy_out.py index 7915aa3..fa48b31 100644 --- a/openapi_client/models/api_classifier_taxonomy_out.py +++ b/openapi_client/models/api_classifier_taxonomy_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_classifiers_status_out.py b/openapi_client/models/api_classifiers_status_out.py index 0710b74..891c0a6 100644 --- a/openapi_client/models/api_classifiers_status_out.py +++ b/openapi_client/models/api_classifiers_status_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_counter_v2_out.py b/openapi_client/models/api_counter_v2_out.py index b177a9d..560b7d0 100644 --- a/openapi_client/models/api_counter_v2_out.py +++ b/openapi_client/models/api_counter_v2_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_key_out.py b/openapi_client/models/api_key_out.py index a492646..d3a89c8 100644 --- a/openapi_client/models/api_key_out.py +++ b/openapi_client/models/api_key_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_period_usage_out.py b/openapi_client/models/api_period_usage_out.py index 31bafa5..4af5b69 100644 --- a/openapi_client/models/api_period_usage_out.py +++ b/openapi_client/models/api_period_usage_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_plan_out.py b/openapi_client/models/api_plan_out.py index bfa280b..690ac35 100644 --- a/openapi_client/models/api_plan_out.py +++ b/openapi_client/models/api_plan_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_plan_subscription_out.py b/openapi_client/models/api_plan_subscription_out.py index dc7b729..37f415b 100644 --- a/openapi_client/models/api_plan_subscription_out.py +++ b/openapi_client/models/api_plan_subscription_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_plans_out.py b/openapi_client/models/api_plans_out.py index 25a63a7..46c69ad 100644 --- a/openapi_client/models/api_plans_out.py +++ b/openapi_client/models/api_plans_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_service_out.py b/openapi_client/models/api_service_out.py index c2392fe..af9c85e 100644 --- a/openapi_client/models/api_service_out.py +++ b/openapi_client/models/api_service_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_services_out.py b/openapi_client/models/api_services_out.py index 9d942b5..544f487 100644 --- a/openapi_client/models/api_services_out.py +++ b/openapi_client/models/api_services_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/api_usage_aggregated_out.py b/openapi_client/models/api_usage_aggregated_out.py index 2921917..846f21e 100644 --- a/openapi_client/models/api_usage_aggregated_out.py +++ b/openapi_client/models/api_usage_aggregated_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_corridor_in.py b/openapi_client/models/batch_corridor_in.py index 3609a7c..87d432b 100644 --- a/openapi_client/models/batch_corridor_in.py +++ b/openapi_client/models/batch_corridor_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_corridor_out.py b/openapi_client/models/batch_corridor_out.py index 373c55e..fd38510 100644 --- a/openapi_client/models/batch_corridor_out.py +++ b/openapi_client/models/batch_corridor_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_diasporaed_out.py b/openapi_client/models/batch_first_last_name_diasporaed_out.py index 29ba18e..95d573e 100644 --- a/openapi_client/models/batch_first_last_name_diasporaed_out.py +++ b/openapi_client/models/batch_first_last_name_diasporaed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_gender_in.py b/openapi_client/models/batch_first_last_name_gender_in.py index d553315..2b738b5 100644 --- a/openapi_client/models/batch_first_last_name_gender_in.py +++ b/openapi_client/models/batch_first_last_name_gender_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_gendered_out.py b/openapi_client/models/batch_first_last_name_gendered_out.py index f6b22dc..5ccdd73 100644 --- a/openapi_client/models/batch_first_last_name_gendered_out.py +++ b/openapi_client/models/batch_first_last_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_geo_in.py b/openapi_client/models/batch_first_last_name_geo_in.py index 5df184b..61f58dd 100644 --- a/openapi_client/models/batch_first_last_name_geo_in.py +++ b/openapi_client/models/batch_first_last_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_geo_zipped_in.py b/openapi_client/models/batch_first_last_name_geo_zipped_in.py index 9dbc4fc..be84fb5 100644 --- a/openapi_client/models/batch_first_last_name_geo_zipped_in.py +++ b/openapi_client/models/batch_first_last_name_geo_zipped_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_in.py b/openapi_client/models/batch_first_last_name_in.py index 8f3826d..d008d35 100644 --- a/openapi_client/models/batch_first_last_name_in.py +++ b/openapi_client/models/batch_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_origined_out.py b/openapi_client/models/batch_first_last_name_origined_out.py index 074ba9e..374d608 100644 --- a/openapi_client/models/batch_first_last_name_origined_out.py +++ b/openapi_client/models/batch_first_last_name_origined_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_phone_coded_out.py b/openapi_client/models/batch_first_last_name_phone_coded_out.py index 836f778..1fb6b74 100644 --- a/openapi_client/models/batch_first_last_name_phone_coded_out.py +++ b/openapi_client/models/batch_first_last_name_phone_coded_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_phone_number_geo_in.py b/openapi_client/models/batch_first_last_name_phone_number_geo_in.py index 202a7b1..eb676af 100644 --- a/openapi_client/models/batch_first_last_name_phone_number_geo_in.py +++ b/openapi_client/models/batch_first_last_name_phone_number_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_phone_number_in.py b/openapi_client/models/batch_first_last_name_phone_number_in.py index e0bc9f7..9fb8b88 100644 --- a/openapi_client/models/batch_first_last_name_phone_number_in.py +++ b/openapi_client/models/batch_first_last_name_phone_number_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_first_last_name_us_race_ethnicity_out.py b/openapi_client/models/batch_first_last_name_us_race_ethnicity_out.py index 4b404fc..0958c58 100644 --- a/openapi_client/models/batch_first_last_name_us_race_ethnicity_out.py +++ b/openapi_client/models/batch_first_last_name_us_race_ethnicity_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_match_personal_first_last_name_in.py b/openapi_client/models/batch_match_personal_first_last_name_in.py index 1781b18..5a75c5a 100644 --- a/openapi_client/models/batch_match_personal_first_last_name_in.py +++ b/openapi_client/models/batch_match_personal_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_name_geo_in.py b/openapi_client/models/batch_name_geo_in.py index 53e2c75..438398c 100644 --- a/openapi_client/models/batch_name_geo_in.py +++ b/openapi_client/models/batch_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_name_in.py b/openapi_client/models/batch_name_in.py index 1f5718d..81c25f9 100644 --- a/openapi_client/models/batch_name_in.py +++ b/openapi_client/models/batch_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_name_match_candidates_out.py b/openapi_client/models/batch_name_match_candidates_out.py index 399b105..e1640b4 100644 --- a/openapi_client/models/batch_name_match_candidates_out.py +++ b/openapi_client/models/batch_name_match_candidates_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_name_matched_out.py b/openapi_client/models/batch_name_matched_out.py index 2c35dd4..6aca761 100644 --- a/openapi_client/models/batch_name_matched_out.py +++ b/openapi_client/models/batch_name_matched_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_parsed_full_name_geo_in.py b/openapi_client/models/batch_parsed_full_name_geo_in.py index 5d80964..680ea77 100644 --- a/openapi_client/models/batch_parsed_full_name_geo_in.py +++ b/openapi_client/models/batch_parsed_full_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_parsed_full_name_in.py b/openapi_client/models/batch_parsed_full_name_in.py index 7463e74..b6b9a89 100644 --- a/openapi_client/models/batch_parsed_full_name_in.py +++ b/openapi_client/models/batch_parsed_full_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_personal_name_gendered_out.py b/openapi_client/models/batch_personal_name_gendered_out.py index 93a8dc7..33d3cc9 100644 --- a/openapi_client/models/batch_personal_name_gendered_out.py +++ b/openapi_client/models/batch_personal_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_personal_name_geo_in.py b/openapi_client/models/batch_personal_name_geo_in.py index e022f0e..5fd5581 100644 --- a/openapi_client/models/batch_personal_name_geo_in.py +++ b/openapi_client/models/batch_personal_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_personal_name_geo_out.py b/openapi_client/models/batch_personal_name_geo_out.py index 42643b8..a8189b9 100644 --- a/openapi_client/models/batch_personal_name_geo_out.py +++ b/openapi_client/models/batch_personal_name_geo_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_personal_name_in.py b/openapi_client/models/batch_personal_name_in.py index 150dc3c..5d6317d 100644 --- a/openapi_client/models/batch_personal_name_in.py +++ b/openapi_client/models/batch_personal_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_personal_name_parsed_out.py b/openapi_client/models/batch_personal_name_parsed_out.py index b109876..e44031b 100644 --- a/openapi_client/models/batch_personal_name_parsed_out.py +++ b/openapi_client/models/batch_personal_name_parsed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/batch_proper_noun_categorized_out.py b/openapi_client/models/batch_proper_noun_categorized_out.py index bf03d41..e182a5b 100644 --- a/openapi_client/models/batch_proper_noun_categorized_out.py +++ b/openapi_client/models/batch_proper_noun_categorized_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/billing_history_out.py b/openapi_client/models/billing_history_out.py index 1892f3a..8077398 100644 --- a/openapi_client/models/billing_history_out.py +++ b/openapi_client/models/billing_history_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/billing_info_in_out.py b/openapi_client/models/billing_info_in_out.py index f226532..168b370 100644 --- a/openapi_client/models/billing_info_in_out.py +++ b/openapi_client/models/billing_info_in_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/cache_metrics_out.py b/openapi_client/models/cache_metrics_out.py index c05f406..6cf14ab 100644 --- a/openapi_client/models/cache_metrics_out.py +++ b/openapi_client/models/cache_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/classifier_metrics_out.py b/openapi_client/models/classifier_metrics_out.py index eb66ab6..bda45f3 100644 --- a/openapi_client/models/classifier_metrics_out.py +++ b/openapi_client/models/classifier_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/corridor_in.py b/openapi_client/models/corridor_in.py index 6d7ba6c..bd8362c 100644 --- a/openapi_client/models/corridor_in.py +++ b/openapi_client/models/corridor_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/corridor_out.py b/openapi_client/models/corridor_out.py index 3900307..5d7436d 100644 --- a/openapi_client/models/corridor_out.py +++ b/openapi_client/models/corridor_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/currencies_out.py b/openapi_client/models/currencies_out.py index 519b3d3..2cb075c 100644 --- a/openapi_client/models/currencies_out.py +++ b/openapi_client/models/currencies_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/expected_class_metrics_out.py b/openapi_client/models/expected_class_metrics_out.py index 481cd10..edc07e1 100644 --- a/openapi_client/models/expected_class_metrics_out.py +++ b/openapi_client/models/expected_class_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/feedback_loop_out.py b/openapi_client/models/feedback_loop_out.py index deaddef..d331339 100644 --- a/openapi_client/models/feedback_loop_out.py +++ b/openapi_client/models/feedback_loop_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_diasporaed_out.py b/openapi_client/models/first_last_name_diasporaed_out.py index 9775c73..f2c363e 100644 --- a/openapi_client/models/first_last_name_diasporaed_out.py +++ b/openapi_client/models/first_last_name_diasporaed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_gender_in.py b/openapi_client/models/first_last_name_gender_in.py index eafc122..2a452b6 100644 --- a/openapi_client/models/first_last_name_gender_in.py +++ b/openapi_client/models/first_last_name_gender_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_gendered_out.py b/openapi_client/models/first_last_name_gendered_out.py index f1ef2e9..7eda357 100644 --- a/openapi_client/models/first_last_name_gendered_out.py +++ b/openapi_client/models/first_last_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_geo_in.py b/openapi_client/models/first_last_name_geo_in.py index 6f4d9b7..fc102cb 100644 --- a/openapi_client/models/first_last_name_geo_in.py +++ b/openapi_client/models/first_last_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_geo_zipped_in.py b/openapi_client/models/first_last_name_geo_zipped_in.py index 0b22ebc..240451d 100644 --- a/openapi_client/models/first_last_name_geo_zipped_in.py +++ b/openapi_client/models/first_last_name_geo_zipped_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_in.py b/openapi_client/models/first_last_name_in.py index b324f81..2ce14dc 100644 --- a/openapi_client/models/first_last_name_in.py +++ b/openapi_client/models/first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_origined_out.py b/openapi_client/models/first_last_name_origined_out.py index d109b35..e7a233f 100644 --- a/openapi_client/models/first_last_name_origined_out.py +++ b/openapi_client/models/first_last_name_origined_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_out.py b/openapi_client/models/first_last_name_out.py index 2251c37..e8ff03b 100644 --- a/openapi_client/models/first_last_name_out.py +++ b/openapi_client/models/first_last_name_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_phone_coded_out.py b/openapi_client/models/first_last_name_phone_coded_out.py index 2894f53..35a793b 100644 --- a/openapi_client/models/first_last_name_phone_coded_out.py +++ b/openapi_client/models/first_last_name_phone_coded_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_phone_number_geo_in.py b/openapi_client/models/first_last_name_phone_number_geo_in.py index cd8910f..3605b40 100644 --- a/openapi_client/models/first_last_name_phone_number_geo_in.py +++ b/openapi_client/models/first_last_name_phone_number_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_phone_number_in.py b/openapi_client/models/first_last_name_phone_number_in.py index c649603..a2c0413 100644 --- a/openapi_client/models/first_last_name_phone_number_in.py +++ b/openapi_client/models/first_last_name_phone_number_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/first_last_name_us_race_ethnicity_out.py b/openapi_client/models/first_last_name_us_race_ethnicity_out.py index f890bce..a6debc1 100644 --- a/openapi_client/models/first_last_name_us_race_ethnicity_out.py +++ b/openapi_client/models/first_last_name_us_race_ethnicity_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/inline_object.py b/openapi_client/models/inline_object.py index ee20698..bbedff1 100644 --- a/openapi_client/models/inline_object.py +++ b/openapi_client/models/inline_object.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/invoice_item_out.py b/openapi_client/models/invoice_item_out.py index bd04d7b..e99b338 100644 --- a/openapi_client/models/invoice_item_out.py +++ b/openapi_client/models/invoice_item_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/invoice_out.py b/openapi_client/models/invoice_out.py index ba258b2..892d92c 100644 --- a/openapi_client/models/invoice_out.py +++ b/openapi_client/models/invoice_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/match_personal_first_last_name_in.py b/openapi_client/models/match_personal_first_last_name_in.py index 177edd3..190359f 100644 --- a/openapi_client/models/match_personal_first_last_name_in.py +++ b/openapi_client/models/match_personal_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/nam_sor_counter_out.py b/openapi_client/models/nam_sor_counter_out.py index 9b172ff..9c968db 100644 --- a/openapi_client/models/nam_sor_counter_out.py +++ b/openapi_client/models/nam_sor_counter_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/name_geo_in.py b/openapi_client/models/name_geo_in.py index 4d44c75..a29075f 100644 --- a/openapi_client/models/name_geo_in.py +++ b/openapi_client/models/name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/name_in.py b/openapi_client/models/name_in.py index ef8d28c..076806c 100644 --- a/openapi_client/models/name_in.py +++ b/openapi_client/models/name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/name_match_candidate_out.py b/openapi_client/models/name_match_candidate_out.py index 878ca37..223cbc8 100644 --- a/openapi_client/models/name_match_candidate_out.py +++ b/openapi_client/models/name_match_candidate_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -33,25 +33,35 @@ class NameMatchCandidateOut(object): """ openapi_types = { 'candidate_name': 'str', - 'probability': 'float' + 'probability': 'float', + 'pred_score_given_name': 'float', + 'pred_score_family_name': 'float' } attribute_map = { 'candidate_name': 'candidateName', - 'probability': 'probability' + 'probability': 'probability', + 'pred_score_given_name': 'predScoreGivenName', + 'pred_score_family_name': 'predScoreFamilyName' } - def __init__(self, candidate_name=None, probability=None): # noqa: E501 + def __init__(self, candidate_name=None, probability=None, pred_score_given_name=None, pred_score_family_name=None): # noqa: E501 """NameMatchCandidateOut - a model defined in OpenAPI""" # noqa: E501 self._candidate_name = None self._probability = None + self._pred_score_given_name = None + self._pred_score_family_name = None self.discriminator = None if candidate_name is not None: self.candidate_name = candidate_name if probability is not None: self.probability = probability + if pred_score_given_name is not None: + self.pred_score_given_name = pred_score_given_name + if pred_score_family_name is not None: + self.pred_score_family_name = pred_score_family_name @property def candidate_name(self): @@ -95,6 +105,48 @@ def probability(self, probability): self._probability = probability + @property + def pred_score_given_name(self): + """Gets the pred_score_given_name of this NameMatchCandidateOut. # noqa: E501 + + + :return: The pred_score_given_name of this NameMatchCandidateOut. # noqa: E501 + :rtype: float + """ + return self._pred_score_given_name + + @pred_score_given_name.setter + def pred_score_given_name(self, pred_score_given_name): + """Sets the pred_score_given_name of this NameMatchCandidateOut. + + + :param pred_score_given_name: The pred_score_given_name of this NameMatchCandidateOut. # noqa: E501 + :type: float + """ + + self._pred_score_given_name = pred_score_given_name + + @property + def pred_score_family_name(self): + """Gets the pred_score_family_name of this NameMatchCandidateOut. # noqa: E501 + + + :return: The pred_score_family_name of this NameMatchCandidateOut. # noqa: E501 + :rtype: float + """ + return self._pred_score_family_name + + @pred_score_family_name.setter + def pred_score_family_name(self, pred_score_family_name): + """Sets the pred_score_family_name of this NameMatchCandidateOut. + + + :param pred_score_family_name: The pred_score_family_name of this NameMatchCandidateOut. # noqa: E501 + :type: float + """ + + self._pred_score_family_name = pred_score_family_name + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/openapi_client/models/name_match_candidates_out.py b/openapi_client/models/name_match_candidates_out.py index b4eab34..91a79c7 100644 --- a/openapi_client/models/name_match_candidates_out.py +++ b/openapi_client/models/name_match_candidates_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -36,6 +36,7 @@ class NameMatchCandidatesOut(object): 'id': 'str', 'first_name': 'str', 'last_name': 'str', + 'order_option': 'str', 'match_candidates': 'list[NameMatchCandidateOut]', 'category': 'str' } @@ -45,17 +46,19 @@ class NameMatchCandidatesOut(object): 'id': 'id', 'first_name': 'firstName', 'last_name': 'lastName', + 'order_option': 'orderOption', 'match_candidates': 'matchCandidates', 'category': 'category' } - def __init__(self, script=None, id=None, first_name=None, last_name=None, match_candidates=None, category=None): # noqa: E501 + def __init__(self, script=None, id=None, first_name=None, last_name=None, order_option=None, match_candidates=None, category=None): # noqa: E501 """NameMatchCandidatesOut - a model defined in OpenAPI""" # noqa: E501 self._script = None self._id = None self._first_name = None self._last_name = None + self._order_option = None self._match_candidates = None self._category = None self.discriminator = None @@ -68,6 +71,8 @@ def __init__(self, script=None, id=None, first_name=None, last_name=None, match_ self.first_name = first_name if last_name is not None: self.last_name = last_name + if order_option is not None: + self.order_option = order_option if match_candidates is not None: self.match_candidates = match_candidates if category is not None: @@ -157,6 +162,27 @@ def last_name(self, last_name): self._last_name = last_name + @property + def order_option(self): + """Gets the order_option of this NameMatchCandidatesOut. # noqa: E501 + + + :return: The order_option of this NameMatchCandidatesOut. # noqa: E501 + :rtype: str + """ + return self._order_option + + @order_option.setter + def order_option(self, order_option): + """Sets the order_option of this NameMatchCandidatesOut. + + + :param order_option: The order_option of this NameMatchCandidatesOut. # noqa: E501 + :type: str + """ + + self._order_option = order_option + @property def match_candidates(self): """Gets the match_candidates of this NameMatchCandidatesOut. # noqa: E501 diff --git a/openapi_client/models/name_matched_out.py b/openapi_client/models/name_matched_out.py index 0213382..aa56bc8 100644 --- a/openapi_client/models/name_matched_out.py +++ b/openapi_client/models/name_matched_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/parsed_full_name_geo_in.py b/openapi_client/models/parsed_full_name_geo_in.py index fdac235..9977f60 100644 --- a/openapi_client/models/parsed_full_name_geo_in.py +++ b/openapi_client/models/parsed_full_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/parsed_full_name_in.py b/openapi_client/models/parsed_full_name_in.py index babd1e0..f2700ad 100644 --- a/openapi_client/models/parsed_full_name_in.py +++ b/openapi_client/models/parsed_full_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/personal_name_gendered_out.py b/openapi_client/models/personal_name_gendered_out.py index fbeb786..244cf7c 100644 --- a/openapi_client/models/personal_name_gendered_out.py +++ b/openapi_client/models/personal_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/personal_name_geo_in.py b/openapi_client/models/personal_name_geo_in.py index b57f55a..5dad7e9 100644 --- a/openapi_client/models/personal_name_geo_in.py +++ b/openapi_client/models/personal_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/personal_name_geo_out.py b/openapi_client/models/personal_name_geo_out.py index 427d550..45809da 100644 --- a/openapi_client/models/personal_name_geo_out.py +++ b/openapi_client/models/personal_name_geo_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/personal_name_in.py b/openapi_client/models/personal_name_in.py index cb12ad9..36193f6 100644 --- a/openapi_client/models/personal_name_in.py +++ b/openapi_client/models/personal_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/personal_name_parsed_out.py b/openapi_client/models/personal_name_parsed_out.py index 5ba16a6..996a554 100644 --- a/openapi_client/models/personal_name_parsed_out.py +++ b/openapi_client/models/personal_name_parsed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/proper_noun_categorized_out.py b/openapi_client/models/proper_noun_categorized_out.py index 97ca33e..8b4919d 100644 --- a/openapi_client/models/proper_noun_categorized_out.py +++ b/openapi_client/models/proper_noun_categorized_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/romanized_name_out.py b/openapi_client/models/romanized_name_out.py index 1f07b8d..7738d87 100644 --- a/openapi_client/models/romanized_name_out.py +++ b/openapi_client/models/romanized_name_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/software_version_out.py b/openapi_client/models/software_version_out.py index 959f37b..5c2ffa3 100644 --- a/openapi_client/models/software_version_out.py +++ b/openapi_client/models/software_version_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/source_detailed_metrics_out.py b/openapi_client/models/source_detailed_metrics_out.py index b682832..174fd69 100644 --- a/openapi_client/models/source_detailed_metrics_out.py +++ b/openapi_client/models/source_detailed_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/source_metrics_out.py b/openapi_client/models/source_metrics_out.py index e945533..c72a5da 100644 --- a/openapi_client/models/source_metrics_out.py +++ b/openapi_client/models/source_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/stripe_card_out.py b/openapi_client/models/stripe_card_out.py index c50e41f..54eb297 100644 --- a/openapi_client/models/stripe_card_out.py +++ b/openapi_client/models/stripe_card_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/stripe_customer_out.py b/openapi_client/models/stripe_customer_out.py index 0474061..1da179e 100644 --- a/openapi_client/models/stripe_customer_out.py +++ b/openapi_client/models/stripe_customer_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/system_metrics_out.py b/openapi_client/models/system_metrics_out.py index d8237be..1b602a5 100644 --- a/openapi_client/models/system_metrics_out.py +++ b/openapi_client/models/system_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/models/user_info_out.py b/openapi_client/models/user_info_out.py index 0185cdd..1a4fb84 100644 --- a/openapi_client/models/user_info_out.py +++ b/openapi_client/models/user_info_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/openapi_client/rest.py b/openapi_client/rest.py index 0caa333..ae9b2c1 100644 --- a/openapi_client/rest.py +++ b/openapi_client/rest.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/run-python.bash b/run-python.bash index 582ca56..327a0b3 100755 --- a/run-python.bash +++ b/run-python.bash @@ -2,7 +2,7 @@ echo update openapi-generator ./bin/utils/openapi-generator-cli.sh rm -Rf ./namsor/client/python/* echo run openapi-generator -java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generate --git-repo-id namsor-python-sdk2 --git-user-id namsor --skip-validate-spec -i https://v2.namsor.com/NamSorAPIv2/api2/openapi.json -g python -o namsor/client/python --additional-properties packageVersion=2.0.12 +java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generate --git-repo-id namsor-python-sdk2 --git-user-id namsor --skip-validate-spec -i https://v2.namsor.com/NamSorAPIv2/api2/openapi.json -g python -o namsor/client/python --additional-properties packageVersion=2.0.13 #~/dropbox_uploader.sh upload namsor-sdk2-1.0.0.jar namsor-sdk2-1.0.0.jar #~/dropbox_uploader.sh upload namsor-sdk2-1.0.0-javadoc.jar namsor-sdk2-1.0.0-javadoc.jar #~/dropbox_uploader.sh upload namsor-sdk2-1.0.0-sources.jar namsor-sdk2-1.0.0-sources.jar diff --git a/setup.py b/setup.py index 665c928..2777d8b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "openapi-client" -VERSION = "2.0.12" +VERSION = "2.0.13" # To install the library, run the following # # python setup.py install diff --git a/test/test_admin_api.py b/test/test_admin_api.py index b75af34..2f8761d 100644 --- a/test/test_admin_api.py +++ b/test/test_admin_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_billing_period_usage_out.py b/test/test_api_billing_period_usage_out.py index 27022f7..91d7bef 100644 --- a/test/test_api_billing_period_usage_out.py +++ b/test/test_api_billing_period_usage_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_classifier_out.py b/test/test_api_classifier_out.py index e04203f..d9aba7f 100644 --- a/test/test_api_classifier_out.py +++ b/test/test_api_classifier_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_classifier_taxonomy_out.py b/test/test_api_classifier_taxonomy_out.py index d5f0464..2310e74 100644 --- a/test/test_api_classifier_taxonomy_out.py +++ b/test/test_api_classifier_taxonomy_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_classifiers_status_out.py b/test/test_api_classifiers_status_out.py index 3521802..44ce6bf 100644 --- a/test/test_api_classifiers_status_out.py +++ b/test/test_api_classifiers_status_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_counter_v2_out.py b/test/test_api_counter_v2_out.py index e5bb753..24b5adc 100644 --- a/test/test_api_counter_v2_out.py +++ b/test/test_api_counter_v2_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_key_out.py b/test/test_api_key_out.py index 7695c5b..8e5c5e9 100644 --- a/test/test_api_key_out.py +++ b/test/test_api_key_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_period_usage_out.py b/test/test_api_period_usage_out.py index 7a2b341..a705b07 100644 --- a/test/test_api_period_usage_out.py +++ b/test/test_api_period_usage_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_plan_out.py b/test/test_api_plan_out.py index 12d2c6c..7da664f 100644 --- a/test/test_api_plan_out.py +++ b/test/test_api_plan_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_plan_subscription_out.py b/test/test_api_plan_subscription_out.py index 9a811c1..a922709 100644 --- a/test/test_api_plan_subscription_out.py +++ b/test/test_api_plan_subscription_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_plans_out.py b/test/test_api_plans_out.py index b31321a..a75c254 100644 --- a/test/test_api_plans_out.py +++ b/test/test_api_plans_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_service_out.py b/test/test_api_service_out.py index ff98a71..994baca 100644 --- a/test/test_api_service_out.py +++ b/test/test_api_service_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_services_out.py b/test/test_api_services_out.py index 917edb3..ad28f16 100644 --- a/test/test_api_services_out.py +++ b/test/test_api_services_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_usage_aggregated_out.py b/test/test_api_usage_aggregated_out.py index 369244f..c756084 100644 --- a/test/test_api_usage_aggregated_out.py +++ b/test/test_api_usage_aggregated_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_corridor_in.py b/test/test_batch_corridor_in.py index 1f94b10..cd78fb5 100644 --- a/test/test_batch_corridor_in.py +++ b/test/test_batch_corridor_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_corridor_out.py b/test/test_batch_corridor_out.py index 205be37..4412670 100644 --- a/test/test_batch_corridor_out.py +++ b/test/test_batch_corridor_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_diasporaed_out.py b/test/test_batch_first_last_name_diasporaed_out.py index 89e43b3..836ef7e 100644 --- a/test/test_batch_first_last_name_diasporaed_out.py +++ b/test/test_batch_first_last_name_diasporaed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_gender_in.py b/test/test_batch_first_last_name_gender_in.py index d2436c0..5e7e007 100644 --- a/test/test_batch_first_last_name_gender_in.py +++ b/test/test_batch_first_last_name_gender_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_gendered_out.py b/test/test_batch_first_last_name_gendered_out.py index b56eeb0..949e9df 100644 --- a/test/test_batch_first_last_name_gendered_out.py +++ b/test/test_batch_first_last_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_geo_in.py b/test/test_batch_first_last_name_geo_in.py index 17d8e43..a2ea753 100644 --- a/test/test_batch_first_last_name_geo_in.py +++ b/test/test_batch_first_last_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_geo_zipped_in.py b/test/test_batch_first_last_name_geo_zipped_in.py index 94e159b..13a5540 100644 --- a/test/test_batch_first_last_name_geo_zipped_in.py +++ b/test/test_batch_first_last_name_geo_zipped_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_in.py b/test/test_batch_first_last_name_in.py index e47e258..a5e6872 100644 --- a/test/test_batch_first_last_name_in.py +++ b/test/test_batch_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_origined_out.py b/test/test_batch_first_last_name_origined_out.py index 27ecf63..532b2b4 100644 --- a/test/test_batch_first_last_name_origined_out.py +++ b/test/test_batch_first_last_name_origined_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_phone_coded_out.py b/test/test_batch_first_last_name_phone_coded_out.py index ca40df8..e5809e4 100644 --- a/test/test_batch_first_last_name_phone_coded_out.py +++ b/test/test_batch_first_last_name_phone_coded_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_phone_number_geo_in.py b/test/test_batch_first_last_name_phone_number_geo_in.py index 5ce92cf..4054ce6 100644 --- a/test/test_batch_first_last_name_phone_number_geo_in.py +++ b/test/test_batch_first_last_name_phone_number_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_phone_number_in.py b/test/test_batch_first_last_name_phone_number_in.py index 60e1d53..6dbdcf7 100644 --- a/test/test_batch_first_last_name_phone_number_in.py +++ b/test/test_batch_first_last_name_phone_number_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_first_last_name_us_race_ethnicity_out.py b/test/test_batch_first_last_name_us_race_ethnicity_out.py index 5169da7..0282362 100644 --- a/test/test_batch_first_last_name_us_race_ethnicity_out.py +++ b/test/test_batch_first_last_name_us_race_ethnicity_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_match_personal_first_last_name_in.py b/test/test_batch_match_personal_first_last_name_in.py index e35a0bf..59e38e5 100644 --- a/test/test_batch_match_personal_first_last_name_in.py +++ b/test/test_batch_match_personal_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_name_geo_in.py b/test/test_batch_name_geo_in.py index 4876707..800c68e 100644 --- a/test/test_batch_name_geo_in.py +++ b/test/test_batch_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_name_in.py b/test/test_batch_name_in.py index 6092d6b..c829800 100644 --- a/test/test_batch_name_in.py +++ b/test/test_batch_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_name_match_candidates_out.py b/test/test_batch_name_match_candidates_out.py index 0d91458..aed237c 100644 --- a/test/test_batch_name_match_candidates_out.py +++ b/test/test_batch_name_match_candidates_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_name_matched_out.py b/test/test_batch_name_matched_out.py index 0f07c8b..f4e0eb3 100644 --- a/test/test_batch_name_matched_out.py +++ b/test/test_batch_name_matched_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_parsed_full_name_geo_in.py b/test/test_batch_parsed_full_name_geo_in.py index a86265c..d4547d3 100644 --- a/test/test_batch_parsed_full_name_geo_in.py +++ b/test/test_batch_parsed_full_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_parsed_full_name_in.py b/test/test_batch_parsed_full_name_in.py index dcecdb5..f1cef6a 100644 --- a/test/test_batch_parsed_full_name_in.py +++ b/test/test_batch_parsed_full_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_personal_name_gendered_out.py b/test/test_batch_personal_name_gendered_out.py index f298da6..b6a29e6 100644 --- a/test/test_batch_personal_name_gendered_out.py +++ b/test/test_batch_personal_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_personal_name_geo_in.py b/test/test_batch_personal_name_geo_in.py index 194b5b9..b1eee6a 100644 --- a/test/test_batch_personal_name_geo_in.py +++ b/test/test_batch_personal_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_personal_name_geo_out.py b/test/test_batch_personal_name_geo_out.py index 10402e7..8a9c5c0 100644 --- a/test/test_batch_personal_name_geo_out.py +++ b/test/test_batch_personal_name_geo_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_personal_name_in.py b/test/test_batch_personal_name_in.py index ed1df0a..2112abd 100644 --- a/test/test_batch_personal_name_in.py +++ b/test/test_batch_personal_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_personal_name_parsed_out.py b/test/test_batch_personal_name_parsed_out.py index 6ebeaaf..0fe1bd3 100644 --- a/test/test_batch_personal_name_parsed_out.py +++ b/test/test_batch_personal_name_parsed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_batch_proper_noun_categorized_out.py b/test/test_batch_proper_noun_categorized_out.py index 58f3ab7..eb797f3 100644 --- a/test/test_batch_proper_noun_categorized_out.py +++ b/test/test_batch_proper_noun_categorized_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_history_out.py b/test/test_billing_history_out.py index 13431b9..680fd69 100644 --- a/test/test_billing_history_out.py +++ b/test/test_billing_history_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_info_in_out.py b/test/test_billing_info_in_out.py index c3022b6..bf06bd9 100644 --- a/test/test_billing_info_in_out.py +++ b/test/test_billing_info_in_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_cache_metrics_out.py b/test/test_cache_metrics_out.py index e48ecec..13358fc 100644 --- a/test/test_cache_metrics_out.py +++ b/test/test_cache_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_chinese_api.py b/test/test_chinese_api.py index dc20aaa..9934fb9 100644 --- a/test/test_chinese_api.py +++ b/test/test_chinese_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_classifier_metrics_out.py b/test/test_classifier_metrics_out.py index 4bfb68b..ab8d4e9 100644 --- a/test/test_classifier_metrics_out.py +++ b/test/test_classifier_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_corridor_in.py b/test/test_corridor_in.py index a25edce..4c996ff 100644 --- a/test/test_corridor_in.py +++ b/test/test_corridor_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_corridor_out.py b/test/test_corridor_out.py index 63c8c4f..555f21a 100644 --- a/test/test_corridor_out.py +++ b/test/test_corridor_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_currencies_out.py b/test/test_currencies_out.py index de2b6eb..7b00781 100644 --- a/test/test_currencies_out.py +++ b/test/test_currencies_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_expected_class_metrics_out.py b/test/test_expected_class_metrics_out.py index 1ca0cc2..4b8b027 100644 --- a/test/test_expected_class_metrics_out.py +++ b/test/test_expected_class_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_feedback_loop_out.py b/test/test_feedback_loop_out.py index a5bf20f..c4810ec 100644 --- a/test/test_feedback_loop_out.py +++ b/test/test_feedback_loop_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_diasporaed_out.py b/test/test_first_last_name_diasporaed_out.py index 5ba586f..ded1f1f 100644 --- a/test/test_first_last_name_diasporaed_out.py +++ b/test/test_first_last_name_diasporaed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_gender_in.py b/test/test_first_last_name_gender_in.py index bd42e3b..8f3a915 100644 --- a/test/test_first_last_name_gender_in.py +++ b/test/test_first_last_name_gender_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_gendered_out.py b/test/test_first_last_name_gendered_out.py index 01ba586..851bca6 100644 --- a/test/test_first_last_name_gendered_out.py +++ b/test/test_first_last_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_geo_in.py b/test/test_first_last_name_geo_in.py index 264f2fd..e15387a 100644 --- a/test/test_first_last_name_geo_in.py +++ b/test/test_first_last_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_geo_zipped_in.py b/test/test_first_last_name_geo_zipped_in.py index 2aadbc6..a0eae51 100644 --- a/test/test_first_last_name_geo_zipped_in.py +++ b/test/test_first_last_name_geo_zipped_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_in.py b/test/test_first_last_name_in.py index aada703..4e2f276 100644 --- a/test/test_first_last_name_in.py +++ b/test/test_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_origined_out.py b/test/test_first_last_name_origined_out.py index a18ae9c..14bae9d 100644 --- a/test/test_first_last_name_origined_out.py +++ b/test/test_first_last_name_origined_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_out.py b/test/test_first_last_name_out.py index 53c1c44..28ecc75 100644 --- a/test/test_first_last_name_out.py +++ b/test/test_first_last_name_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_phone_coded_out.py b/test/test_first_last_name_phone_coded_out.py index e476e1a..a94222f 100644 --- a/test/test_first_last_name_phone_coded_out.py +++ b/test/test_first_last_name_phone_coded_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_phone_number_geo_in.py b/test/test_first_last_name_phone_number_geo_in.py index 7c53e88..a83cd09 100644 --- a/test/test_first_last_name_phone_number_geo_in.py +++ b/test/test_first_last_name_phone_number_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_phone_number_in.py b/test/test_first_last_name_phone_number_in.py index 83dc281..0e5d4c1 100644 --- a/test/test_first_last_name_phone_number_in.py +++ b/test/test_first_last_name_phone_number_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_first_last_name_us_race_ethnicity_out.py b/test/test_first_last_name_us_race_ethnicity_out.py index fa5e4f4..c795b15 100644 --- a/test/test_first_last_name_us_race_ethnicity_out.py +++ b/test/test_first_last_name_us_race_ethnicity_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_general_api.py b/test/test_general_api.py index d65cc6d..639ec7b 100644 --- a/test/test_general_api.py +++ b/test/test_general_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_inline_object.py b/test/test_inline_object.py index 4cbf55e..9b36f7c 100644 --- a/test/test_inline_object.py +++ b/test/test_inline_object.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_invoice_item_out.py b/test/test_invoice_item_out.py index f7e4755..8aaec3a 100644 --- a/test/test_invoice_item_out.py +++ b/test/test_invoice_item_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_invoice_out.py b/test/test_invoice_out.py index 5734977..a64e275 100644 --- a/test/test_invoice_out.py +++ b/test/test_invoice_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_japanese_api.py b/test/test_japanese_api.py index 4f9c5a8..b8d6d18 100644 --- a/test/test_japanese_api.py +++ b/test/test_japanese_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ @@ -57,9 +57,23 @@ def test_gender_japanese_name_pinyin_batch(self): """ pass + def test_japanese_name_gender_kanji_candidates_batch(self): + """Test case for japanese_name_gender_kanji_candidates_batch + + Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname) with KNOWN gender, ex. Yamamoto Sanae # noqa: E501 + """ + pass + def test_japanese_name_kanji_candidates(self): """Test case for japanese_name_kanji_candidates + Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae - and a known gender. # noqa: E501 + """ + pass + + def test_japanese_name_kanji_candidates1(self): + """Test case for japanese_name_kanji_candidates1 + Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae # noqa: E501 """ pass diff --git a/test/test_match_personal_first_last_name_in.py b/test/test_match_personal_first_last_name_in.py index 209fbcf..0969e3a 100644 --- a/test/test_match_personal_first_last_name_in.py +++ b/test/test_match_personal_first_last_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_nam_sor_counter_out.py b/test/test_nam_sor_counter_out.py index 325a841..f878daa 100644 --- a/test/test_nam_sor_counter_out.py +++ b/test/test_nam_sor_counter_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_name_geo_in.py b/test/test_name_geo_in.py index 477a217..8a8227f 100644 --- a/test/test_name_geo_in.py +++ b/test/test_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_name_in.py b/test/test_name_in.py index 9bcee68..28896bc 100644 --- a/test/test_name_in.py +++ b/test/test_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_name_match_candidate_out.py b/test/test_name_match_candidate_out.py index 9fa8e18..79a39bc 100644 --- a/test/test_name_match_candidate_out.py +++ b/test/test_name_match_candidate_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_name_match_candidates_out.py b/test/test_name_match_candidates_out.py index 72cd533..0d710aa 100644 --- a/test/test_name_match_candidates_out.py +++ b/test/test_name_match_candidates_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_name_matched_out.py b/test/test_name_matched_out.py index b5476f1..3740bda 100644 --- a/test/test_name_matched_out.py +++ b/test/test_name_matched_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_parsed_full_name_geo_in.py b/test/test_parsed_full_name_geo_in.py index d0c352f..9650dfc 100644 --- a/test/test_parsed_full_name_geo_in.py +++ b/test/test_parsed_full_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_parsed_full_name_in.py b/test/test_parsed_full_name_in.py index d44ac17..09af6ed 100644 --- a/test/test_parsed_full_name_in.py +++ b/test/test_parsed_full_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_api.py b/test/test_personal_api.py index 4b7b1d7..b86beae 100644 --- a/test/test_personal_api.py +++ b/test/test_personal_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_name_gendered_out.py b/test/test_personal_name_gendered_out.py index bd02169..958e1cb 100644 --- a/test/test_personal_name_gendered_out.py +++ b/test/test_personal_name_gendered_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_name_geo_in.py b/test/test_personal_name_geo_in.py index 3558478..48c9f4c 100644 --- a/test/test_personal_name_geo_in.py +++ b/test/test_personal_name_geo_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_name_geo_out.py b/test/test_personal_name_geo_out.py index 45a8141..422663c 100644 --- a/test/test_personal_name_geo_out.py +++ b/test/test_personal_name_geo_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_name_in.py b/test/test_personal_name_in.py index 17041fd..d71b3f8 100644 --- a/test/test_personal_name_in.py +++ b/test/test_personal_name_in.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_personal_name_parsed_out.py b/test/test_personal_name_parsed_out.py index fce6bf1..1aa667a 100644 --- a/test/test_personal_name_parsed_out.py +++ b/test/test_personal_name_parsed_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_proper_noun_categorized_out.py b/test/test_proper_noun_categorized_out.py index 34009ad..a934ea9 100644 --- a/test/test_proper_noun_categorized_out.py +++ b/test/test_proper_noun_categorized_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_romanized_name_out.py b/test/test_romanized_name_out.py index b3151a3..f0c5d37 100644 --- a/test/test_romanized_name_out.py +++ b/test/test_romanized_name_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_social_api.py b/test/test_social_api.py index 6c9403e..83f3674 100644 --- a/test/test_social_api.py +++ b/test/test_social_api.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_software_version_out.py b/test/test_software_version_out.py index 1523d73..864357c 100644 --- a/test/test_software_version_out.py +++ b/test/test_software_version_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_source_detailed_metrics_out.py b/test/test_source_detailed_metrics_out.py index a8b240c..9ed152a 100644 --- a/test/test_source_detailed_metrics_out.py +++ b/test/test_source_detailed_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_source_metrics_out.py b/test/test_source_metrics_out.py index c7b1358..80e81ff 100644 --- a/test/test_source_metrics_out.py +++ b/test/test_source_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_stripe_card_out.py b/test/test_stripe_card_out.py index 3ccf175..6d66f73 100644 --- a/test/test_stripe_card_out.py +++ b/test/test_stripe_card_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_stripe_customer_out.py b/test/test_stripe_customer_out.py index 50b0629..dbd7d96 100644 --- a/test/test_stripe_customer_out.py +++ b/test/test_stripe_customer_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_system_metrics_out.py b/test/test_system_metrics_out.py index ed774fd..0f7196f 100644 --- a/test/test_system_metrics_out.py +++ b/test/test_system_metrics_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_info_out.py b/test/test_user_info_out.py index 3a012c1..67d7c71 100644 --- a/test/test_user_info_out.py +++ b/test/test_user_info_out.py @@ -5,7 +5,7 @@ NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! # noqa: E501 - OpenAPI spec version: 2.0.12 + OpenAPI spec version: 2.0.13 Contact: contact@namsor.com Generated by: https://openapi-generator.tech """