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
- 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__)
- 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
- 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
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_supabase-0.2.0.tar.gz
.
File metadata
- Download URL: flask_supabase-0.2.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d71b65ad405e21f7cb0d87b1f7fda9f42472c3d880b97eb3b6ef34051c0615df |
|
MD5 | f3e12447571a14fac94ed5d06a2f479e |
|
BLAKE2b-256 | b03e6720b86d076fdebe3c381808e58fe698bd6dab9406949aa1a163234bb26e |
File details
Details for the file flask_supabase-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: flask_supabase-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.32.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4657f9dbbda825fdf91381955e040043c910e760002509ce7bfb74d46d094034 |
|
MD5 | 6b0abf1d1a09b7d5fd6fa137489b1d61 |
|
BLAKE2b-256 | fff1a5252ec075b223a7972048bc6fabe279efd2f98732a2eab18afee35030c3 |