Python SDK for the GrowPanel subscription analytics REST API
Project description
growpanel (Python)
Official Python SDK for the GrowPanel subscription analytics REST API.
pip install growpanel
from growpanel import GrowPanel
gp = GrowPanel(api_key="gp_...")
summary = gp.reports.get_summary()
print(summary.summary.mrr_current)
mrr = gp.reports.get_mrr(date="20260101-20260531", interval="month")
for period in mrr.result:
print(period.date, period.total_mrr)
Auth
Issue a key in app.growpanel.io → Account → API keys. Pass it as api_key= when constructing the client; it's sent as Authorization: Bearer <key> on every request.
Surfaces
The SDK groups operations by API area, mirroring the interactive docs:
gp.reports.*— MRR, leads, cohorts, cashflow, retention, churngp.customers.*— list + detail (analytics view)gp.plans.*— list plansgp.plan_groups.*,gp.segments.*,gp.data_sources.*,gp.data_customers.*,gp.data_invoices.*,gp.data_plans.*— data management with full CRUDgp.profile.*,gp.notifications.*,gp.webhooks.*— account & integrations
For anything not exposed as a named method, gp.raw is the generated module tree — every endpoint in the OpenAPI spec is reachable from there.
Generating from the live spec
pip install -e ".[dev]"
openapi-python-client generate \
--url https://api-dev.growpanel.io/openapi.json \
--config openapi-python-client.config.yaml \
--overwrite
Output lands in src/growpanel/_generated/. In CI, this runs automatically on every API change.
Errors
from growpanel import GrowPanel, GrowPanelError
gp = GrowPanel(api_key="...")
try:
gp.customers.detail(id="cus_doesnotexist")
except GrowPanelError as err:
if err.status == 404:
... # handle not-found
raise
Interactive docs
The full reference (with try-it-out) lives at api.growpanel.io/docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file growpanel-0.1.7.tar.gz.
File metadata
- Download URL: growpanel-0.1.7.tar.gz
- Upload date:
- Size: 111.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d064590e5ff0c40f2ba68bd2eab6973a53066b28c6ac7e756749d6edd211b20
|
|
| MD5 |
a602c8484aab995106a001863dda8357
|
|
| BLAKE2b-256 |
6fe83f91171fad599424517d351250a3b1123a197829210892a71cd1cb678092
|
File details
Details for the file growpanel-0.1.7-py3-none-any.whl.
File metadata
- Download URL: growpanel-0.1.7-py3-none-any.whl
- Upload date:
- Size: 526.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1948ca61e853cac93508eeaa99b013a10e1cf536998c3ddc26a89809c07abf6
|
|
| MD5 |
f9a37aa08323bb0155717207ad0fac00
|
|
| BLAKE2b-256 |
afdd2a4feaa3638dc4173378fd0f16ada6f4dbe7aedc79bd2b05fbb47a032ca5
|