# groupy **Repository Path**: mirrors_dropbox/groupy ## Basic Information - **Project Name**: groupy - **Description**: Grouper Python Client Library - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ====== 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... .. 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 ------------ To pull the latest version from PyPI: .. code:: bash pip install groupy