Flask Zookeeper client
Project description
Flask-Zookeeper
The Flask-Zookeeper extension provides support to Zookeeper clusters.
Quickstart
First, install cdumay-rest-client using pip:
pip install flask-zookeeper
Flask-Zookeeper depends, and will install for you, recent versions of Flask and Kazzo. Flask-Zookeeper is compatible with and tested on Python 2.7, 3.4 and 3.5.
Next, add a FlaskZookeeperClient
instance to your code:
from flask import Flask
from flask_zookeeper import FlaskZookeeperClient
app = Flask(__name__)
fzc = FlaskZookeeperClient(app)
You can take a look at tests/test_base.py for more complete example.
You can also take a look at tests/test_blueprint.py for an example using Flask’s application factories and blueprints.
About setting up
Flask-Zookeeper uses additional variables which can be set in the app.config:
Main values
KAZOO_HOSTS: Zookeeper quorum server list separated by commas (default:
127.0.0.1:2181
).KAZOO_START_TIMEOUT: Time in seconds to wait for connection to succeed (default:
15
).KAZOO_SESSION_TIMEOUT: The longest to wait for a Zookeeper connection (default:
10.0
).KAZOO_RETRY: Dict of options to use for retrying the connection to Zookeeper (default:
{'max_delay': 3600}
).
ACL configuration
Zookeeper allow to set ACL. To enable this feature, set
KAZOO_ACL_USERNAME
and KAZOO_ACL_PASSWORD
in the app.config
.
KAZOO_ACL_USERNAME: Username to use for the ACL.
KAZOO_ACL_PASSWORD: A plain-text password to hash.
KAZOO_ACL_READ: Read permission (default:
False
).KAZOO_ACL_WRITE: Write permission (default:
False
).KAZOO_ACL_CREATE: Create permission (default:
False
).KAZOO_ACL_DELETE: Delete permission (default:
False
).KAZOO_ACL_ADMIN: Admin permission (default:
False
).KAZOO_ACL_ALL: All permissions (default:
False
).
You can take a look at tests/test_acl.py for a complete example.
License
Apache License 2.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flask-zookeeper-0.0.5.tar.gz
.
File metadata
- Download URL: flask-zookeeper-0.0.5.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a39c1d5d960a1fa290cd44075312915e2d69e13d556842d55a1008a35e2f68f1 |
|
MD5 | 6b080a6ee409228db64f466ee5e2f822 |
|
BLAKE2b-256 | 8969af557fc57276b8308659188625aebedad8397287ddf9703d63e13e14fedf |