├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── alice_blue ├── __init__.py └── alice_blue.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/README.md -------------------------------------------------------------------------------- /alice_blue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/alice_blue/__init__.py -------------------------------------------------------------------------------- /alice_blue/alice_blue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/alice_blue/alice_blue.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography 2 | pytz 3 | requests 4 | websocket_client 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [bdist_wheel] 5 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnavelu/alice_blue/HEAD/setup.py --------------------------------------------------------------------------------