This API retrieve the information of all country names and codes
Project description
Getting started
This API retrieve the information of all country names and codes
How to Build
You must have Python 2 >=2.7.9
or Python 3 >=3.4
installed on your system to install and run this SDK. This SDK package depends on other Python packages like nose, jsonpickle etc.
These dependencies are defined in the requirements.txt
file that comes with the SDK.
To resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at https://pip.pypa.io/en/stable/installing/.
Python and PIP executables should be defined in your PATH. Open command prompt and type pip --version
.
This should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined.
- Using command line, navigate to the directory containing the generated files (including
requirements.txt
) for the SDK. - Run the command
pip install -r requirements.txt
. This should install all the required dependencies.
How to Use
The following section explains how to use the CountriesApi SDK package in a new project.
1. Open Project in an IDE
Open up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.
Click on Open
in PyCharm to browse to your generated SDK directory and then click OK
.
The project files will be displayed in the side bar as follows:
2. Add a new Test Project
Create a new directory by right clicking on the solution name as shown below:
Name the directory as "test"
Add a python file to this project with the name "testsdk"
Name it "testsdk"
In your python file you will be required to import the generated python library using the following code lines
from countries_api.countries_api_client import CountriesApiClient
After this you can write code to instantiate an API client object, get a controller object and make API calls. Sample code is given in the subsequent sections.
3. Run the Test Project
To run the file within your test project, right click on your Python file inside your Test project and click on Run
How to Test
You can test the generated SDK and the server with automatically generated test cases. unittest is used as the testing framework and nose is used as the test runner. You can run the tests as follows:
- From terminal/cmd navigate to the root directory of the SDK.
- Invoke
pip install -r test-requirements.txt
- Invoke
nosetests
Initialization
API client can be initialized as following.
client = CountriesApiClient()
Class Reference
List of Controllers
CountriesController
Get controller instance
An instance of the CountriesController
class can be accessed from the API Client.
countries_controller = client.countries
get_countries
This endpoint let user to access countries code and name.
def get_countries(self)
Example Usage
result = countries_controller.get_countries()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Countries API-1.0.tar.gz
.
File metadata
- Download URL: Countries API-1.0.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38d1977dcc0b7eb103e755a3d40cdd078aeaf665a9a0eb272f50ad2824eff250 |
|
MD5 | eab9d3d4c7dfc52777e413d6ed9ba7d3 |
|
BLAKE2b-256 | 07790d8f9d6e31f8418b6f324f827b77e7ba347e1c3385d44516ae4227b90884 |
Provenance
File details
Details for the file Countries_API-1.0-py3-none-any.whl
.
File metadata
- Download URL: Countries_API-1.0-py3-none-any.whl
- Upload date:
- Size: 26.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6885c028cb90c577f49e0bb4b5141466f69605a43506be148700a0757db0c6cf |
|
MD5 | a5bc261ce29d9d08d6b2b01385559ca1 |
|
BLAKE2b-256 | a6b6b2cdf368708dbdacb6f5c7dc8650faa0afa67938b80892c41f3d3e4f2c04 |