Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

udp-filetransfer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

udp-filetransfer

Reliable filetransfer over UDP

  • 0.4.5
  • PyPI
  • Socket score

Maintainers
1

UDP Filetransfer

Fast file transfer over UDP Broadcast.

Install (CLI)

From PyPI

pip install udp-filetransfer

From Git

git clone https://gitlab.com/Trickster-Animations/udp-filetransfer.git
cd udp-filetransfer
poetry || pip install poetry
poetry install

Now, you can use it through poetry:
poetry run python -m udp_filetransfer
To use it from system python, do:

poetry build
cd dist
pip3 install *.whl

Now, you can use it by running:
python3 -m udp_filetransfer

Usage (CLI)

To send a file:

python3 -m udp_filetransfer send [filepath]

To receive a file:

python3 -m udp_filetransfer receive

Note: The receiver has to be started first.

Install (Dependency)

Just add the udp-filetransfer package, like with any other dependency.

Usage (Dependency)

# receive.py
import udp_filetransfer
output = udp_filetransfer.receive()
print(output)
# send.py
from sys import argv
import udp_filetransfer
udp_filetransfer.send(argv[1])

Note: Just like with CLI, the receiver needs to be started first.

Credits

Package maintained by Trickster Animations

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