This is an automated email from the ASF dual-hosted git repository.
shuaijinchao pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/apisix-python-plugin-runner.git.
from d6ba074 feat: init python runner project framework. (#1)
new 2ee3dd4 feat: add http method module for runner.
new 18d5f1e feat: add http protocol module for runner.
new 6cff476 feat: add http request module for runner.
new 1c52a24 feat: add http response module for runner.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/runner/http/method.py | 77 +++++++++++++++
README.md => src/runner/http/protocol.py | 11 ++-
src/runner/http/request.py | 133 +++++++++++++++++++++++++
src/runner/http/response.py | 161 +++++++++++++++++++++++++++++++
4 files changed, 379 insertions(+), 3 deletions(-)
create mode 100644 src/runner/http/method.py
copy README.md => src/runner/http/protocol.py (84%)
create mode 100644 src/runner/http/request.py
create mode 100644 src/runner/http/response.py