Get Request token from Python script after manually logging in to Zerodha.

ccc
Can any one share the code snippet to get the request token from the url please. I seen posts saying exchange mandates users to manually login at least once in a day. So here is what i want to do.
* Manually login into Zerodha mobile app (or i can do web if that is mandatory for getting request token). This i will do before trading starts in the morning probably after access token is refreshes (after 8:30)
* During the trading hour, I want my Python script to automatically get me the request token.
* I get the access token from request token and use it for the day

I have tried the following code,
url = kite.login_url()
response = requests.request('GET', url)
The response does not contain any request token.

Can some one please help me on this. Thanks in advance.
Sign In or Register to comment.