""" Access to underlying platform’s identifying data. MicroPython module: https://docs.micropython.org/en/v1.26.0/library/platform.html CPython module: :mod:`python:platform` https://docs.python.org/3/library/platform.html . This module tries to retrieve as much platform-identifying data as possible. It makes this information available via function APIs. --- Module: 'platform' on micropython-v1.26.0-rp2-RPI_PICO """ # MCU: {'mpy': 'v6.3', 'build': '', 'ver': '1.26.0', 'arch': 'armv6m', 'version': '1.26.0', 'port': 'rp2', 'board': 'RPI_PICO', 'family': 'micropython', 'board_id': 'RPI_PICO', 'variant': '', 'cpu': 'RP2040'} # Stubber: v1.26.0 from __future__ import annotations from _typeshed import Incomplete from typing import Tuple from typing_extensions import Awaitable, TypeAlias, TypeVar def platform() -> str: """ Returns a string identifying the underlying platform. This string is composed of several substrings in the following order, delimited by dashes (``-``): - the name of the platform system (e.g. Unix, Windows or MicroPython) - the MicroPython version - the architecture of the platform - the version of the underlying platform - the concatenation of the name of the libc that MicroPython is linked to and its corresponding version. For example, this could be ``"MicroPython-1.20.0-xtensa-IDFv4.2.4-with-newlib3.0.0"``. """ ... def python_compiler() -> str: """ Returns a string identifying the compiler used for compiling MicroPython. """ ... def libc_ver() -> Tuple: """ Returns a tuple of strings *(lib, version)*, where *lib* is the name of the libc that MicroPython is linked to, and *version* the corresponding version of this libc. """ ...