A python library for the Kong admin API
Project description
Python - Kong Client
This is a Python library for the Kong admin API.
It was build around kong 1.14.x specifications
Installation
PypI
pip install python-kongclient
Manual
- Clone the repository
git clone git@github.com:haintd/python-kongclient.git
- Enter it
cd python-kongclient
- Install it
python setup.py install
Instructions
Import into your project
from kongclient import KongClient
Create a kong client
kong_client = KongClient(kong_url='https://localhost:8444', verify_ssl=True)
kong_client.services.create(name='httpbin', url='https://httpbin.org')
kong_client.services.add_route(service_id='httpbin', name='route', hosts=['httpbin.org'])
kong_client.routes.list()
...
For Python-Flask
from flask import Flask
from kongclient.flask import KongClient
app = Flask(__name__)
app.config['KONG_ADMIN_URL'] = 'https://localhost:8444'
app.config['KONG_ADMIN_VERIFY_SSL'] = True
kong_client = KongClient(app)
@app.route('/services', methods=['GET])
def get_services():
return kong_client.services.list()
For more details, checkout kong documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-kongclient-1.1.1.tar.gz
(10.9 kB
view details)
File details
Details for the file python-kongclient-1.1.1.tar.gz
.
File metadata
- Download URL: python-kongclient-1.1.1.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7098d36d7a69a839b0a47c62efdbf17004fa97a66d6c58ae2e587155dd081c72 |
|
MD5 | 2e37bcfb9d953078a662c1fa724047e6 |
|
BLAKE2b-256 | b33a95a26b451056209d8c50e4dc8c385a809abb224c0da399ca9fd70520c166 |