Skip to main content

Flask Endpoints for Database Import and Export

Project description

Flask Import/Export

Database import/export functionality for database stores under Flask

  1. Example Usage
  2. Options

Example Usage

from frappyflaskauth import check_login_state
from frappyflaskimpex import register_endpoints
from flask import Flask

app = Flask(__name__)
# create a dictionary of stores (key > AbstractMongoStore subclass)
stores = {}  
# register the endpoints
register_endpoints(app, stores, options={
    "permission": "impex",
    "login_check_function": check_login_state,
    "temp_folder": "_data/temp",
})

Options

Options for the register_endpoints function are:

  • api_prefix - default /api/impex - is the prefix under which the endpoints will be registered. This should match the prefix used in the front-end.
  • permission - default None - the permission required to manage imports and exports, if None is provided the user just needs to be logged in.
  • login_check_function - default None - provide a function that performs authentication and uses Flask's abort in case the login / permission check fails. The function has 1 parameter for the required permission. You can use check_login_state from the frappyflaskauth package.
  • temp_folder - default _temp - a folder path which will be used to temporarily store zip/json files used for import and export.

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

frappyflaskimpex-1.0.0.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

frappyflaskimpex-1.0.0-py3-none-any.whl (8.0 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