Socket
Socket
Sign inDemoInstall

fileupload

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fileupload

IPython file upload widget


Maintainers
1

IPython File Upload

.. image:: https://img.shields.io/pypi/v/fileupload.svg :target: https://pypi.python.org/pypi/fileupload/ :alt: Latest Version

.. image:: https://img.shields.io/pypi/dm/fileupload.svg :target: https://pypi.python.org/pypi/fileupload/ :alt: Downloads

An IPython notebook widget to upload files, using FileReader_.

Installation

Install using pip::

pip install fileupload

Install JavaScript::

jupyter nbextension install [--user] --py fileupload

Enable the extension::

jupyter nbextension enable [--user] --py fileupload

Usage

.. code-block:: python

import io
from IPython.display import display
import fileupload

def _upload():

    _upload_widget = fileupload.FileUploadWidget()

    def _cb(change):
        decoded = io.StringIO(change['owner'].data.decode('utf-8'))
        filename = change['owner'].filename
        print('Uploaded `{}` ({:.2f} kB)'.format(
            filename, len(decoded.read()) / 2 **10))

    _upload_widget.observe(_cb, names='data')
    display(_upload_widget)

_upload()

Base64 data is synced to the data_base64 member, decoded data can be obtained from data. The name of the uploaded file is stored in filename.

Changelog

Refer to Changelog_.

.. _FileReader: https://developer.mozilla.org/en-US/docs/Web/API/FileReader .. _Changelog: ./ChangeLog

Keywords

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc