├── LICENSE ├── README.md ├── stockbot ├── __init__.py ├── algorithms │ ├── __init__.py │ └── funda_rotation.py ├── data │ ├── __init__.py │ ├── create_tables.py │ ├── data_manager.py │ ├── sqlite_shell.py │ └── stock.db ├── exceptions.py ├── spider │ ├── __init__.py │ ├── common.py │ ├── jisilu.py │ ├── netease.py │ └── sina.py └── util │ ├── __init__.py │ └── stockdate.py └── tests ├── __init__.py ├── test_data_manager.py └── test_stockdate.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/README.md -------------------------------------------------------------------------------- /stockbot/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stockbot/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stockbot/algorithms/funda_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/algorithms/funda_rotation.py -------------------------------------------------------------------------------- /stockbot/data/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'PC' 2 | -------------------------------------------------------------------------------- /stockbot/data/create_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/data/create_tables.py -------------------------------------------------------------------------------- /stockbot/data/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/data/data_manager.py -------------------------------------------------------------------------------- /stockbot/data/sqlite_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/data/sqlite_shell.py -------------------------------------------------------------------------------- /stockbot/data/stock.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/data/stock.db -------------------------------------------------------------------------------- /stockbot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/exceptions.py -------------------------------------------------------------------------------- /stockbot/spider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stockbot/spider/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/spider/common.py -------------------------------------------------------------------------------- /stockbot/spider/jisilu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/spider/jisilu.py -------------------------------------------------------------------------------- /stockbot/spider/netease.py: -------------------------------------------------------------------------------- 1 | __author__ = 'licx' 2 | -------------------------------------------------------------------------------- /stockbot/spider/sina.py: -------------------------------------------------------------------------------- 1 | __author__ = 'licx' 2 | -------------------------------------------------------------------------------- /stockbot/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stockbot/util/stockdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/stockbot/util/stockdate.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/tests/test_data_manager.py -------------------------------------------------------------------------------- /tests/test_stockdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/licxcx/stockbot/HEAD/tests/test_stockdate.py --------------------------------------------------------------------------------