platform – access to underlying platform’s identifying data — MicroPython latest documentation (original) (raw)

This is the documentation for the latest development branch of MicroPython and may refer to features that are not available in released versions.

If you are looking for the documentation for a specific release, use the drop-down menu on the left and select the desired version.

This module implements a subset of the corresponding CPython module, as described below. For more information, refer to the original CPython documentation: platform.

This module tries to retrieve as much platform-identifying data as possible. It makes this information available via function APIs.

Functions

platform.platform()

Returns a string identifying the underlying platform. This string is composed of several substrings in the following order, delimited by dashes (-):

For example, this could be"MicroPython-1.20.0-xtensa-IDFv4.2.4-with-newlib3.0.0".

platform.python_compiler()

Returns a string identifying the compiler used for compiling MicroPython.

platform.libc_ver()

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.