Metadata-Version: 2.1
Name: uploadserver
Version: 0.1.2
Summary: Python's http.server extended to include a file upload page
Home-page: https://github.com/Densaugeo/uploadserver
Author: Densaugeo
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# uploadserver

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

[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://mit-license.org/)

## Installation

~~~
python3 -m pip install uploadserver
~~~

May require sudo depending on your distro.

## Usage

~~~
python3 -m uploadserver
~~~

Accepts the same options as [http.server](https://docs.python.org/3/library/http.server.html).

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

## Credits

Most of `uploadserver/__main__.py` was copied from Python's `http.server.main()`.


