├── LICENSE ├── README.md ├── StockIDs ├── HNX.txt ├── HSX.txt └── UPC.txt ├── __pycache__ ├── parser.cpython-36.pyc ├── parser_message.cpython-36.pyc └── price.cpython-36.pyc ├── get_data_from_url.py ├── main.py ├── parser_message.py ├── parser_test.py ├── price.py ├── realtime.py ├── requirements.txt ├── test_BA.py ├── test_MI.py └── test_SP.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/README.md -------------------------------------------------------------------------------- /StockIDs/HNX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/StockIDs/HNX.txt -------------------------------------------------------------------------------- /StockIDs/HSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/StockIDs/HSX.txt -------------------------------------------------------------------------------- /StockIDs/UPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/StockIDs/UPC.txt -------------------------------------------------------------------------------- /__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/parser_message.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/__pycache__/parser_message.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/price.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/__pycache__/price.cpython-36.pyc -------------------------------------------------------------------------------- /get_data_from_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/get_data_from_url.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/main.py -------------------------------------------------------------------------------- /parser_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/parser_message.py -------------------------------------------------------------------------------- /parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/parser_test.py -------------------------------------------------------------------------------- /price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/price.py -------------------------------------------------------------------------------- /realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/realtime.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_BA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/test_BA.py -------------------------------------------------------------------------------- /test_MI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/test_MI.py -------------------------------------------------------------------------------- /test_SP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangnt2601/Real-time-data-vndirect/HEAD/test_SP.py --------------------------------------------------------------------------------