Metadata-Version: 2.1
Name: apigee-python
Version: 0.0.6
Summary: Apigee python client.
Home-page: https://github.com/rubelw/apigee-python
Author: Will Rubel
Author-email: willrubel@gmail.com
License: UNKNOWN
Description: Apigee - Python
        ===============
        
        
        |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_python.v1.organizations import Apis
        
            org_name = 'myorg'
            username = 'xxx'
            password = 'xxx'
        
            client = Apis(org_name, username, password)
            
            results = client.get()
            print(results)
        
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
