We use cookies to enhance your browsing experience and help us improve our websites. To improve our website, we carefully select third parties that use cookies to allow us to serve specific content and achieve the purposes set out in our cookie policy. For more information on how to make adjustments through your browser to the cookies being used on your device, please click Find Out More link. By closing this banner or continuing to browse our website, you agree to our use of such cookies. FIND OUT MORE
Hi
my function:
with this function, i receive max 10 Bytes/s… that’s really not acceptable! What do i wrong?
Do you have some optimations/solutions for me?
Or how would you solve the problem of receiving more than 4000 Bytes?
My solution:
Why don’t you read strings, that will give much more speed?
This is an interesting problem. How fast to send binary "raw" data, not strings?
Python string is a table off chars. One char is one byte. So you can transfer any information you want in the python string.
This function allows you to encode integer as string (of size from 1B to 4B).