Jugaad trader implements reverse engineered API for Zerodha in python (hence the name Jugaad). With this library you can programatically execute trades, retrieve your order and trade books, holdings, margins among other things.
Documentation - https://marketsetup.in/documentation/jugaad-trader/
pip install jugaad-trader
$ jtrader zerodha startsession
User ID >: Zerodha User Id
Password >:
Pin >:
Logged in successfully
from jugaad_trader import Zerodha
kite = Zerodha()
# Set access token loads the stored session.
# Name chosen to keep it compatible with kiteconnect.
kite.set_access_token()
# Get profile
profile = kite.profile()
print(profile)
Refer this document how to contribute - https://github.com/jugaad-py/jugaad-trader/blob/master/contributing.md