Registry / http-networking / growwapi

growwapi

JSON →
library1.5.0pypypi✓ verified 79d ago

The foundational SDK for accessing Groww APIs and listening to live data streams. This package provides the core functionalities required to interact with Groww's trading platform. Current version 1.5.0, monthly releases.

pip install growwapi
INSTALL
IMPORT
SIG · GROWWAPI
G
growwapi
http-networkingpythonv1.5.0
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.

GrowwAPI
from growwapi import GrowwAPI
from growwapi import GrowwSDK
GrowwFeed
from growwapi import GrowwFeed
groww
from growwapi import groww

Initialize SDK with environment variables and fetch user profile.

from growwapi import GrowwSDK sdk = GrowwSDK(access_token=os.environ.get('GROWW_ACCESS_TOKEN', ''), api_key=os.environ.get('GROWW_API_KEY', '')) # Fetch user profile profile = sdk.get_profile() print(profile)
Debug
Known issues
breakingIn v1.5.0, the `get_profile` method now requires authentication token; previously it worked without.
fix
Ensure you set `access_token` and `api_key` when initializing GrowwSDK.
affects: >=1.5.0
deprecatedThe `get_orders` method is deprecated in favor of `get_order_history`.
fix
Use `sdk.get_order_history()` instead.
affects: >=1.4.0
gotchaRate limiting: API allows max 10 requests per second per IP. Exceeding results in 429 errors.
fix
Implement request throttling with exponential backoff.
affects: all
Upgrade
Version history
1.5.0latest on PyPI · released Dec 6, 2025
Audit
Dependencies
requestsrequiredHTTP client for API calls
websocket-clientrequiredWebSocket connection for live streams
Agent activity
28 hits · last 30 days
node
26
OpenAI (training)
1
Resources
growwapi — pip install growwapi · libregistry