The easiest way to use sockets in Python
Project description
EasyNetwork
The easiest way to use sockets in Python!
Installation
From PyPI repository
pip install --user easynetwork
From source
git clone https://github.com/francis-clairicia/EasyNetwork.git
cd EasyNetwork
pip install --user .
Overview
EasyNetwork completely encapsulates the socket handling, providing you with a higher level interface that allows an application/software to completely handle the logic part with Python objects, without worrying about how to process, send or receive data over the network.
The communication protocol can be whatever you want, be it JSON, Pickle, ASCII, structure, base64 encoded, compressed, or any other format that is not part of the standard library. You choose the data format and the library takes care of the rest.
This project is especially useful for simple message exchange between clients and servers.
Works with TCP and UDP.
Interested ? Here is the documentation : https://easynetwork.readthedocs.io/
Usage
TCP Echo server with JSON data
import asyncio
import logging
from collections.abc import AsyncGenerator
from typing import Any, TypeAlias
from easynetwork.protocol import StreamProtocol
from easynetwork.serializers import JSONSerializer
from easynetwork.servers import AsyncTCPNetworkServer
from easynetwork.servers.handlers import AsyncStreamClient, AsyncStreamRequestHandler
# These TypeAliases are there to help you understand
# where requests and responses are used in the code
RequestType: TypeAlias = Any
ResponseType: TypeAlias = Any
class JSONProtocol(StreamProtocol[ResponseType, RequestType]):
def __init__(self) -> None:
super().__init__(JSONSerializer())
class EchoRequestHandler(AsyncStreamRequestHandler[RequestType, ResponseType]):
def __init__(self) -> None:
self.logger: logging.Logger = logging.getLogger(self.__class__.__name__)
async def handle(
self,
client: AsyncStreamClient[ResponseType],
) -> AsyncGenerator[None, RequestType]:
# A JSON request has been sent by this client
data: Any = yield
self.logger.info(f"{client!r} sent {data!r}")
# As a good echo handler, the request is sent back to the client
await client.send_packet(data)
# Leaving the generator will NOT close the connection,
# a new generator will be created afterwards.
# You may manually close the connection if you want to:
# await client.aclose()
async def main() -> None:
host = None # Bind on all interfaces
port = 9000
protocol = JSONProtocol()
handler = EchoRequestHandler()
logging.basicConfig(
level=logging.INFO,
format="[ %(levelname)s ] [ %(name)s ] %(message)s",
)
async with AsyncTCPNetworkServer(host, port, protocol, handler) as server:
await server.serve_forever()
if __name__ == "__main__":
try:
asyncio.run(main())
except* KeyboardInterrupt:
pass
TCP Echo client with JSON data
from typing import Any, TypeAlias
from easynetwork.clients import TCPNetworkClient
from easynetwork.protocol import StreamProtocol
from easynetwork.serializers import JSONSerializer
RequestType: TypeAlias = Any
ResponseType: TypeAlias = Any
class JSONProtocol(StreamProtocol[RequestType, ResponseType]):
def __init__(self) -> None:
super().__init__(JSONSerializer())
def main() -> None:
with TCPNetworkClient(("localhost", 9000), JSONProtocol()) as client:
client.send_packet({"data": {"my_body": ["as json"]}})
response = client.recv_packet() # response should be the sent dictionary
print(response) # prints {'data': {'my_body': ['as json']}}
if __name__ == "__main__":
main()
Asynchronous version ( with async def
)
import asyncio
from easynetwork.clients import AsyncTCPNetworkClient
...
async def main() -> None:
async with AsyncTCPNetworkClient(("localhost", 9000), JSONProtocol()) as client:
await client.send_packet({"data": {"my_body": ["as json"]}})
response = await client.recv_packet()
print(response) # prints {'data': {'my_body': ['as json']}}
if __name__ == "__main__":
asyncio.run(main())
License
This project is licensed under the terms of the Apache Software License 2.0.
AnyIO's typed attributes
AnyIO's typed attributes is incorporated in easynetwork.lowlevel.typed_attr
from anyio 4.2, which is distributed under the MIT license.
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
File details
Details for the file easynetwork-1.0.0.tar.gz
.
File metadata
- Download URL: easynetwork-1.0.0.tar.gz
- Upload date:
- Size: 427.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3351400379cf5062422dc8849958a452427803d5022bb958a74b106eb7e0a4e5 |
|
MD5 | aec83a6a43bbec28002177f1d2ecbf4e |
|
BLAKE2b-256 | 45fdbcad812735587a8325612db417fd114127643e75556f375ec44272ae4125 |
File details
Details for the file easynetwork-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: easynetwork-1.0.0-py3-none-any.whl
- Upload date:
- Size: 228.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2922bfcfaf3e276256e5a260bcdab9e5884893f9fe8619d9efda675ae24099cf |
|
MD5 | 7a5eb984c987c0fbdc3e3491c24ec6d3 |
|
BLAKE2b-256 | 9d1f1dd4ebf516b9de6e748878eee7040e56859dd4d2316cbcf1be129997dcc2 |