├── .github └── workflows │ └── auto_renew.yml ├── README.md ├── auto_renew.py ├── last_renew_data.txt └── requirements.txt /.github/workflows/auto_renew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eooce/Auto-renew-tickhosting/HEAD/.github/workflows/auto_renew.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eooce/Auto-renew-tickhosting/HEAD/README.md -------------------------------------------------------------------------------- /auto_renew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eooce/Auto-renew-tickhosting/HEAD/auto_renew.py -------------------------------------------------------------------------------- /last_renew_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eooce/Auto-renew-tickhosting/HEAD/last_renew_data.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==4.16.0 2 | webdriver_manager==4.0.1 3 | python-dateutil==2.8.2 4 | --------------------------------------------------------------------------------