micropython-lib icon indicating copy to clipboard operation
micropython-lib copied to clipboard

Core Python libraries ported to MicroPython

Results 354 micropython-lib issues
Sort by recently updated
recently updated
newest added

Addition of an optional parameter which allows for the consumer to define headers to pass when making a HTTP request

Does anyone know how to create a USB device that acts as a mouse and keyboard at the same time? Examples here https://github.com/micropython/micropython-lib/tree/fbf7e120c6830d8d04097309e715bcab63dcca67/micropython/usb/examples/device are excellent, but I can only manage...

When webrepl starts, it prints out the IP address, however it does this by querying the network.WLAN object. This fail for board with an Ethernet interface but no WiFi interface....

G'day, All. I have been trying to find some solid evidence of this but have not managed to find a data sheet with the command. Given that I haven't found...

When using aioble/l2cap to send data from micropython to a cental like a phone, if the ble disconnects in the middle of a send process it can currently fail with...

This implementation provides a Debug Adapter Protocol (DAP) server that enables VS Code to debug MicroPython code with full breakpoint, stepping, and variable inspection capabilities. Features: - Manual breakpoints via...

Resolves errors when a stream is closed like: ``` --> Traceback (most recent call last): File "aiorepl.py", line 118, in task TypeError: ord() expected a character, but string of length...

CPython allows specifying a list of handlers in the initialization of logging with basicConfig(handlers=). This adds similar support but only with a single handler. It allows to initialize logging with...

Reading the official aiohttp documentation: https://docs.aiohttp.org/en/stable/client_reference.html I optimized my code to have a single `ClientSession` within my app to take advantage of connection pooling ```python class My_class: _clientSession= aiohttp.ClientSession() async...