A python module for making netwroking (especially sending files) easier
Project description
# easySocket
Version 1.0.3
“easySocket” is a module for Python that’s based on the “socket” module and aims to make tasks like sending long texts or files easier/simpler.
I wrote this module, because I wanted to send an image with the socket module and found it annoying to always spend multiple lines of code to be able to send an image that was bigger than the maximum amount of bytes sendable with one socket.send command.
## Example
`python import easySocket c = host_tcp("0.0.0.0", 8000) easySocket.send_file("./flower.png", c) `
This is all you need to do to send an image file using easySocket
## Install
`shell pip install easySocket `
## Documentation
Host a tcp connection with one function:
` host_tcp(my_ip, port) `
Connect to a tcp conenction with one function:
` connect_tcp(ip, port) `
Send a file over a tcp connection independent of size:
`python send_file(location, recipient) `
Send a text over a tcp connection independent of size:
` send_text(text, recipient) `
Receive data from one of the two functions above:
` rcv_data(sender) `
## Contributors
Niklas Ziermann
## Copyright & License
© Niklas Ziermann
MIT License
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
File details
Details for the file easySocket-1.0.3.tar.gz
.
File metadata
- Download URL: easySocket-1.0.3.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf84213e603dda86c04543073b48fe3a45399833f63d7e41a1813eb1b618ab04 |
|
MD5 | 689025805c7c201f746f7c03c3dba501 |
|
BLAKE2b-256 | 858a77be06871e2b1986ea6ec2689cc6fd91e1673495de25f4e111109cf697c6 |