Skip to content

Latest commit

 

History

History
89 lines (58 loc) · 2.2 KB

File metadata and controls

89 lines (58 loc) · 2.2 KB

swagger_client

No descripton provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1
  • Package version: 1.0.0
  • Build date: 2017-01-29T15:39:25.032+01:00
  • Build package: class io.swagger.codegen.languages.PythonClientCodegen

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

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import swagger_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import swagger_client

Getting Started

Please follow the installation procedure and then run the following:

import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.EntrypointApi
msg = swagger_client.Plus() # Plus | json serialization of {@link Plus}

try:
    # Count a result of plus operation
    api_response = api_instance.plus(msg)
    pprint(api_response)
except ApiException as e:
    print "Exception when calling EntrypointApi->plus: %s\n" % e

Documentation for API Endpoints

All URIs are relative to http://localhost/http://slc07ifc.us.oracle.com:8181/http://slc06xlq.us.oracle.com:7103/paas/bdcs/

Class Method HTTP request Description
EntrypointApi plus POST /entry-point/plus Count a result of plus operation

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author