├── .github └── workflows │ ├── docker_build.yml │ ├── docker_run.yml │ ├── github_build.yml │ ├── renew.yml │ └── test.yml ├── Dockerfile ├── LICENSE ├── README.md ├── commonlog.py ├── ibmAPI.py ├── main.py ├── renewTime ├── requirements.txt ├── tencentAPI.py ├── xfyunAPI.py └── yescaptchaAPI.py /.github/workflows/docker_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/.github/workflows/docker_build.yml -------------------------------------------------------------------------------- /.github/workflows/docker_run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/.github/workflows/docker_run.yml -------------------------------------------------------------------------------- /.github/workflows/github_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/.github/workflows/github_build.yml -------------------------------------------------------------------------------- /.github/workflows/renew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/.github/workflows/renew.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/README.md -------------------------------------------------------------------------------- /commonlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/commonlog.py -------------------------------------------------------------------------------- /ibmAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/ibmAPI.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/main.py -------------------------------------------------------------------------------- /renewTime: -------------------------------------------------------------------------------- 1 | 2023-01-10 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/requirements.txt -------------------------------------------------------------------------------- /tencentAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/tencentAPI.py -------------------------------------------------------------------------------- /xfyunAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/xfyunAPI.py -------------------------------------------------------------------------------- /yescaptchaAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zakkoree/woiden_extend/HEAD/yescaptchaAPI.py --------------------------------------------------------------------------------