jsonsocket icon indicating copy to clipboard operation
jsonsocket copied to clipboard

This is a small Python library for sending data over sockets.

Results 7 jsonsocket issues
Sort by recently updated
recently updated
newest added

Hello! Just a proposition for more features. I added: - UDP class - Serialisation of pandas dataframe, series and numpy arrays - Async server and receiver with callbacks Code might...

Do I interpret this correctly that you are effectively allowing only a single client to connect? Even though the maximum amount of connections is set to 5 in the call...

Hello, thanks for this pgm. I have an issue with spawning server threads using the class Server. e.g., in a case like: ``` while True: server.accept() ct=sThread(server.client) ct.run() ``` I...

Tried to run example script on python 3.6 Win 10 x64 and met next error: ```C Traceback (most recent call last): File "", line 1, in runfile('C:/Users/user/Desktop/json_test.py', wdir='C:/Users/user/Desktop') File "C:\anaconda\lib\site-packages\spyder\utils\site\sitecustomize.py",...

thanks for your work @mdebbar, it has been very helpful. wanted to pass on my changes and show what use i made of it cheers.

Nice library, cleaned it up for some pep8 issues and added socket encode/decode so the it works on python3.

I need ssl support to all commit it when I add it for myself... I was thinking of adding some kind of UNIX socket connect attempt if on talking over...