├── .idea ├── eastmoney.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── eastmoney ├── __init__.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── gupiao.py │ └── gupiao_redis.py ├── requirement.txt ├── run.py ├── scrapy.cfg ├── sum.txt └── tasks.py /.idea/eastmoney.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/.idea/eastmoney.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/README.md -------------------------------------------------------------------------------- /eastmoney/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eastmoney/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/items.py -------------------------------------------------------------------------------- /eastmoney/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/middlewares.py -------------------------------------------------------------------------------- /eastmoney/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/pipelines.py -------------------------------------------------------------------------------- /eastmoney/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/settings.py -------------------------------------------------------------------------------- /eastmoney/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/spiders/__init__.py -------------------------------------------------------------------------------- /eastmoney/spiders/gupiao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/spiders/gupiao.py -------------------------------------------------------------------------------- /eastmoney/spiders/gupiao_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/eastmoney/spiders/gupiao_redis.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/requirement.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/run.py -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /sum.txt: -------------------------------------------------------------------------------- 1 | 219 -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyjayjay/eastmoney_stock/HEAD/tasks.py --------------------------------------------------------------------------------