Groww adapter for BrokerKit.
Project description
brokerkit-groww
BrokerKit's Groww adapter — wraps the official growwapi SDK behind BrokerKit's broker-agnostic interfaces (auth, instruments, orders, portfolio, market data, historical candles, streaming).
You write strategy code against brokerkit-core's types; this package is what makes "groww" work with create_broker(...).
Install
pip install brokerkit-core brokerkit-groww
Prerequisites (Groww dashboard)
- TOTP credentials — Groww's API auth is TOTP-only. Get your
api_key+totp_secretfrom the Groww API dashboard. - Static IP registration ("Add static IP" on the dashboard) — required by SEBI rules for order placement. Without it,
orders.place_order()fails with an IP-rejection error (reads — holdings, instruments — still work fine). - Trading API subscription (₹499/month + taxes) — required for market data (quotes, LTP, OHLC, historical candles) and streaming. Without it, those calls raise
BrokerKitError("Access forbidden...").
Auth, instrument lookup, and portfolio reads work without either of the above.
Quick start
import asyncio
import os
from brokerkit import Exchange, Segment, create_broker
async def main():
broker = await create_broker(
"groww",
totp_key=os.environ["GROWW_API_KEY"],
totp_secret=os.environ["GROWW_TOTP_SECRET"],
)
instruments = await broker.instruments.fetch_instruments()
reliance = next(
i for i in instruments
if i.symbol == "RELIANCE" and i.exchange == Exchange.NSE and i.segment == Segment.CASH
)
quote = await broker.market.get_quote(reliance)
print("LTP:", quote.last_price)
holdings = await broker.portfolio.holdings()
print("Holdings:", holdings)
await broker.close()
asyncio.run(main())
Using create_broker("groww", ...) (rather than importing GrowwBroker directly) keeps your strategy code broker-agnostic — swapping to another broker later is a one-line change. Direct import (from brokerkit_groww import GrowwBroker; await GrowwBroker.create(...)) works identically if you don't need that.
A fuller runnable version lives in examples/basic/main.py.
What you get on broker
Every provider below is an instance of the corresponding ABC from brokerkit-core (brokerkit.interfaces), so the same calls work against any future broker adapter.
broker.instruments — InstrumentProvider
instruments = await broker.instruments.fetch_instruments() # list[Instrument]
Downloads and normalizes Groww's full instrument master (~145k rows) on every call — no caching in the framework. Filter/search app-side.
broker.orders — OrderProvider
from decimal import Decimal
from brokerkit import OrderRequest, OrderType, Product, TransactionType
order = await broker.orders.place_order(OrderRequest(
instrument=reliance,
transaction_type=TransactionType.BUY,
order_type=OrderType.LIMIT,
quantity=1,
product=Product.CNC,
price=Decimal("2500"),
))
await broker.orders.modify(order.order_id, reliance.segment, price=Decimal("2510"))
await broker.orders.cancel(order.order_id, reliance.segment)
await broker.orders.get_order(order.order_id, reliance.segment)
await broker.orders.list_orders()
No client-side pre-validation (freeze qty, buy/sell allowed, etc.) — Groww rejects invalid orders and the rejection reason comes back as Order.status_message.
broker.portfolio — PortfolioProvider
await broker.portfolio.holdings() # list[Holding] — demat-level, ISIN-identified
await broker.portfolio.positions() # list[Position] — per trade, today's book
broker.market — MarketDataProvider
await broker.market.get_quote(reliance) # Quote — LTP, OHLC, depth, circuits
await broker.market.get_ltp([reliance, infy, tcs]) # dict[symbol, Decimal]
await broker.market.get_ohlc([reliance, infy]) # dict[symbol, Ohlc]
get_ltp/get_ohlc batch and chunk internally (Groww allows up to 50 symbols per call, one segment at a time) — pass as many instruments as you want.
from datetime import date
chain = await broker.market.get_option_chain(nifty_index, expiry=date(2026, 7, 21), strike_count=10)
print(chain.underlying_ltp)
for s in chain.strikes:
print(s.strike, s.call.ltp if s.call else None, s.call.greeks.delta if s.call and s.call.greeks else None)
expiry is required — Groww's endpoint has no "nearest expiry" convenience and no strike-count filter either (strike_count is accepted for interface parity with Fyers but ignored — Groww always returns the full chain). Unlike Fyers, Groww's greeks include rho — but Groww's contracts have no bid_price/ask_price at all (confirmed absent via both the official docs' field list and a third-party typed SDK, not guessed — always None here; Fyers' do have them, useful for a liquidity check before trading). Not yet live-tested — blocked by the same paid live-data subscription that blocks get_quote/get_ltp/get_ohlc/candles; mapper unit-tested against a real captured response shape (cross-verified via a third-party typed Go SDK, since Groww's own docs don't show the exact JSON nesting).
broker.historical — HistoricalDataProvider
from datetime import datetime, timedelta
candles = await broker.historical.get_candles(
reliance,
start=datetime.now() - timedelta(days=7),
end=datetime.now(),
interval_minutes=1440, # daily
)
broker.streaming — StreamingProvider
async def on_tick(tick):
print(tick.symbol, tick.ltp)
await broker.streaming.subscribe_ltp([reliance], on_tick)
# ... later
await broker.streaming.unsubscribe_ltp([reliance])
await broker.streaming.close()
Callback can be sync or async. Requires instrument.exchange_token to be set (comes from fetch_instruments()).
Auth & token lifetime
Groww's TOTP flow has three layers, easy to mix up:
- TOTP secret (
totp_secret) — never expires. Used to generate a fresh 6-digit code every 30 seconds. - TOTP code — lives 30 seconds, but only matters at login; it's consumed once to fetch the access token and then discarded.
- Access token — the thing that actually authenticates every API call. Expires daily at 6 AM IST.
You don't need to think about any of this during normal use: GrowwBroker runs a background refresh loop (started in create(), stopped in close()) that sleeps until the token's known 6 AM IST expiry, re-logs in, and swaps the token in place — every provider (orders, portfolio, market, ...) picks it up automatically since they all share one underlying client. A long-running bot survives across days without manual re-auth. If a refresh attempt fails (network blip), it retries after 60s rather than dying silently.
Errors
Every growwapi exception is translated into a brokerkit exception before it reaches your code — you never need to catch growwapi.groww.exceptions.* directly:
from brokerkit import BrokerKitError, OrderError, StreamingError
try:
await broker.orders.place_order(request)
except OrderError as e:
print("order failed:", e)
Multiple accounts
Each GrowwBroker instance owns its own client and providers, so multiple accounts (Groww or mixed with future brokers) run independently via BrokerManager:
from brokerkit import BrokerManager
manager = BrokerManager()
await manager.add("primary", "groww", totp_key=k1, totp_secret=s1)
await manager.add("secondary", "groww", totp_key=k2, totp_secret=s2)
await manager["primary"].orders.place_order(request)
await manager.close_all()
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 brokerkit_groww-1.0.2.tar.gz.
File metadata
- Download URL: brokerkit_groww-1.0.2.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84c1d4f9bfd4806abc0d30f465d32ce285e443117c5f502d66cad883c0788dca
|
|
| MD5 |
d0bfd95c2437e598292b39fb2fd61553
|
|
| BLAKE2b-256 |
1bbe1d10e12befa6a08eb69389471d2a2452a327222b064e5b86473d68271b89
|
File details
Details for the file brokerkit_groww-1.0.2-py3-none-any.whl.
File metadata
- Download URL: brokerkit_groww-1.0.2-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa4a09a2ff3357a5321fc12bf62645c58599fec369e2168814e8f067da96593
|
|
| MD5 |
424ac8cb5d32c35fb6d0ce962d951086
|
|
| BLAKE2b-256 |
2eb8c071fa67bd81a1b4186049c0822e1e7da06cd21dcbb16e7c4b18e91e5c1d
|