├── .github └── workflows │ ├── auto_score.yml │ └── refresh_cookie.yml ├── .gitignore ├── LICENSE ├── README.md ├── config ├── __init__.py └── setting.example.json ├── main.py ├── refresh_cookie.py ├── requirements.txt ├── src ├── __init__.py ├── core │ ├── __init__.py │ ├── bot.py │ ├── signer.py │ └── tasks │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cookie_refresh.py │ │ ├── daily.py │ │ └── extra.py ├── utils │ ├── __init__.py │ ├── auth.py │ ├── config.py │ ├── github.py │ ├── logger.py │ └── notification.py └── validators │ ├── __init__.py │ └── cookie.py └── tests ├── __init__.py ├── test_auto_score.py ├── test_pyncm_login.py └── test_refresh_cookie.py /.github/workflows/auto_score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/.github/workflows/auto_score.yml -------------------------------------------------------------------------------- /.github/workflows/refresh_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/.github/workflows/refresh_cookie.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | # 配置模块初始化文件 -------------------------------------------------------------------------------- /config/setting.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/config/setting.example.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/main.py -------------------------------------------------------------------------------- /refresh_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/refresh_cookie.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | # 包的初始化文件 -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- 1 | # 核心模块的初始化文件 -------------------------------------------------------------------------------- /src/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/bot.py -------------------------------------------------------------------------------- /src/core/signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/signer.py -------------------------------------------------------------------------------- /src/core/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | # 任务模块的初始化文件 -------------------------------------------------------------------------------- /src/core/tasks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/tasks/base.py -------------------------------------------------------------------------------- /src/core/tasks/cookie_refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/tasks/cookie_refresh.py -------------------------------------------------------------------------------- /src/core/tasks/daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/tasks/daily.py -------------------------------------------------------------------------------- /src/core/tasks/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/core/tasks/extra.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # 工具模块的初始化文件 -------------------------------------------------------------------------------- /src/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/utils/auth.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/utils/github.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /src/utils/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/utils/notification.py -------------------------------------------------------------------------------- /src/validators/__init__.py: -------------------------------------------------------------------------------- 1 | # 验证器模块的初始化文件 -------------------------------------------------------------------------------- /src/validators/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/src/validators/cookie.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # 测试模块初始化文件 -------------------------------------------------------------------------------- /tests/test_auto_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/tests/test_auto_score.py -------------------------------------------------------------------------------- /tests/test_pyncm_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/tests/test_pyncm_login.py -------------------------------------------------------------------------------- /tests/test_refresh_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACAne0320/ncmp/HEAD/tests/test_refresh_cookie.py --------------------------------------------------------------------------------