Skip to main content

Adds Minio support to your Flask application

Project description

flask-minio

Flask extension to interface with Minio. It has no fancy features, but just allows you to properly interface your Flask application with the minio library.

Install

You can either download the source code of this repository or install it via pip:

pip install Flask-Minio

Usage

The simplest way to get started with this Flask extension is to pass the application object to the flask_minio.Minio object. This will connect to the Minio playground (running at play.minio.io:9000).

from flask import Flask
from flask_minio import Minio

app = Flask(__name__)
app.config.from_pyfile('config.cfg')
storage = Minio(app)

Once you've done this you're ready to spawn connections to your Minio endpoint like this:

@app.route('/upload')
def upload_file():
    res = db.connection.fput_object('maylogs', 'pumaserver_debug.log', '/tmp/pumaserver_debug.log')

To further customize your deployment, flask_minio can use the following parameters from the application configuration:

Variable Default Value Description
MINIO_ENDPOINT play.minio.io:9000 Minio endpoint to connect to
MINIO_ACCESS_KEY Q3AM3UQ867SPQQA43P2F Access key to be used
MINIO_SECRET_KEY zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG Secret key to be used
MINIO_SECURE True Whether to use HTTPS or not
MINIO_REGION None Can be something like eu-west-1 and so on
MINIO_HTTP_CLIENT None Must be a urllib3.PoolManager object

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

Flask-Minio-0.1.2.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

Flask_Minio-0.1.2-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page