├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── weibo_supertopic_sign.iml ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── config.json ├── config.py ├── index.py ├── notify ├── __init__.py ├── dingdingbot.py ├── notifier.py ├── qmsgchan.py └── serverchan.py ├── requirements.txt ├── supertopicsign.py ├── test ├── __init__.py ├── config.json ├── config.py ├── test_do_sign_tasks.py ├── test_form_sign_list.py ├── test_get_follow_list.py ├── test_index.py └── utils.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/weibo_supertopic_sign.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/.idea/weibo_supertopic_sign.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/config.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/config.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/index.py -------------------------------------------------------------------------------- /notify/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notify/dingdingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/notify/dingdingbot.py -------------------------------------------------------------------------------- /notify/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/notify/notifier.py -------------------------------------------------------------------------------- /notify/qmsgchan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/notify/qmsgchan.py -------------------------------------------------------------------------------- /notify/serverchan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/notify/serverchan.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.26.0 2 | -------------------------------------------------------------------------------- /supertopicsign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/supertopicsign.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/config.json -------------------------------------------------------------------------------- /test/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/config.py -------------------------------------------------------------------------------- /test/test_do_sign_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/test_do_sign_tasks.py -------------------------------------------------------------------------------- /test/test_form_sign_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/test_form_sign_list.py -------------------------------------------------------------------------------- /test/test_get_follow_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/test_get_follow_list.py -------------------------------------------------------------------------------- /test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/test_index.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/test/utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellager/weibo_supertopic_sign/HEAD/utils.py --------------------------------------------------------------------------------