Python api wrapper for Kong API Gatway
- Free software: MIT license
- Documentation: https://python-kong-management.readthedocs.io.
- This is very much a work-in-progress. Implemented functionality
- create
- update_or_create
- retrieve
- list
- update
- delete
- add_key
- remove_key
- information
- status
``` error_codes = {
'unauthorized': AuthenticationError, 'forbidden': AuthenticationError, 'bad_request': BadRequestError, 'action_forbidden': BadRequestError, 'missing_parameter': BadRequestError, 'parameter_invalid': BadRequestError, 'parameter_not_found': BadRequestError, 'not_found': ResourceNotFound, 'service_unavailable': ServiceUnavailableError,
`bash
cp .env.example .env
python3 -m venv venv
source venv
eval $(cat .env | sed 's/^/export /')
setup.py pytest
`