Skip to main content

Python client library for Swagger Petstore API

Project description

Getting started

This is a sample server Petstore server. You can find out more about Swagger at http://swagger.io or on irc.freenode.net, #swagger. For this sample, you can use the api key special-key to test the authorization filters.

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.

Building SDK - Step 1

How to Use

The following section explains how to use the Apimaticswaggerpetstore 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.

Open project in PyCharm - Step 1

Click on Open in PyCharm to browse to your generated SDK directory and then click OK.

Open project in PyCharm - Step 2

The project files will be displayed in the side bar as follows:

Open project in PyCharm - Step 3

2. Add a new Test Project

Create a new directory by right clicking on the solution name as shown below:

Add a new project in PyCharm - Step 1

Name the directory as "test"

Add a new project in PyCharm - Step 2

Add a python file to this project with the name "testsdk"

Add a new project in PyCharm - Step 3

Name it "testsdk"

Add a new project in PyCharm - Step 4

In your python file you will be required to import the generated python library using the following code lines

from apimaticswaggerpetstore.apimaticswaggerpetstore_client import ApimaticswaggerpetstoreClient

Add a new project in PyCharm - Step 4

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

Run Test Project - Step 1

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:

  1. From terminal/cmd navigate to the root directory of the SDK.
  2. Invoke pip install -r test-requirements.txt
  3. Invoke nosetests

Initialization

Authentication

In order to setup authentication and initialization of the API client, you need the following information.

Parameter Description
o_auth_client_id OAuth 2 Client ID
o_auth_redirect_uri OAuth 2 Redirection endpoint or Callback Uri

API client can be initialized as following.

# Configuration parameters and credentials
o_auth_client_id = 'o_auth_client_id' # OAuth 2 Client ID
o_auth_redirect_uri = 'o_auth_redirect_uri' # OAuth 2 Redirection endpoint or Callback Uri

client = ApimaticswaggerpetstoreClient(o_auth_client_id, o_auth_redirect_uri)

Class Reference

List of Controllers

Class: PetController

Get controller instance

An instance of the PetController class can be accessed from the API Client.

 pet_controller = client.pet

Method: upload_file

uploads an image

def upload_file(self,
                    pet_id,
                    additional_metadata=None,
                    file=None)

Parameters

Parameter Tags Description
petId Required ID of pet to update
additionalMetadata Optional Additional data to pass to server
file Optional file to upload

Example Usage

pet_id = 130
additional_metadata = 'additionalMetadata'
file = open("pathtofile", 'rb')

result = pet_controller.upload_file(pet_id, additional_metadata, file)

Method: add_pet

Add a new pet to the store

def add_pet(self,
                body)

Parameters

Parameter Tags Description
body Required Pet object that needs to be added to the store

Example Usage

body = Pet()

pet_controller.add_pet(body)

Errors

Error Code Error Description
405 Invalid input

Method: update_pet

Update an existing pet

def update_pet(self,
                   body)

Parameters

Parameter Tags Description
body Required Pet object that needs to be added to the store

Example Usage

body = Pet()

pet_controller.update_pet(body)

Errors

Error Code Error Description
400 Invalid ID supplied
404 Pet not found
405 Validation exception

Method: find_pets_by_status

Multiple status values can be provided with comma separated strings

def find_pets_by_status(self,
                            status)

Parameters

Parameter Tags Description
status Required Collection Status values that need to be considered for filter

Example Usage

status = [Status2Enum.AVAILABLE]

result = pet_controller.find_pets_by_status(status)

Errors

Error Code Error Description
400 Invalid status value

Method: find_pets_by_tags

Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.

def find_pets_by_tags(self,
                          tags)

Parameters

Parameter Tags Description
tags Required Collection Tags to filter by

Example Usage

tags = ['tags']

result = pet_controller.find_pets_by_tags(tags)

Errors

Error Code Error Description
400 Invalid tag value

Method: get_pet_by_id

Returns a single pet

def get_pet_by_id(self,
                      pet_id)

Parameters

Parameter Tags Description
petId Required ID of pet to return

Example Usage

pet_id = 130

result = pet_controller.get_pet_by_id(pet_id)

Errors

Error Code Error Description
400 Invalid ID supplied
404 Pet not found

Method: update_pet_with_form

Updates a pet in the store with form data

def update_pet_with_form(self,
                             pet_id,
                             name=None,
                             status=None)

Parameters

Parameter Tags Description
petId Required ID of pet that needs to be updated
name Optional Updated name of the pet
status Optional Updated status of the pet

Example Usage

pet_id = 130
name = 'name'
status = 'status'

pet_controller.update_pet_with_form(pet_id, name, status)

Errors

Error Code Error Description
405 Invalid input

Method: delete_pet

Deletes a pet

def delete_pet(self,
                   pet_id,
                   api_key=None)

Parameters

Parameter Tags Description
petId Required Pet id to delete
apiKey Optional TODO: Add a parameter description

Example Usage

pet_id = 130
api_key = 'api_key'

pet_controller.delete_pet(pet_id, api_key)

Errors

Error Code Error Description
400 Invalid ID supplied
404 Pet not found

Back to List of Controllers

Class: StoreController

Get controller instance

An instance of the StoreController class can be accessed from the API Client.

 store_controller = client.store

Method: create_place_order

Place an order for a pet

def create_place_order(self,
                           body)

Parameters

Parameter Tags Description
body Required order placed for purchasing the pet

Example Usage

body = Order()

result = store_controller.create_place_order(body)

Errors

Error Code Error Description
400 Invalid Order

Method: get_order_by_id

For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions

def get_order_by_id(self,
                        order_id)

Parameters

Parameter Tags Description
orderId Required ID of pet that needs to be fetched

Example Usage

order_id = 130

result = store_controller.get_order_by_id(order_id)

Errors

Error Code Error Description
400 Invalid ID supplied
404 Order not found

Method: delete_order

For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors

def delete_order(self,
                     order_id)

Parameters

Parameter Tags Description
orderId Required ID of the order that needs to be deleted

Example Usage

order_id = 130

store_controller.delete_order(order_id)

Errors

Error Code Error Description
400 Invalid ID supplied
404 Order not found

Method: get_inventory

Returns a map of status codes to quantities

def get_inventory(self)

Example Usage

result = store_controller.get_inventory()

Back to List of Controllers

Class: UserController

Get controller instance

An instance of the UserController class can be accessed from the API Client.

 user_controller = client.user

Method: create_users_with_array_input

Creates list of users with given input array

def create_users_with_array_input(self,
                                      body)

Parameters

Parameter Tags Description
body Required Collection List of user object

Example Usage

body = [User()]

user_controller.create_users_with_array_input(body)

Errors

Error Code Error Description
0 successful operation

Method: create_users_with_list_input

Creates list of users with given input array

def create_users_with_list_input(self,
                                     body)

Parameters

Parameter Tags Description
body Required Collection List of user object

Example Usage

body = [User()]

user_controller.create_users_with_list_input(body)

Errors

Error Code Error Description
0 successful operation

Method: get_user_by_name

Get user by user name

def get_user_by_name(self,
                         username)

Parameters

Parameter Tags Description
username Required The name that needs to be fetched. Use user1 for testing.

Example Usage

username = 'username'

result = user_controller.get_user_by_name(username)

Errors

Error Code Error Description
400 Invalid username supplied
404 User not found

Method: update_user

This can only be done by the logged in user.

def update_user(self,
                    username,
                    body)

Parameters

Parameter Tags Description
username Required name that need to be updated
body Required Updated user object

Example Usage

username = 'username'
body = User()

user_controller.update_user(username, body)

Errors

Error Code Error Description
400 Invalid user supplied
404 User not found

Method: delete_user

This can only be done by the logged in user.

def delete_user(self,
                    username)

Parameters

Parameter Tags Description
username Required The name that needs to be deleted

Example Usage

username = 'username'

user_controller.delete_user(username)

Errors

Error Code Error Description
400 Invalid username supplied
404 User not found

Method: get_login_user

Logs user into the system

def get_login_user(self,
                       username,
                       password)

Parameters

Parameter Tags Description
username Required The user name for login
password Required The password for login in clear text

Example Usage

username = 'username'
password = 'password'

result = user_controller.get_login_user(username, password)

Errors

Error Code Error Description
400 Invalid username/password supplied

Method: get_logout_user

Logs out current logged in user session

def get_logout_user(self)

Example Usage

user_controller.get_logout_user()

Errors

Error Code Error Description
0 successful operation

Method: create_user

This can only be done by the logged in user.

def create_user(self,
                    body)

Parameters

Parameter Tags Description
body Required Created user object

Example Usage

body = User()

user_controller.create_user(body)

Errors

Error Code Error Description
0 successful operation

Back to List of Controllers

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apimaticswaggerpetstore-1.0.0.tar.gz (22.5 kB view hashes)

Uploaded Source

Built Distribution

apimaticswaggerpetstore-1.0.0-py3-none-any.whl (33.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page