TCP Non-Block
A Simple Implementation of Non-Blocking TCP Socket Server.
Key Features
- Simple to Use
- Threading Built In
- Expandable - Does'nt use a thread per connection
- Stress Tested - Can handle 100+ connections (tested on a OVH VPS SSD 1)
Installation
You can install via python's pip
module:
Install with Offical Python Package Index:
python3 -m pip install tcpnonblock
or with this Git Respiratory
python3 -m pip install git+https://github.com/SamHDev/tcpnonblock.git
Note for Noobies: If python3
work then use python
Usage
You can import the libary with the following statement:
import tcpnonblock
Server Example
Here is a quick Example of a TCPSocket Server. This is an Echo Server that replies the message from a client.
server = tcpnonblock.TCPSocketServer()
@server.client_instance
class ClientInstance(tcpnonblock.TCPSocketServerInstance):
def connect(self):
print("Client Connected")
def disconnect(self):
print("Client Disconnected")
def message(self, msg):
print("Client Message: ",msg)
self.send("You Said: ", msg)
@server.on_start
def start(host, port):
print("Server Start")
@server.on_stop
def stop():
print("Server Stop")
server.listen("0.0.0.0", 8080)
server.start()
Client Example
Here is a quick Example of a TCPSocket Client to go with our Echo Server. This is an Echo Client that interacts with our Example.
client = remote.TCPSocketClient()
@client.on_open
def on_open():
print("Connected to Server")
client.send("Hello World!")
@client.on_close
def on_close():
print("Disconnected to Server")
@client.on_message
def on_message(msg):
print("Reply: ", msg)
client.connect("localhost", 8080)
Threading
What about that threading I mentioned earlier, well its this simple.
Just declare the threading
argument in the creation of the object.
It works for both TCPSocketServer
and TCPSocketClient
server = tcpnonblock.TCPSocketServer(threaded=True)
client = rtcpnonblock.TCPSocketClient(threaded=True)
The Thread will be created and started on .start()
License and Attributes
Created by Sam Huddart under alias SamHDev for the Blume Open Source Project. SamHDev/tcpnonblock
is licensed under the GNU General Public License v3.0 and is Open-Source as seen in LICENSE. Commercial use, Modification and Distribution are permmited. Although credit is not necessary, it is much obliged. If you do wish to credit the author, please link the respiratory and the author at github or website. Thank you for using our work.