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

After `reconnect()`, MQTTClient.socket is blocking by default. This commit aims to supplement that behaviour at times when `check_msg()` sets the socket to non-blocking. It may fix errors reported in #102...

I ran the pip install command given by the machine main website and this error occured: ERROR: File "setup.py" not found for legacy project micropython-machine from https://files.pythonhosted.org/packages/e1/31/a3282942b3e96881393db406130735913c647f0fc9e07a0d60d7b546b06b/micropython-machine-0.2.tar.gz#sha256=b8747926ee044547c5f5df09b8015977b4137c744800285ee92f307acc477223. Interestingly, a very...

* Add support for all format specifiers, support for `datefmt` using strftime, and support for Stream and File handlers. * Ports/boards that need to use `FileHandlers` should enable `MICROPY_PY_SYS_ATEXIT`, and...

Requires https://github.com/micropython/micropython-lib/pull/440

MicroPython's built-in deque lacks _many_ features but is implemented in C so is very lean and fast. The micropython-lib version is implemented in Python and has more features - but...

MicroPython replacement for time.monotonic suitable for timeouts / comparisons CPython time.monotonic() → float returns the value (in fractional seconds) of a monotonic clock, i.e. a clock that cannot go backwards....

Hi there, when invoking the `urequests` module on CPython, it will croak with ``` TypeError: %b requires a bytes-like object, or an object that implements __bytes__, not 'str' ``` when...

Hi All I was interested in using the micropython sqlite3 which looks like a wrapper around a C library libsqlite3 - which I cannot find. Could this be included in...