├── .github ├── FUNDING.yml └── workflows │ ├── Leaflow自动签到.yml │ ├── cloudcat-tgcheckin.yml │ ├── koyeb-alive.yml │ ├── netlib.re自动登录.yml │ ├── pella自动续期.yml~ │ ├── veloera-checkin.yml │ └── webhostmost登录保活.yml ├── 69yun-checkin ├── LICENSE ├── README.md ├── p.png └── worker.js ├── LICENSE ├── README.md ├── cf-sb00-alive ├── README.md └── serv-account-alive.js ├── cloudcat-tgcheckin ├── checkin.py ├── requirements.txt └── tg_session.session ├── databricks-alive ├── README.md └── _worker.js ├── koyeb-alive ├── koyeb-alive.py ├── readme.md ├── requirements.txt └── worker.js ├── leaflow-checkin ├── README.md ├── leaflow_checkin.py └── requirements.txt ├── netlib-login ├── README.md ├── autologin.py └── requirements.txt ├── paas-alive ├── README.md └── worker.js ├── pella-checkin ├── pella_checkin.py └── requirements.txt ├── vps_sb00_alive ├── README.md ├── sb00-sk5.sh └── sb00_alive.sh ├── vps_sb5in1.sh ├── webhook-action ├── README.md ├── sap-webhook-cf.js └── uptime-webhook.js └── webhostmost-checkin ├── checkin.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/Leaflow自动签到.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/Leaflow自动签到.yml -------------------------------------------------------------------------------- /.github/workflows/cloudcat-tgcheckin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/cloudcat-tgcheckin.yml -------------------------------------------------------------------------------- /.github/workflows/koyeb-alive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/koyeb-alive.yml -------------------------------------------------------------------------------- /.github/workflows/netlib.re自动登录.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/netlib.re自动登录.yml -------------------------------------------------------------------------------- /.github/workflows/pella自动续期.yml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/pella自动续期.yml~ -------------------------------------------------------------------------------- /.github/workflows/veloera-checkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/veloera-checkin.yml -------------------------------------------------------------------------------- /.github/workflows/webhostmost登录保活.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/.github/workflows/webhostmost登录保活.yml -------------------------------------------------------------------------------- /69yun-checkin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/69yun-checkin/LICENSE -------------------------------------------------------------------------------- /69yun-checkin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/69yun-checkin/README.md -------------------------------------------------------------------------------- /69yun-checkin/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/69yun-checkin/p.png -------------------------------------------------------------------------------- /69yun-checkin/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/69yun-checkin/worker.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/README.md -------------------------------------------------------------------------------- /cf-sb00-alive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/cf-sb00-alive/README.md -------------------------------------------------------------------------------- /cf-sb00-alive/serv-account-alive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/cf-sb00-alive/serv-account-alive.js -------------------------------------------------------------------------------- /cloudcat-tgcheckin/checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/cloudcat-tgcheckin/checkin.py -------------------------------------------------------------------------------- /cloudcat-tgcheckin/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | telethon 3 | -------------------------------------------------------------------------------- /cloudcat-tgcheckin/tg_session.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/cloudcat-tgcheckin/tg_session.session -------------------------------------------------------------------------------- /databricks-alive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/databricks-alive/README.md -------------------------------------------------------------------------------- /databricks-alive/_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/databricks-alive/_worker.js -------------------------------------------------------------------------------- /koyeb-alive/koyeb-alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/koyeb-alive/koyeb-alive.py -------------------------------------------------------------------------------- /koyeb-alive/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/koyeb-alive/readme.md -------------------------------------------------------------------------------- /koyeb-alive/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /koyeb-alive/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/koyeb-alive/worker.js -------------------------------------------------------------------------------- /leaflow-checkin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/leaflow-checkin/README.md -------------------------------------------------------------------------------- /leaflow-checkin/leaflow_checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/leaflow-checkin/leaflow_checkin.py -------------------------------------------------------------------------------- /leaflow-checkin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/leaflow-checkin/requirements.txt -------------------------------------------------------------------------------- /netlib-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/netlib-login/README.md -------------------------------------------------------------------------------- /netlib-login/autologin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/netlib-login/autologin.py -------------------------------------------------------------------------------- /netlib-login/requirements.txt: -------------------------------------------------------------------------------- 1 | playwright 2 | requests 3 | -------------------------------------------------------------------------------- /paas-alive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/paas-alive/README.md -------------------------------------------------------------------------------- /paas-alive/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/paas-alive/worker.js -------------------------------------------------------------------------------- /pella-checkin/pella_checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/pella-checkin/pella_checkin.py -------------------------------------------------------------------------------- /pella-checkin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/pella-checkin/requirements.txt -------------------------------------------------------------------------------- /vps_sb00_alive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/vps_sb00_alive/README.md -------------------------------------------------------------------------------- /vps_sb00_alive/sb00-sk5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/vps_sb00_alive/sb00-sk5.sh -------------------------------------------------------------------------------- /vps_sb00_alive/sb00_alive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/vps_sb00_alive/sb00_alive.sh -------------------------------------------------------------------------------- /vps_sb5in1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/vps_sb5in1.sh -------------------------------------------------------------------------------- /webhook-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/webhook-action/README.md -------------------------------------------------------------------------------- /webhook-action/sap-webhook-cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/webhook-action/sap-webhook-cf.js -------------------------------------------------------------------------------- /webhook-action/uptime-webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/webhook-action/uptime-webhook.js -------------------------------------------------------------------------------- /webhostmost-checkin/checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutian81/Keepalive/HEAD/webhostmost-checkin/checkin.py -------------------------------------------------------------------------------- /webhostmost-checkin/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | --------------------------------------------------------------------------------