Skip to main content

Python's http.server extended to include a file upload page

Project description

uploadserver

Python's http.server extended to include a file upload page

License: MIT Build Status

Installation

python3 -m pip install --user uploadserver

Usage

python3 -m uploadserver

Accepts the same options as http.server, plus a couple extras (documented below).

After the server starts, the upload page is at /upload. For example, if the server is running at http://localhost:8000/ go to http://localhost:8000/upload .

Warning: This is an upload server, and running it will allow uploads. Uploaded files will replace existing files with the same name.

Now supports uploading multiple files at once! Select multiple files in the web page's file selector, or upload with cURL:

curl http://127.0.0.1:8000/upload -F files=@multiple-example-1.txt -F files=@multiple-example-2.txt

Token Option

Run with a simple token.

python3 -m uploadserver -t helloworld

Now you can upload a file with the token. For example: curl http://127.0.0.1:8000/upload -F "files=@token-example.txt" -F 'token=helloworld'

Uploads without the token will be rejected. Tokens can be stolen if sent in plain HTTP, so this option is best used with HTTPS.

HTTPS Option

Run with HTTPS:

# Generate self-signed certificate
openssl req -x509 -out localhost.pem -keyout localhost.pem -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost'

# The server root should not contain the certificate, for security reasons
cd server-root
python3 -m uploadserver -c localhost.pem

Note: This uses a self-signed certificate which clients such as web browser and cURL will warn about. Most browsers will allow you to proceed after adding an exception, and cURL will work if given the -k option. Using your own certificate from a certificate authority will avoid these warnings.

Breaking Changes in 1.0.0

  • File field in upload form renamed from file_1 to files, to reflect support for multiple file upload. Scripts using cURL will need to be upadted with the new field name.
  • Successful uploads now respond with 204 No Content instead of 200 OK, so that cURL will not default to printing the upload page at the terminal.

Credits

Most of uploadserver/__main__.py was copied from Python's http.server.

Thanks to lishoujun for sending the first pull request! (Added the token option.)

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

uploadserver-1.0.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

uploadserver-1.0.0-py3-none-any.whl (6.5 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