Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (24 loc) · 686 Bytes

README.rst

File metadata and controls

36 lines (24 loc) · 686 Bytes

groupy

Deprecation

The Grouper/Groupy projects have been deprecated. You may continue to use and maintain forks of the project, but the Dropbox team will no longer contribute to this repository.

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