A Python module that allows you to create and use simple sockets
A Python module that allows you to create and use simple sockets. The easysockets module can be installed using pip. or pip install git+https://github.com/Matthias1590/EasySockets.git You can also install it by cloning this repository and running the following commands: python3 setup.py build python3 setup.py install The easysockets module contains 3 main classes: ServerSocket, ClientSocket and Connection. Below are examples on how to use each of them. ServerSocket:
Read more