├── .gitignore ├── Crawler.py ├── DBConnection.py ├── Global.py ├── README.md ├── SinaAPI.py ├── UserInfo.py ├── WeiboContent.py ├── keywords ├── user_agents ├── weibo.ini └── weibo_zhanghao.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/Crawler.py -------------------------------------------------------------------------------- /DBConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/DBConnection.py -------------------------------------------------------------------------------- /Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/Global.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/README.md -------------------------------------------------------------------------------- /SinaAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/SinaAPI.py -------------------------------------------------------------------------------- /UserInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/UserInfo.py -------------------------------------------------------------------------------- /WeiboContent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/WeiboContent.py -------------------------------------------------------------------------------- /keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/keywords -------------------------------------------------------------------------------- /user_agents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/user_agents -------------------------------------------------------------------------------- /weibo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meibenjin/weibo_crawler/HEAD/weibo.ini -------------------------------------------------------------------------------- /weibo_zhanghao.txt: -------------------------------------------------------------------------------- 1 | meibenjin_2008@163.com,sina201201 --------------------------------------------------------------------------------