Metadata-Version: 2.1
Name: netupload
Version: 0.1.3
Summary: Simple upload server for local network file transfers.
Home-page: https://github.com/zpg6/netupload
Author: Zach Grimaldi
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: Flask

# netupload

Simple file upload server for when you need to send files around on your local network.

Sometimes you don't want to login to your email and don't have a USB so this can be a quick way to transfer files.

![Webpage Screenshot](./docs/webpage_screenshot.png)

## Usage

```
pip install -U netupload
```

```
netupload
```

## Options

```
netupload --host=0.0.0.0 --port=4000 --save-dir=./uploads
```

| Option     | Description                      | Default   |
| ---------- | -------------------------------- | --------- |
| --host     | Host to run the server on        | 0.0.0.0   |
| --port     | Port to run the server on        | 4000      |
| --save-dir | Directory to save uploaded files | ./uploads |
