Flask extension that provides integration with Aerospike.
Project description
Flask-Aerospike
Overview
Flask-Aerospike is a Flask extension that provides integration with the Aerospike database. It simplifies the process of connecting to and interacting with Aerospike from your Flask applications.
Installation
You can install Flask-Aerospike using pip:
pip install flask-aerospike
Usage
Here is a simple example of how to use Flask-Aerospike in your Flask application:
import aerospike
from flask import Flask
from flask_aerospike import FlaskAerospike
app = Flask(__name__)
app.config['FLASK_AEROSPIKE_CLIENT'] = aerospike.client({'hosts': [('127.0.0.1', 3000)]}).connect()
ap = FlaskAerospike(app)
@app.route('/')
def index():
client = ap.connection
# Your Aerospike operations here
return 'Hello, Aerospike!'
if __name__ == '__main__':
app.run()
Configuration
You can configure Flask-Aerospike using the following configuration variables:
FLASK_AEROSPIKE_CLIENT
: A list of tuples containing the host and port of your Aerospike nodes.SESSION_AEROSPIKE_NAMESPACE
: The namespace to use in Aerospike.SESSION_AEROSPIKE_BIND_KEY
: The set to use in Aerospike.
Documentation
The full documentation is available at Read the Docs.
Contributing
Contributions are welcome! Please read the contributing guidelines for more information.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Credits
This project is maintained by:
- Ido Shraga
See the AUTHORS.md file for a full list of contributors.
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
Built Distribution
File details
Details for the file flask_aerospike-0.0.1.tar.gz
.
File metadata
- Download URL: flask_aerospike-0.0.1.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6e5086147b6b1656b7067d7a258ac53598beee5a3ec98e65505f9278aa784f5 |
|
MD5 | 53a5229831d4ce62e26a7d56a8cb9939 |
|
BLAKE2b-256 | 918512970c0ffa882584aae0182021a876324fd79b0ad2846c530378a978053a |
File details
Details for the file flask_aerospike-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: flask_aerospike-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf113f8f4a14334431d984bdfbd5a94340bd4db305f2ec911cc3a2ffe5271281 |
|
MD5 | 1038eb5db84467eb1783d29349c01c16 |
|
BLAKE2b-256 | c4f93c1afbcad8ef39d69f088bbc852c27c7ee669df3812405ba94b33d8ea09b |