flask-aerospike 0.0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

flaskaerospike 0.0.1

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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.