🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

netupload

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

netupload

Simple upload server for local network file transfers.

0.1.9
97

Supply Chain Security

100

Vulnerability

98

Quality

100

Maintenance

100

License

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Maintainers
1

netupload


PyPI - Version PyPI - License GitHub Repo

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.

How it works

Usage

Install the package:

pip install netupload

Start the server with the default options:

netupload

Options

netupload --host=0.0.0.0 --port=4000 --save-dir=./uploads
OptionDescriptionDefault
--hostHost to run the server on0.0.0.0
--portPort to run the server on4000
--save-dirDirectory to save uploaded files./uploads

Webpage

The server runs a webpage that you can access from any device on the same network. You will see the

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

 * Serving Flask app 'src.app'
 * Debug mode: off
 * Running on all addresses (0.0.0.0)
 * Running on http://127.0.0.1:4000
 * Running on http://192.168.1.123:4000 <--------- THIS ADDRESS WITH YOUR COMPUTER'S LOCAL IP

Navigate to the address shown in the terminal to access the webpage:

Webpage Screenshot

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