├── .gitignore ├── LICENSE ├── README.md └── src ├── __init__.py ├── config.py ├── del.py ├── helper.py ├── imgs ├── after.jpg ├── before.jpg └── del-log.jpg ├── unfollow.py └── weibo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/README.md -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/config.py -------------------------------------------------------------------------------- /src/del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/del.py -------------------------------------------------------------------------------- /src/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/helper.py -------------------------------------------------------------------------------- /src/imgs/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/imgs/after.jpg -------------------------------------------------------------------------------- /src/imgs/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/imgs/before.jpg -------------------------------------------------------------------------------- /src/imgs/del-log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/imgs/del-log.jpg -------------------------------------------------------------------------------- /src/unfollow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/unfollow.py -------------------------------------------------------------------------------- /src/weibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinple/Xweibo/HEAD/src/weibo.py --------------------------------------------------------------------------------