Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 484 Bytes

README.rst

File metadata and controls

31 lines (21 loc) · 484 Bytes

groupy

Description

Python client library for interfacing with the Grouper API server.

Quickstart

Super basic...

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

To pull the latest version from PyPI:

pip install groupy