Metadata-Version: 2.1
Name: apigee-python
Version: 0.0.2
Summary: Apigee python client.
Home-page: https://github.com/rubelw/apigee-python
Author: Will Rubel
Author-email: willrubel@gmail.com
License: UNKNOWN
Keywords: apigee,api,client
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: boto3 (>=1.4.3)
Requires-Dist: requests (>=2.18)
Requires-Dist: Click (>=6.7)
Requires-Dist: configparser (>=3.5.0)
Requires-Dist: future (>=0.16.0)
Requires-Dist: six (>=1.11.0)
Requires-Dist: pip

Apigee - Python
===============

### NOT TESTED YES, STILL DEVELOPING ###

|pypi| |build| |coverage| |license|

In this repository, you'll find all the information about integrating Apigee with Python.


What is Apigee?
===============

Apigee helps you to:

* Interact with the apigee edge api

Create a free Apigee Account
============================

1. Go to `Apigee`_ and click Sign Up.

Installation
============

You can install the apigee Python SDK using the following command.

.. code-block::

    pip install apigee-python

For python3, use the following command

.. code-block::

    pip3 install apigee-python


Management SDK Usage
====================

To use the management library you will need to instantiate an Apigee object 

    from apigee.v1.organizations import Apis

    org_name = 'myorg'
    username = 'xxx'
    password = 'xxx'

    client = Apis(org_name, username, password)

    results = client.get()
    print(results)


