Skip to main content

A Flask extension for integrating with Supabase

Project description

Flask-Supabase Extension

The Flask-Supabase extension provides a simple and intuitive way to integrate Supabase into your Flask applications. With minimal setup, you can start leveraging the power of Supabase in your Flask projects, whether it's for database operations, authentication, or any other feature supported by Supabase.

Features

  • Easy integration of Supabase into Flask applications.
  • Automatic management of Supabase API keys and URLs.
  • Efficient handling of Supabase client instances throughout the application lifecycle.

Installation

Install Flask-Supabase using pip:

pip install flask-supabase

Quick Start

  1. Set up your Flask application

First, ensure you have Flask installed. If not, you can install it using pip:

pip install Flask

Then, set up a basic Flask application:

from flask import Flask
app = Flask(__name__)
  1. Configure the Flask-Supabase extension

Import and initialize the Supabase extension, passing your Flask app object to it. Don't forget to set the SUPABASE_URL and SUPABASE_KEY in your app's configuration:

from flask_supabase import Supabase

app.config['SUPABASE_URL'] = 'your_supabase_project_url'
app.config['SUPABASE_KEY'] = 'your_supabase_api_key'
supabase_extension = Supabase(app)

Alternatively, if you are using a factory function to create your Flask app, you can set up the Supabase extension like this:

supabase_extension = Supabase()

def create_app():
    app = Flask(__name__)
    app.config['SUPABASE_URL'] = 'your_supabase_project_url'
    app.config['SUPABASE_KEY'] = 'your_supabase_api_key'
    supabase_extension.init_app(app)
    return app
  1. Use the Supabase client in your application

Now, you can access the Supabase client in your route handlers using supabase_extension.client. Here's an example of how to perform a database operation with Supabase:

@app.route('/users')
def get_users():
    response = supabase_extension.client.from_('users').select('*').execute()
    return response.data

Documentation

For more information on Supabase and its capabilities, visit Supabase documentation.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a pull request.

Support

If you have any questions or encounter any issues, please open an issue on the project's GitHub page.

Acknowledgements

This project is not officially associated with Supabase. All trademarks are the property of their respective owners.

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_supabase-0.3.1.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flask_supabase-0.3.1-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file flask_supabase-0.3.1.tar.gz.

File metadata

  • Download URL: flask_supabase-0.3.1.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.0

File hashes

Hashes for flask_supabase-0.3.1.tar.gz
Algorithm Hash digest
SHA256 6c5eab0dc73520d0af526acaef20a7e80c5c5c6c62ce7c53e10e1312564c809f
MD5 f334b075bd3e10ae3d3de653ce79bd2a
BLAKE2b-256 7c8db9cfc78e1ca7399e4b9173bb82b3bc3addf65147ab847c72fa814fa68770

See more details on using hashes here.

File details

Details for the file flask_supabase-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for flask_supabase-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0fc647f1d984dc9c4aab76c0fb0f15d7d102395c2414bf8fe602dce609b01055
MD5 2b3a939d9d0de72de791c7cbf4ae7a33
BLAKE2b-256 9a17915e9a8765dbeafc95da4be269528a7fba828e6fab9a44ae2acc614b7d9b

See more details on using hashes here.

Supported by

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