Skip to content

Tags: MicroPythonNexus/micropython-lib

Tags

v1.23.0

Toggle v1.23.0's commit message
pyusb: Add MicroPython implementation of PyUSB library.

Signed-off-by: Damien George <damien@micropython.org>

v1.22.2

Toggle v1.22.2's commit message
aiohttp: Add new aiohttp package.

Implement `aiohttp` with `ClientSession`, websockets and `SSLContext`
support.

Only client is implemented and API is mostly compatible with CPython
`aiohttp`.

Signed-off-by: Carlos Gil <carlosgilglez@gmail.com>

v1.22.1

Toggle v1.22.1's commit message
aiohttp: Add new aiohttp package.

Implement `aiohttp` with `ClientSession`, websockets and `SSLContext`
support.

Only client is implemented and API is mostly compatible with CPython
`aiohttp`.

Signed-off-by: Carlos Gil <carlosgilglez@gmail.com>

v1.22.0

Toggle v1.22.0's commit message
aiohttp: Add new aiohttp package.

Implement `aiohttp` with `ClientSession`, websockets and `SSLContext`
support.

Only client is implemented and API is mostly compatible with CPython
`aiohttp`.

Signed-off-by: Carlos Gil <carlosgilglez@gmail.com>

v1.21.0

Toggle v1.21.0's commit message
requests: Fix detection of iterators in chunked data requests.

Chunked detection does not work as generators never have an `__iter__`
attribute.  They do have `__next__`.

Example that now works with this commit:

    def read_in_chunks(file_object, chunk_size=4096):
        while True:
            data = file_object.read(chunk_size)
            if not data:
                break
            yield data

    file = open(filename, "rb")
    r = requests.post(url, data=read_in_chunks(file))

v1.20.0

Toggle v1.20.0's commit message
aioble: Fix descriptor flag handling.

Removes the workaround for micropython/issues/6864.

Sets the default flags for discovered descriptors to be WRITE,
so that d.write() will implicitly set response=True.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>

v1.9.3

Toggle v1.9.3's commit message
threading: Release 0.1.

v1.9

Toggle v1.9's commit message
uasyncio: Release 1.2.

v1.8.6

Toggle v1.8.6's commit message
machine: Release 0.2.1.

v1.8.4

Toggle v1.8.4's commit message
optimize_upip.py: Script to optimize archives for low-heap upip usage.

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy