Metadata-Version: 2.1
Name: steelconnection
Version: 1.1.2
Summary: Simplify access to the Riverbed SteelConnect REST API.
Home-page: UNKNOWN
Author: Greg Mueller
Author-email: steelconnection@grelleum.com
License: MIT
Project-URL: Documentation, https://steelconnection.readthedocs.io/
Project-URL: Source, https://github.com/grelleum/SteelConnection
Description: Welcome to SteelConnection!
        ===========================
        Simplify access to the Riverbed SteelConnect REST API.
        
        .. code::
        
                  ______          __
                 / __/ /____ ___ / /
             ____\ \/ __/ -_) -_) /      __  _
            / _____/\__/\__/\__/_/_ ____/ /_(_)__  ___
           / /__/ _ \/ _ \/ _ \/ -_) __/ __/ / _ \/ _ \
           \___/\___/_//_/_//_/\__/\__/\__/_/\___/_//_/
        
           version 1.1.2
           pip install steelconnection
        
        -  Always crafts a correct URL based on the resource provided.
        -  Accepts and returns native Python data: no need to convert to/from JSON.
        -  Provides convinience methods for object lookup and image download.
        -  Reuses TCP connection for subsequent API requests.
        
        ^^^^^^^
        
        | **Supports:**
        | Python 2.7, 3.4, 3.5, 3.6, 3.7
        
        ^^^^^^^
        
        **With** SteelConnection, a request to get a list of all organizations
        in the realm would look like this:
        
        .. code:: python
        
           orgs = sc.get('orgs')
        
        **Without** SteelConnection, the same request would look like this:
        
        .. code:: python
        
           response = requests.get(
               'https://REALM.riverbed.cc/api/scm.config/1.0/orgs',
               auth=(username, password)
           )
           orgs = response.json()['items']
        
        ^^^^^^^
        
        Documentation
        -------------
        
        | Full Documentation is available on *Read the Docs*.
        | https://steelconnection.readthedocs.io/
        
Keywords: SteelConnect,REST,API,Riverbed,Grelleum
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/x-rst
