├── .gitignore ├── README.md ├── conbination_history.py ├── data_process └── hot_stock.py ├── fangtang_pdf.py ├── money_reward.py ├── postman ├── big_file_split.py ├── postman │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ └── xueqiu.py ├── scrapy.cfg └── start_cmd.py ├── sandbox ├── sandbox │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── models.py │ ├── pipelines.py │ ├── random_ua.py │ ├── settings.py │ ├── spiders │ │ ├── __init__.py │ │ └── xueqiu.py │ └── utility.py ├── scrapy.cfg └── xueqiu_basic.py ├── snowball.py ├── strategy.py └── toolkit.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/README.md -------------------------------------------------------------------------------- /conbination_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/conbination_history.py -------------------------------------------------------------------------------- /data_process/hot_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/data_process/hot_stock.py -------------------------------------------------------------------------------- /fangtang_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/fangtang_pdf.py -------------------------------------------------------------------------------- /money_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/money_reward.py -------------------------------------------------------------------------------- /postman/big_file_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/big_file_split.py -------------------------------------------------------------------------------- /postman/postman/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postman/postman/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/items.py -------------------------------------------------------------------------------- /postman/postman/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/middlewares.py -------------------------------------------------------------------------------- /postman/postman/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/pipelines.py -------------------------------------------------------------------------------- /postman/postman/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/settings.py -------------------------------------------------------------------------------- /postman/postman/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/spiders/__init__.py -------------------------------------------------------------------------------- /postman/postman/spiders/xueqiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/postman/spiders/xueqiu.py -------------------------------------------------------------------------------- /postman/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/scrapy.cfg -------------------------------------------------------------------------------- /postman/start_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/postman/start_cmd.py -------------------------------------------------------------------------------- /sandbox/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/sandbox/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/items.py -------------------------------------------------------------------------------- /sandbox/sandbox/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/middlewares.py -------------------------------------------------------------------------------- /sandbox/sandbox/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/models.py -------------------------------------------------------------------------------- /sandbox/sandbox/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/pipelines.py -------------------------------------------------------------------------------- /sandbox/sandbox/random_ua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/random_ua.py -------------------------------------------------------------------------------- /sandbox/sandbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/settings.py -------------------------------------------------------------------------------- /sandbox/sandbox/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/spiders/__init__.py -------------------------------------------------------------------------------- /sandbox/sandbox/spiders/xueqiu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/spiders/xueqiu.py -------------------------------------------------------------------------------- /sandbox/sandbox/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/sandbox/utility.py -------------------------------------------------------------------------------- /sandbox/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/scrapy.cfg -------------------------------------------------------------------------------- /sandbox/xueqiu_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/sandbox/xueqiu_basic.py -------------------------------------------------------------------------------- /snowball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/snowball.py -------------------------------------------------------------------------------- /strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/strategy.py -------------------------------------------------------------------------------- /toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rockyzsu/xueqiu/HEAD/toolkit.py --------------------------------------------------------------------------------