├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── weibo-follow.iml ├── README.md ├── config.json ├── requirements.txt └── weibo_follow.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/weibo-follow.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/.idea/weibo-follow.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lxml==4.9.1 2 | requests==2.32.4 3 | tqdm==4.66.3 4 | -------------------------------------------------------------------------------- /weibo_follow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataabc/weibo-follow/HEAD/weibo_follow.py --------------------------------------------------------------------------------