├── .coveralls.yml ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── _static │ └── .gitkeep ├── authors.rst ├── conf.py ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── extras ├── coverage-report.sh ├── qps-bench-server.py ├── qpsclient.py ├── scrapy.1 ├── scrapy_bash_completion └── scrapy_zsh_completion ├── mootdx ├── __init__.py ├── __main__.py ├── affairs.py ├── cmdline.py ├── quotes.py ├── reader.py ├── utils.py └── verify.py ├── pytest.ini ├── requirements.in ├── requirements.txt ├── sample ├── basic_affairs.py ├── basic_quotes.py └── basic_reader.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ └── vipdoc │ │ └── sh │ │ ├── fzline │ │ └── sh600036.lc5 │ │ ├── lday │ │ └── sh600036.day │ │ └── minline │ │ └── sh600036.lc1 ├── test_affairs.py ├── test_quotes.py └── test_reader.py └── tox.ini /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: YhXdk0kMjz10IX5a7RDz70l9Mc9NhUObD -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /extras/coverage-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/coverage-report.sh -------------------------------------------------------------------------------- /extras/qps-bench-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/qps-bench-server.py -------------------------------------------------------------------------------- /extras/qpsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/qpsclient.py -------------------------------------------------------------------------------- /extras/scrapy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/scrapy.1 -------------------------------------------------------------------------------- /extras/scrapy_bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/scrapy_bash_completion -------------------------------------------------------------------------------- /extras/scrapy_zsh_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/extras/scrapy_zsh_completion -------------------------------------------------------------------------------- /mootdx/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = '0.2.4' 3 | -------------------------------------------------------------------------------- /mootdx/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/__main__.py -------------------------------------------------------------------------------- /mootdx/affairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/affairs.py -------------------------------------------------------------------------------- /mootdx/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/cmdline.py -------------------------------------------------------------------------------- /mootdx/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/quotes.py -------------------------------------------------------------------------------- /mootdx/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/reader.py -------------------------------------------------------------------------------- /mootdx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/utils.py -------------------------------------------------------------------------------- /mootdx/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/mootdx/verify.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | pytdx 2 | click 3 | pandas 4 | prettytable 5 | coloredlogs -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample/basic_affairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/sample/basic_affairs.py -------------------------------------------------------------------------------- /sample/basic_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/sample/basic_quotes.py -------------------------------------------------------------------------------- /sample/basic_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/sample/basic_reader.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/vipdoc/sh/fzline/sh600036.lc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/data/vipdoc/sh/fzline/sh600036.lc5 -------------------------------------------------------------------------------- /tests/data/vipdoc/sh/lday/sh600036.day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/data/vipdoc/sh/lday/sh600036.day -------------------------------------------------------------------------------- /tests/data/vipdoc/sh/minline/sh600036.lc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/data/vipdoc/sh/minline/sh600036.lc1 -------------------------------------------------------------------------------- /tests/test_affairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/test_affairs.py -------------------------------------------------------------------------------- /tests/test_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/test_quotes.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tests/test_reader.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hebpmo/mootdx/HEAD/tox.ini --------------------------------------------------------------------------------