├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── image └── cookie.jpg ├── requirements.txt └── wcrawler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/README.md -------------------------------------------------------------------------------- /image/cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/image/cookie.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.7.0 2 | beautifulsoup4==4.4.0 3 | -------------------------------------------------------------------------------- /wcrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intfloat/sina-weibo-crawler/HEAD/wcrawler.py --------------------------------------------------------------------------------