The easiest way to use sockets in Python!
pip install --user easynetwork
git clone https://github.com/francis-clairicia/EasyNetwork.git
cd EasyNetwork
pip install --user .
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/
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
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()
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())
This project is licensed under the terms of the Apache Software License 2.0.
AnyIO's typed attributes is incorporated in easynetwork.lowlevel.typed_attr
from anyio 4.2, which is distributed under the MIT license.