mpy-utils
mpy-utils copied to clipboard
Faster transfer for binaries
micropython includes uzlib
and ubinascii
so we could get a lot better throughput using a combination of those instead of repr
.
uzlib
helps quite a lot with source code and ubinascii
helps a lot with binaries (since repr
ends up full of \xf0 type codes, better to base64 encode them)