Metadata-Version: 2.1
Name: gracie-feeds-api
Version: 2.2.1574187601
Summary: Gracie Feeds API python wrapper
Home-page: https://gracie-feeds-api-documentation.readthedocs.io
Author: Darshan Gencarelle
Author-email: darshan.gencarelle@toposlabs.com
License: commercial
Download-URL: https://pypi.org/project/gracie-feeds-api/
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: future
Requires-Dist: requests

*****************************
Gracie APIs Wrapper Overview
*****************************

This package provides a simple wrapper around the Toposlabs Gracie API platform.


Sample usage
############
.. code:: python

    import gracie_feeds_api as GracieFeedsAPI

    def gracie_connect():
        login_name = <login name>
        login_password = <login password>
        host = <host or ip of server>
        port = 443

        e_api = GracieFeedsAPI(host, port, login_name, login_password)

        # print currently logged in user information
        print(e_api.call_api('usersController', 'whoAmI'))

