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

While looking at the MicroPython `requests` module (on the git HEAD), I noticed this: If you make a request with HTTP basic auth (a username/password) and did not specify a...

This adds support for the new `SSLSession` class implemented in https://github.com/micropython/micropython/pull/12780.

As part of my journey to port dataclasses to micropython-lib/python-stdlib (see https://github.com/orgs/micropython/discussions/13741#discussioncomment-8579351), I needed to port `functools.total_ordering` first. I have tried to follow all the contribution guidelines, but I have...

enhancement

Implements a new module, `utop`, as suggested in https://github.com/micropython/micropython/pull/12732#issuecomment-1790040708. Currently only works on the `esp32` port, and requires https://github.com/micropython/micropython/pull/12732. An animated GIF to demonstrate what the output looks like: ![utop](https://github.com/micropython/micropython-lib/assets/954385/5b16b50a-3d21-4132-9844-1a97e26fe55a)...

Hi all, first PR here. Let me know if I did something wrong. I noticed many packages in various places (github, Python package index, blogs/guide websites, etc) still guide users...

Has anyone ever implemented an unsubscribe method for umqtt? Cause it would help me a lot for my master's thesis. I've tried to do that but because of my limited...

Mostly small cleanups, and explicit disable for examples/tests which insert the current directory into the path before importing.

Hi, I want to know if it this module is compatible with Bluetooth Low Energy.

When running tests from subfolders, import by "full dotted path" rather than just module name, removing the need to add the test parent folder to sys.path. --- I found a...

Hello, I've added a simple function that performs [AES CMAC](https://www.rfc-editor.org/rfc/rfc4493.html) using the builtin [cryptolib library](https://docs.micropython.org/en/latest/library/cryptolib.html). The code is from my own repository [micropython-aes-cmac](https://github.com/KianBahasadri/micropython-aes-cmac). I did my best to meet the...