NumpySocket
NumpySocket copied to clipboard
Send Numpy Arrays with TCP/IP Sockets
it should be easy enough to do this: https://stackoverflow.com/questions/48506460/python-simple-socket-client-server-using-asyncio however, it might be possible to just provide our socket to: [asyncio.open_connection](https://docs.python.org/3/library/asyncio-stream.html) but the problem is the reader/writer that are returned...
with the regular Python socket, sending and receiving is a little different, from https://wiki.python.org/moin/UdpCommunication): for UDP send ``` import socket UDP_IP = "127.0.0.1" UDP_PORT = 5005 MESSAGE = b"Hello, World!"...
#8 points to a need for tests and automated testing. Tests should run on every PR across many different versions for Python and Numpy. Additionally, it might be a good...