Skip to main content

chumicro-ntp

An SNTP client that runs in your tick loop without blocking it.

Polls one server, advances on each runner tick, and gives you the unix seconds when the response lands. Pure Python, no compiled module, no time.sleep() — your LED keeps blinking through the network hop. UDP transport is injected so apps with a custom socket layer don't drag chumicro-sockets into the device deploy.


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_ntp

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

# CPython
pip install chumicro-ntp

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

Quick example

from chumicro_ntp import NTPClient
from chumicro_sockets import udp_socket
from chumicro_timing import ticks_ms

# On CircuitPython pass radio=wifi.radio; the kwarg is ignored on MP / CPython.
sock = udp_socket(radio=None)
sock.setblocking(False)                     # required — a blocking recv wedges on packet loss
client = NTPClient(socket=sock, server="pool.ntp.org")
request = client.query()
while not request.done:
    if client.check(ticks_ms()):
        client.handle(ticks_ms())
print("unix seconds:", request.unix_seconds)

chumicro_sockets.udp_socket builds the default bound UDP socket. Pass any object satisfying the sendto / recvfrom_into / close / setblocking contract (see NTPClient's docstring) to NTPClient(socket=...)chumicro_sockets.udp_socket and chumicro_sockets.testing.FakeUDPSocket are the built-in producers. NTPClient.from_config wires that default itself through the shared chumicro_sockets.sockets_factory module, imported lazily, so apps with a custom UDP transport keep chumicro-sockets out of their device deploy.

What's included

Symbol Purpose
NTPClient(socket, *, server="pool.ntp.org", port=123, timeout_ms=5000, ticks=None) Runner-shaped SNTP client. Single in-flight query at a time; mirrors HttpClient.busy.
NTPClient.query() Send a request; returns a NTPResult to poll.
NTPClient.check(now_ms) / handle(now_ms) Runner contract — handle drains the recv socket and detects timeouts.
NTPClient.cancel() Abort an in-flight query.
NTPResult Per-query handle. done, unix_seconds, error.
NTPError OSError subclass raised on protocol-level failures (short/malformed response, kiss-of-death, timeout, cancel).
chumicro_sockets.udp_socket(radio=None) Built-in bound UDP socket for NTPClient(socket=...). NTPClient.from_config reaches it through the shared chumicro_sockets.sockets_factory; a custom transport skips that import and keeps chumicro-sockets out of the deploy.

Where this fits

Depends on chumicro-sockets for UDP transport and chumicro-timing for ticks. A single pip install chumicro-ntp brings the stack. Used directly in app code; no other ChuMicro library depends on it.

Platform support

Pure-Python; runs identically on CPython, MicroPython, and CircuitPython.

Examples

Example What it shows
examples/ntp_query.py Real query against pool.ntp.org — wifi up, UDP socket via factory, runner-shaped poll loop. Cross-runtime (CP + MP).

Contributing

Working on chumicro-ntp 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

Download files

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

Source Distribution

chumicro_ntp-0.13.0.tar.gz (22.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_ntp-0.13.0-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file chumicro_ntp-0.13.0.tar.gz.

File metadata

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

File hashes

Hashes for chumicro_ntp-0.13.0.tar.gz
Algorithm Hash digest
SHA256 1743e7f68ae774fd890ee5b2a6a149d256210e2f77c9b5362d6d3c2b95abc31e
MD5 8c2aa865221ed50f5462a8528cba7258
BLAKE2b-256 0cabfeb1f0faa773b045dfce85d330f56d81a4ea8981ae649d5866e2743338a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chumicro_ntp-0.13.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_ntp-0.13.0-py3-none-any.whl.

File metadata

  • Download URL: chumicro_ntp-0.13.0-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for chumicro_ntp-0.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 80088a4a77163286dc1d2170ea2f802ad02f1a4ea3c384c0c311d8bd91df4822
MD5 7463a5bd9659e0a2b2e8bc5f19f47344
BLAKE2b-256 4c11d29f46f06693f18e931801f093e6db70a30898f03a648e37c262c93a2de9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chumicro_ntp-0.13.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.

Release history Release notifications | RSS feed

0.15.3

2 files

0.15.2

2 files

0.15.1

2 files

0.15.0

2 files

0.13.1

2 files

This release

0.13.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page