├── Agetv ├── agetv.py ├── autosave.py ├── boot.js ├── faua.py └── readme.md ├── Cniao5 ├── cniao5.py ├── readme.md └── renamedir.py ├── E-business_Site ├── jingdong_camera.py ├── jingdong_search.py ├── readme.md ├── suning_search.py └── tmall_search.py ├── JangGou ├── readme.md ├── socket_server.py ├── thread_socket_server.py ├── wsgi_example_app.py └── wsgi_example_server.py ├── KoKoJia ├── kokojia.py └── readme.md ├── LICENSE ├── README.md ├── SB-Proxy └── readme.md ├── SinaTouSu ├── readme.md └── yuantong_tousu.py ├── TaoBaoEdu ├── readme.md └── taobaoedu.py ├── Twitter ├── readme.md └── twitter_user.py ├── Ximalaya ├── XiMaDownloader.py ├── readme.md ├── ximalaya_search.py ├── ximalaya_search_backup.py └── ximaui │ └── control.py ├── utils ├── fk_ua.py └── headerstool │ ├── format_headers.txt │ ├── headers.txt │ └── headerstool.py └── wechat ├── Weixin_Article1 └── Weixin_Article2 /Agetv/agetv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Agetv/agetv.py -------------------------------------------------------------------------------- /Agetv/autosave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Agetv/autosave.py -------------------------------------------------------------------------------- /Agetv/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Agetv/boot.js -------------------------------------------------------------------------------- /Agetv/faua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Agetv/faua.py -------------------------------------------------------------------------------- /Agetv/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Agetv/readme.md -------------------------------------------------------------------------------- /Cniao5/cniao5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Cniao5/cniao5.py -------------------------------------------------------------------------------- /Cniao5/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Cniao5/readme.md -------------------------------------------------------------------------------- /Cniao5/renamedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Cniao5/renamedir.py -------------------------------------------------------------------------------- /E-business_Site/jingdong_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/E-business_Site/jingdong_camera.py -------------------------------------------------------------------------------- /E-business_Site/jingdong_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/E-business_Site/jingdong_search.py -------------------------------------------------------------------------------- /E-business_Site/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/E-business_Site/readme.md -------------------------------------------------------------------------------- /E-business_Site/suning_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/E-business_Site/suning_search.py -------------------------------------------------------------------------------- /E-business_Site/tmall_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/E-business_Site/tmall_search.py -------------------------------------------------------------------------------- /JangGou/readme.md: -------------------------------------------------------------------------------- 1 | ## 包含Django项目的爬虫核心代码及些许学习代码 -------------------------------------------------------------------------------- /JangGou/socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/JangGou/socket_server.py -------------------------------------------------------------------------------- /JangGou/thread_socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/JangGou/thread_socket_server.py -------------------------------------------------------------------------------- /JangGou/wsgi_example_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/JangGou/wsgi_example_app.py -------------------------------------------------------------------------------- /JangGou/wsgi_example_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/JangGou/wsgi_example_server.py -------------------------------------------------------------------------------- /KoKoJia/kokojia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/KoKoJia/kokojia.py -------------------------------------------------------------------------------- /KoKoJia/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/KoKoJia/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/README.md -------------------------------------------------------------------------------- /SB-Proxy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/SB-Proxy/readme.md -------------------------------------------------------------------------------- /SinaTouSu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/SinaTouSu/readme.md -------------------------------------------------------------------------------- /SinaTouSu/yuantong_tousu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/SinaTouSu/yuantong_tousu.py -------------------------------------------------------------------------------- /TaoBaoEdu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/TaoBaoEdu/readme.md -------------------------------------------------------------------------------- /TaoBaoEdu/taobaoedu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/TaoBaoEdu/taobaoedu.py -------------------------------------------------------------------------------- /Twitter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Twitter/readme.md -------------------------------------------------------------------------------- /Twitter/twitter_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Twitter/twitter_user.py -------------------------------------------------------------------------------- /Ximalaya/XiMaDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Ximalaya/XiMaDownloader.py -------------------------------------------------------------------------------- /Ximalaya/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Ximalaya/readme.md -------------------------------------------------------------------------------- /Ximalaya/ximalaya_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Ximalaya/ximalaya_search.py -------------------------------------------------------------------------------- /Ximalaya/ximalaya_search_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Ximalaya/ximalaya_search_backup.py -------------------------------------------------------------------------------- /Ximalaya/ximaui/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/Ximalaya/ximaui/control.py -------------------------------------------------------------------------------- /utils/fk_ua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/utils/fk_ua.py -------------------------------------------------------------------------------- /utils/headerstool/format_headers.txt: -------------------------------------------------------------------------------- 1 | 'pragma': 'no-cache', 2 | -------------------------------------------------------------------------------- /utils/headerstool/headers.txt: -------------------------------------------------------------------------------- 1 | pragma: no-cache -------------------------------------------------------------------------------- /utils/headerstool/headerstool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/utils/headerstool/headerstool.py -------------------------------------------------------------------------------- /wechat/Weixin_Article1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/wechat/Weixin_Article1 -------------------------------------------------------------------------------- /wechat/Weixin_Article2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelYing/SpiderBar/HEAD/wechat/Weixin_Article2 --------------------------------------------------------------------------------