Registry / http-networking / springserve

springserve

JSON →
library0.8.14pypypiunverified

A Python library for interacting with the SpringServe API (console.springserve.com). Current version 0.8.14. Used for programmatic management of supply-side platform operations. Release cadence is irregular, with last update in 2021.

pip install springserve
INSTALL
IMPORT
SIG · SPRINGSERVE
S
springserve
http-networkingpythonv0.8.14
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
✓ from springserve.client import Client
✗ from springserve import Client
Common mistake: Client is in the client submodule, not top-level.
SpringServe
✓ from springserve import SpringServe
Top-level class, but rarely used directly; prefer Client.

Initialize a Client with your SpringServe API credentials and list accounts.

from springserve.client import Client client = Client( username='your_username', password='your_password' ) # Test connection by fetching accounts accounts = client.accounts.list() print(accounts)
Debug
Known issues
gotchaThe library uses 'requests' internally but does not handle token refresh automatically. Sessions can expire after 24 hours.
fix
Reinitialize the Client for long-running scripts or implement manual token refresh.
affects: all
gotchaMany endpoints return paginated results. The library does not automatically handle pagination. You must iterate over pages manually.
fix
Check response for a 'next' or 'page' parameter and loop accordingly.
affects: all
deprecatedPython 2 support is deprecated. Python 3.6+ is recommended.
fix
Use Python 3.6 or higher.
affects: <=0.8.14
Upgrade
Version history
0.8.14latest on PyPI · released Mar 17, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
12
OpenAI (training)
1
Resources
springserve — pip install springserve · libregistry