Check a Country’s EU Membership in Python

Cloudmersive
2 min readDec 22, 2020

--

In international business, it is important to know where your partners and clients are, as rules may differ from location to location. The European Union, for example, has strict guidelines for information security that may affect how you approach client information. The following API will check and validate a country’s EU membership, instantly.

Run this command to install the SDK:

pip install cloudmersive-validate-api-client

Then, you can call the function:

from __future__ import print_function
import time
import cloudmersive_validate_api_client
from cloudmersive_validate_api_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: Apikey
configuration = cloudmersive_validate_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = cloudmersive_validate_api_client.AddressApi(cloudmersive_validate_api_client.ApiClient(configuration))
input = cloudmersive_validate_api_client.ValidateCountryRequest() # ValidateCountryRequest | Input request
try:
# Check if a country is a member of the European Union (EU)
api_response = api_instance.address_check_eu_membership(input)
pprint(api_response)
except ApiException as e:
print("Exception when calling AddressApi->address_check_eu_membership: %s\n" % e)

This will return whether the validation was successful, the country name and ISO, FIPS, and three letter codes, as well as whether is it an EU member, the time zones within the country, the ISO currency code, the currency symbol, the currency name in English, and the region and sub-region. You can retrieve the API Key from the Cloudmersive website at no cost and with no commitment. This will provide you with 800 monthly calls across our library of APIs.

--

--

Cloudmersive
Cloudmersive

Written by Cloudmersive

There’s an API for that. Cloudmersive is a leader in Highly Scalable Cloud APIs.

No responses yet