A simple Python module for creating a TCP chat connection between two computers to send commands or information.
Project description
TcpChat
TcpChat is a simple Python module for creating a TCP chat connection between two computers to send commands or information. GitHub, PyPi
Installation
Use the package manager pip to install TcpChat.
pip install ct-tcpchat
Simple usage
from ct_tcpchat import TcpChat
import logging
def callback_function(message):
print(f"Received message: {message}")
connect_to_ip = "192.168.1.50" # Enter the IP Address from the other computer
on_port = 44785 # Choose a port for the connection. (Optional. Default = 44785)
connection = TcpChat(connect_to_ip, callback_function, on_port, log_level=logging.INFO)
connection.start()
# Example of sending a message from the main thread
connection.send_message("Hello from server")
Overview
This library provides two classes for TCP communication: TcpChat and TcpChatBlocking. Each class serves different purposes based on the need for non-blocking or blocking operations.
TcpChat (Non-blocking using threading)
The TcpChat class is designed for non-blocking TCP communication by leveraging Python's threading capabilities. This class allows for concurrent handling of server and client connections, ensuring that the main application remains responsive and can handle other tasks simultaneously.
Key Features:
- Threading for Concurrency: The server and client operations run on separate threads, preventing the main application loop from being blocked.
- Automatic Connection Management: Automatically handles retries for client connections and accepts incoming connections on the server.
- Callback Mechanism: Processes incoming messages using a user-defined callback function.
- Logging Support: Includes logging to monitor connection status, message transfers, and errors.
Usage Example:
from ct_tcpchat import TcpChat
import logging
import time
def callback_function(message):
print(f"Received message: {message}")
connect_to_ip = "192.168.1.50"
port = 44785
log_level = logging.DEBUG
connection = TcpChat(connect_to_ip=connect_to_ip, callback=callback_function, port=port, log_level=log_level)
connection.retry_connection_interval = 2
if __name__ == "__main__":
try:
connection.start()
while not connection.connected_event.is_set():
time.sleep(1)
while connection.connected_event.is_set():
message = input("Message: ")
if message:
connection.send_message(message)
except KeyboardInterrupt:
print("\nExiting program...")
connection.close_connections()
TcpChatBlocking (Blocking without threading)
The TcpChatBlocking class is designed for blocking TCP communication without using threading. This class is suitable for applications where the user wants to control the main loop and manage threading themselves or where the simplicity of blocking operations is desired.
Key Features:
- No Threaded Operation: Does not use threads, meaning that server and client operations will block the main loop until they complete.
- User-managed Loop: Provides a process_events method that the user can call within their main loop to handle incoming connections and messages.
- Callback Mechanism: Processes incoming messages using a user-defined callback function.
- Logging Support: Includes logging to monitor connection status, message transfers, and errors.
Usage Example:
from ct_tcpchat import TcpChatBlocking
import logging
import time
def callback_function(message):
print(f"Received message: {message}")
connect_to_ip = "192.168.1.50"
port = 44785
log_level = logging.DEBUG
connection = TcpChatBlocking(connect_to_ip=connect_to_ip, callback=callback_function, port=port, log_level=log_level)
connection.retry_connection_interval = 2
if __name__ == "__main__":
try:
connection.start()
while True:
message = input("Message: ")
if message:
connection.send_message(message)
connection.process_events()
except KeyboardInterrupt:
print("\nExiting program...")
connection.close_connections()
Key Differences:
-
Threading:
TcpChatuses threading, making it non-blocking and suitable for applications requiring concurrency.TcpChatBlockingdoes not use threading, making it blocking and simpler but requiring the user to manage the main loop.
-
Main Loop Management:
TcpChatautomatically manages its own threads for server and client operations.TcpChatBlockingprovides methods to be called in the user's main loop, giving the user more control over the execution flow.
-
Use Case Suitability:
TcpChatis ideal for applications needing responsiveness and concurrency, such as GUIs or real-time systems.TcpChatBlockingis ideal for simpler applications or where the user prefers to manage threading themselves, such as in command-line tools or basic scripts.
Extra functions
TcpChat.get_local_ip() # Returns own IP Address
TcpChat.close_connections() # Closes all the connections
TcpChat.retry_connection_interval = 2 # Set the retry interval (Default = 5 seconds)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ct_tcpchat-0.1.1.tar.gz.
File metadata
- Download URL: ct_tcpchat-0.1.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c9de3b4a1f08a26aeaa89cd4c604d13559a7856a4501e563d54088596188fb9
|
|
| MD5 |
6b7aaafbbcd817109e9990a8d6500e83
|
|
| BLAKE2b-256 |
0fe76faa64bad97da30f87816bd5c55790936f421b9927267ac986c37cad1ace
|
File details
Details for the file ct_tcpchat-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ct_tcpchat-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e26f5eab769a416fa38f620f27a339926b7db565907c00c1037851fdda9a5986
|
|
| MD5 |
08dfe53ccf652e42047e1965f5f7f4e6
|
|
| BLAKE2b-256 |
190df5f147b367e3f550f8cb8575cd879b7b0be1d82d546d90347ffa3fd43152
|