Socket
Socket
Sign inDemoInstall

dash-uploader

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dash-uploader

Upload large files using resumable.js


Maintainers
1

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)

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc