├── README.md ├── api_helper.py ├── dist └── NorenRestApi-0.0.29-py3-none-any.whl ├── example_market.py ├── example_orders.py ├── requirements.txt ├── test_api.py ├── tests ├── option_chain.xlsx ├── test_basket_order.py ├── test_optionchain_excel.py ├── test_place_order.py ├── test_product_convertion.py ├── test_tpseries.py ├── test_watchlist.py └── test_websocket_feed.py └── token_generator ├── gettoken.py ├── requirements.txt └── setup.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/README.md -------------------------------------------------------------------------------- /api_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/api_helper.py -------------------------------------------------------------------------------- /dist/NorenRestApi-0.0.29-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/dist/NorenRestApi-0.0.29-py3-none-any.whl -------------------------------------------------------------------------------- /example_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/example_market.py -------------------------------------------------------------------------------- /example_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/example_orders.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/test_api.py -------------------------------------------------------------------------------- /tests/option_chain.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/option_chain.xlsx -------------------------------------------------------------------------------- /tests/test_basket_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_basket_order.py -------------------------------------------------------------------------------- /tests/test_optionchain_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_optionchain_excel.py -------------------------------------------------------------------------------- /tests/test_place_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_place_order.py -------------------------------------------------------------------------------- /tests/test_product_convertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_product_convertion.py -------------------------------------------------------------------------------- /tests/test_tpseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_tpseries.py -------------------------------------------------------------------------------- /tests/test_watchlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_watchlist.py -------------------------------------------------------------------------------- /tests/test_websocket_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/tests/test_websocket_feed.py -------------------------------------------------------------------------------- /token_generator/gettoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/token_generator/gettoken.py -------------------------------------------------------------------------------- /token_generator/requirements.txt: -------------------------------------------------------------------------------- 1 | # requests 2 | flask -------------------------------------------------------------------------------- /token_generator/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flattrade/pythonAPI/HEAD/token_generator/setup.md --------------------------------------------------------------------------------