1
2
3
4
5
6
7
8
9
10
11
12
13
14
15# kong-python-pdk autodoc
The PDK (plugin developemet kit) API document can be viewed [here](https://kong.github.io/kong-python-pdk/).
Python types `.pyi` files is generated using https://github.com/fffonion/kong-pdk-autogen: `resty run.lua -t=python -o=../kong/kong-python-pdk/kong_pdk/pdk`
Reference is generated by Sphinx under `doc` folder and published to the `gh-pages` branch.
To generate updated docs, use:
```
git worktree add docs/build/html gh-pages
cd docs
make deps && make html
```