Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ranjanrak/faqgenerator
Simple FAQ generator for Zerodha Kite connect Forum
https://github.com/ranjanrak/faqgenerator
Last synced: 2 days ago
JSON representation
Simple FAQ generator for Zerodha Kite connect Forum
- Host: GitHub
- URL: https://github.com/ranjanrak/faqgenerator
- Owner: ranjanrak
- License: mit
- Created: 2020-10-26T05:04:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-30T03:49:33.000Z (about 4 years ago)
- Last Synced: 2023-03-08T18:25:54.796Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FaqGenerator
Simple FAQ generator for Kite connect Forum. We use this package periodically to look at latest frequently asked question on [Connect API Public Forum](https://kite.trade/forum/) and update [our FAQ page accordingly](https://kite.trade/forum/discussion/8019/faqs-on-pykiteconnect-specific-to-python-client#latest).
It accepts below two field from user:
`pages` -- number of recent pages to look for questions to generate FAQs
`match_factor` -- % text matching for each question# Installation
```
git clone https://github.com/ranjanrak/FaqGenerator.git
```
# Usage
```
from forum_faq import FaqGeneratorforum_input = FaqGenerator(pages=3, match_factor=80)
faq_list = forum_input.question_match()
```
#### Response
Output in descending order by sub-list size
```
[['Option Chain Data', 'I wana option chain via zerodha api', 'Historical Option Chain 10 min interval data from where we get']
['ERROR IN ORDER', 'Placing CO order failed with error', 'if condition error while placing order']
['Websocket API issue', 'Is there anyone who is using Azure data analytics service for websocket api?', 'Issue with Websockets API']
['Stoploss order - InputException', 'InputException in API call kiteConnect.placeOrder for a VARIETY_CO order']
['Renew the APP only to get Historical Data', 'Historical API']
['API key, Access token not working', 'incorrect api key or access token']
['Invalid API key or access token', 'Invalid API Key or Access Token - Historical Data']
['raise error.ReactorNotRestartable()', 'WEBSOCKET STREAMING ERROR - ReactorNotRestartable']
['Limit Order placing', 'Order was placed outside of trading hours (adapter off). Try placing an AMO']
['Historical api returning none', 'Historical data returning null']
['ERROR:kiteconnect.ticker:Connection error: 1006', 'ERROR:kiteconnect.ticker:Connection closed: 1006 - connection was closed uncleanly (WebSocket connec']
['Login URL {"status":"error","message":"The user is not enabled on the app.","data":null,"error_type', 'Error: the user is not enabled on the app.']
['Cancelling Historical Data API', 'Historical data Api Limit']
['Historical Data for Futures', 'Python Client is failing to get CONTINUOUS historical data for instrument']
['Kite Connect WebSocket Connection', 'Connection error Websocket']]
```