Skip to main content

Non-blocking HTTP/1.1 client for CircuitPython, MicroPython, and CPython.

Project description

chumicro-requests

A non-blocking HTTP/1.1 client — your LED keeps blinking through a TLS handshake.

A requests-flavored surface that advances one chunk per runner tick — connect, send, recv, parse — so your control loop never stalls waiting for a peer. Plain HTTP, HTTPS (live-verified on real boards), POST / PUT / PATCH / DELETE, JSON helper, redirect handling, Transfer-Encoding: chunked decode, and stream=True for bodies bigger than RAM — read a firmware image into a 512-byte buffer, chunk by chunk.


Part of the ChuMicro family — small, focused Python libraries for microcontrollers and laptops. Browse all libraries.

Install

# CircuitPython (after `circup bundle-add ChuMicro/ChuMicro-Bundle`)
circup install chumicro_requests

# MicroPython
mpremote mip install github:ChuMicro/ChuMicro-Bundle/chumicro_requests

# CPython
pip install chumicro-requests

For bundle setup, pre-compiled .mpy bundles, the experimental channel, and details on PyPI naming, see the chumicro INSTALL guide.

Quick example

from chumicro_requests import HttpClient
from chumicro_sockets.sockets_factory import connector_factory
from chumicro_timing import ticks_ms

client = HttpClient(transport_factory=connector_factory())
handle = client.get("http://api.example.com/now", timeout_ms=5000)

while not handle.done:
    if client.check(ticks_ms()):
        client.handle(ticks_ms())

response = handle.result          # raises HttpError on failure
print(response.status_code)       # 200
print(response.headers["content-type"])
print(response.body)              # raw response bytes
print(response.text)              # decoded str (charset sniffed from Content-Type)
print(response.json())            # parsed JSON when Content-Type is application/json

What's included

Symbol Purpose
HttpClient Runner-shaped HTTP/1.1 client; check(now_ms) / handle(now_ms); per-verb methods plus generic request(...); stream=True for incremental bodies; cancel() aborts in flight.
RequestHandle Per-request handle: .done, .result, .error; .read_body_into(buffer) drains a streamed body.
Response Status code, reason, headers, raw body, URL; .text, .json(), .encoding; .streamed on streamed exchanges.
chumicro_requests.generators Opt-in submodule: yield from-shaped fetch / get / post / ... one-shots and stream + BodyReader for chunked body reads under Runner.add_generator.
CaseInsensitiveDict Header dict with case-insensitive lookups.
WhenOversized Policy enum for responses past max_body_bytes.
chumicro_sockets.sockets_factory.connector_factory(...) Shared module: convenience connection-factory wired to chumicro-sockets.
parse_url(url) URL → (scheme, host, port, path).
parse_charset(content_type) Extract charset from a Content-Type header value.
encode_request(...) Build raw HTTP request bytes.
ResponseParser Streaming response state machine.
HttpError + subclasses HttpBusyError, HttpTimeoutError, HttpProtocolError, HttpURLError, HttpOversizedError.
chumicro_requests.testing.FakeHttpClient Host-only fake for downstream test suites.

Where this fits

Depends on chumicro-sockets for TCP / TLS and chumicro-timing for ticks. Used directly in app code.

Platform support

Works on CPython, MicroPython, and CircuitPython. Pure Python — no native extensions.

Examples

Example What it shows
periodic_get.py Periodic GET on a real CP/MP board. Brings wifi up, hits a configured URL every N seconds, prints status + body length, drives an LED-blink counter to verify the request never blocks the loop. Reads wifi + target URL from runtime_config.msgpack (chumicro-workspace) with a constants fallback. Cross-runtime (CP + MP).

Wiring wifi credentials for examples and functional tests

The hardware-prefixed examples + real-network suites in functional_tests/test_real_*.py need wifi credentials. See docs/wiring-wifi-credentials.md for the workspace-based and raw single-file paths. The library itself never reads TOML — it takes a transport_factory and goes; config wiring is application-layer.

Contributing

Working on chumicro-requests itself? Clone the mono-repo if you haven't already — the rest of the workflow assumes you're inside that workspace.

pip install -e .[test]
pytest tests/                  # host-side tests
pytest functional_tests/       # on-device tests (needs a board registered in devices.yml)

Register a board before running functional tests: chumicro-workspace add-device <id> --address <port>.

Docs

📖 Stable docs · Experimental docs

Find this library

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chumicro_requests-0.19.0.tar.gz (67.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chumicro_requests-0.19.0-py3-none-any.whl (26.3 kB view details)

Uploaded Python 3

File details

Details for the file chumicro_requests-0.19.0.tar.gz.

File metadata

  • Download URL: chumicro_requests-0.19.0.tar.gz
  • Upload date:
  • Size: 67.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for chumicro_requests-0.19.0.tar.gz
Algorithm Hash digest
SHA256 0590d23778a755a5debb97a11a8e6b7cd432ec761a16fad8426ec6426f71d2fb
MD5 7d1985b2ebdec73c78d5938888125c63
BLAKE2b-256 ca2edeb7f5e1514c357df9432d429c3399e80ec2096cb8ba54fb7f58749ac043

See more details on using hashes here.

Provenance

The following attestation bundles were made for chumicro_requests-0.19.0.tar.gz:

Publisher: promote.yml on ChuMicro/ChuMicro

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file chumicro_requests-0.19.0-py3-none-any.whl.

File metadata

File hashes

Hashes for chumicro_requests-0.19.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8fc3caad7097f39d31dc542208ba34347b33a11344053d25d9d0a59ffe8c5cb8
MD5 fbb63b55cfc1c98bb0ec0820074a683b
BLAKE2b-256 13912cbb5a40dde2066205eed6b58ed6185884cc32a2582e6412bc2ba72a171d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chumicro_requests-0.19.0-py3-none-any.whl:

Publisher: promote.yml on ChuMicro/ChuMicro

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page