Metadata-Version: 2.1
Name: groupy
Version: 0.5.2
Summary: Python client library for Grouper
Home-page: https://github.com/dropbox/groupy
Author: Gary M. Josack, Mark Smith, Herbert Ho, Luke Faraone, Russ Allbery
Author-email: UNKNOWN
License: Apache-2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: clowncar (>=0.2.0)
Requires-Dist: six (>=1.12.0)
Requires-Dist: tornado (>=5.1.1)
Requires-Dist: typing (>=3.6.4)

======
groupy
======

Description
-----------

Python client library for interfacing with the Grouper API server.

Quickstart
----------

Super basic...

.. code:: python

    from groupy.client import Groupy
    grclient = Groupy('127.0.0.1:8990')
    for user in grclient.users:
        print user
    for permission in grclient.users.get('zorkian'):
        print permission

Installation
------------

New versions will be updated to PyPI pretty regularly so it should be as easy
as:

.. code:: bash

    pip install groupy


