├── .github ├── dependabot.yml └── workflows │ └── LH.yml ├── .gitignore ├── LH.log ├── LH.py ├── LICENSE ├── README.md ├── README_o.md └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/LH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/.github/workflows/LH.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LH.log: -------------------------------------------------------------------------------- 1 | 日志文件 2 | -------------------------------------------------------------------------------- /LH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/LH.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/README.md -------------------------------------------------------------------------------- /README_o.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2lifetop/LightHouse_Automatic_Shutdown/HEAD/README_o.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.27.1 2 | tencentcloud-sdk-python==3.0.659 3 | --------------------------------------------------------------------------------