☰
Login
Signup
Home
›
Python client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
13.8K
All Categories
0
Incidents
152
Node JS client
39
Go client
792
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
992
Java client
1.1K
API clients
402
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
May 2018
S_RAMESH
May 2018
sujith
Kiteconnect 3.7.0b10 not installing in mobile
S_RAMESH
April 2018
in
Python client
Kiteconnect 3.6 installed in mobile but 3.7 not getting installed.
Anybody using python kiteconnect 3.7 in mobile
sujith
April 2018
edited April 2018
Which app are you using for running python?
You can check the
pykiteconnect installation part once the dependecies have changed
.
S_RAMESH
May 2018
Sir I am using qpython app by qpython labs
sujith
May 2018
At the moment qpython doesn't support building python libraries from source. I am afraid you can't use pykiteconnect 3.7.0b10 on the mobile phone.
S_RAMESH
May 2018
Will I be able to use qypthon without upgrading to 3.7
S_RAMESH
May 2018
If so how long ,whether beyond 20 May I can use
sujith
May 2018
You will have to write your own python wrapper to use Kite Connect APIs.
S_RAMESH
May 2018
Curl for getting margins :
curl "
https://api.kite.trade/user/margins/equity?api_key=xxx&access_token=yyy
"
This works.
curl "
https://api.kite.trade/user/margins
" \
-H "X-Kite-Version: 3" \
-H 'Authorization: token api_key:access_token'
Does not work.
Says no connection adapter found.
Which one is correct .
sujith
May 2018
Kite Connect 3 expects authorization tokens in the header. The first URL mentioned above is old API format.
I just tried this and it seems to be working for me,
curl "
https://api.kite.trade/user/margins
" \
-H 'X-Kite-Version: 3' \
-H 'Authorization: token api_key:access_token'
S_RAMESH
May 2018
Sorry there was typing error . Now it works well.
This discussion has been closed.
You can check the pykiteconnect installation part once the dependecies have changed.
curl "https://api.kite.trade/user/margins/equity?api_key=xxx&access_token=yyy"
This works.
curl "https://api.kite.trade/user/margins" \
-H "X-Kite-Version: 3" \
-H 'Authorization: token api_key:access_token'
Does not work.
Says no connection adapter found.
Which one is correct .
I just tried this and it seems to be working for me,
curl "https://api.kite.trade/user/margins" \
-H 'X-Kite-Version: 3' \
-H 'Authorization: token api_key:access_token'