├── .github └── workflows │ └── build._yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── Launcher ├── main.bak ├── main.e └── 精易模块[v11.0.5].ec ├── README.MD ├── core ├── NcmNowPlay │ ├── go.mod │ └── main.go ├── get_media_info.py ├── get_process_name.py ├── replace.py ├── search.py └── upload.py ├── example_config.yml ├── main.py ├── renovate.json └── requirements.txt /.github/workflows/build._yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/.github/workflows/build._yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | netkeiba.iml 2 | .idea/ 3 | __pycache__ 4 | config.yml 5 | logs/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Launcher/main.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/Launcher/main.bak -------------------------------------------------------------------------------- /Launcher/main.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/Launcher/main.e -------------------------------------------------------------------------------- /Launcher/精易模块[v11.0.5].ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/Launcher/精易模块[v11.0.5].ec -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/README.MD -------------------------------------------------------------------------------- /core/NcmNowPlay/go.mod: -------------------------------------------------------------------------------- 1 | module tnxg.top/NcmNowPlay 2 | 3 | go 1.21.6 -------------------------------------------------------------------------------- /core/NcmNowPlay/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/NcmNowPlay/main.go -------------------------------------------------------------------------------- /core/get_media_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/get_media_info.py -------------------------------------------------------------------------------- /core/get_process_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/get_process_name.py -------------------------------------------------------------------------------- /core/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/replace.py -------------------------------------------------------------------------------- /core/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/search.py -------------------------------------------------------------------------------- /core/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/core/upload.py -------------------------------------------------------------------------------- /example_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/example_config.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/main.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TNXG/ProcessReporterWinpy/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pywin32 2 | PyYAML 3 | Requests 4 | winrt 5 | --------------------------------------------------------------------------------