Skip to main content

Upload large files using resumable.js

Project description

GitHub tag (latest by date) PyPI PyPI - Downloads GitHub

upload large files with dash-uploader

📤 dash-uploader

The upload package for Dash applications using large data files.

🏠 Homepage & Documentation

https://github.com/np-8/dash-uploader

Short summary

      💾 Data file size has no limits. (Except the hard disk size)
      ☎ Call easily a callback after uploading is finished.
      📦 Upload files using resumable.js
      ✅ Works with Dash 1.1.0.+ & Python 3.6+. (Possibly with other versions, too)

Installing

pip install dash-uploader

Usage

Simple example

import dash
import dash_html_components as html
import dash_uploader as du

app = dash.Dash(__name__)

# 1) configure the upload folder
du.configure_upload(app, r"C:\tmp\Uploads")

# 2) Use the Upload component
app.layout = html.Div([
    du.Upload(),
])

if __name__ == '__main__':
    app.run_server(debug=True)

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

dash_uploader-0.3.0.tar.gz (63.3 kB view hashes)

Uploaded Source

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