├── .asf.yaml ├── .github └── workflows │ ├── ci.yml │ └── license-checker.yml ├── .gitignore ├── .licenserc.yaml ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE-NOTES.md ├── client ├── apache_shenyu_client │ ├── __init__.py │ ├── api.py │ ├── config.py │ ├── exception.py │ ├── main.py │ └── register.py └── setup.py ├── deploy.md ├── example ├── README.md ├── app.py └── requirements.txt ├── requirements.txt └── test ├── __init__.py └── test_config.py /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/license-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/.github/workflows/license-checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | ### New Features 4 | * Support Namespace 5 | * Add Python sdk -------------------------------------------------------------------------------- /client/apache_shenyu_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/__init__.py -------------------------------------------------------------------------------- /client/apache_shenyu_client/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/api.py -------------------------------------------------------------------------------- /client/apache_shenyu_client/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/config.py -------------------------------------------------------------------------------- /client/apache_shenyu_client/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/exception.py -------------------------------------------------------------------------------- /client/apache_shenyu_client/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/main.py -------------------------------------------------------------------------------- /client/apache_shenyu_client/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/apache_shenyu_client/register.py -------------------------------------------------------------------------------- /client/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/client/setup.py -------------------------------------------------------------------------------- /deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/deploy.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/example/README.md -------------------------------------------------------------------------------- /example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/example/app.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==2.2.5 2 | Apache-ShenYu-Client==0.2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.31.0 -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shenyu-client-python/HEAD/test/test_config.py --------------------------------------------------------------------------------