├── README.md └── tv_Spider ├── config.json ├── del_tool.py ├── merge_json └── merge_json.py ├── scrapy.cfg ├── tinyun_tool.py └── tv_Spider ├── Get_Json_Content.py ├── Path_translate.py ├── Total_page_circulate.py ├── UserAgent_Middlewares.py ├── __init__.py ├── items.py ├── pipelines.py ├── settings.py └── spiders ├── Ceshi.py ├── Douban_tv_Spider.py ├── Letv_tv_Spider.py ├── Mangguo_tv_Spider.py ├── Souhu_tv_Spider.py ├── Tudou_tv_Spider.py ├── Youku_tv_Spider.py └── __init__.py /README.md: -------------------------------------------------------------------------------- 1 | # tv_Spider -------------------------------------------------------------------------------- /tv_Spider/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/config.json -------------------------------------------------------------------------------- /tv_Spider/del_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/del_tool.py -------------------------------------------------------------------------------- /tv_Spider/merge_json/merge_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/merge_json/merge_json.py -------------------------------------------------------------------------------- /tv_Spider/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/scrapy.cfg -------------------------------------------------------------------------------- /tv_Spider/tinyun_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tinyun_tool.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/Get_Json_Content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/Get_Json_Content.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/Path_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/Path_translate.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/Total_page_circulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/Total_page_circulate.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/UserAgent_Middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/UserAgent_Middlewares.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/items.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/pipelines.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/settings.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Ceshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Ceshi.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Douban_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Douban_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Letv_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Letv_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Mangguo_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Mangguo_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Souhu_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Souhu_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Tudou_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Tudou_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/Youku_tv_Spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/Youku_tv_Spider.py -------------------------------------------------------------------------------- /tv_Spider/tv_Spider/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tingyunsay/tv_Spider/HEAD/tv_Spider/tv_Spider/spiders/__init__.py --------------------------------------------------------------------------------