2017-07-01 15:09:40 -04:00
|
|
|
.. _micropython_lib:
|
|
|
|
|
2015-06-04 18:53:26 -04:00
|
|
|
MicroPython libraries
|
|
|
|
=====================
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2017-05-14 17:26:44 -04:00
|
|
|
.. warning::
|
|
|
|
|
|
|
|
Important summary of this section
|
|
|
|
|
|
|
|
* MicroPython implements a subset of Python functionality for each module.
|
|
|
|
* To ease extensibility, MicroPython versions of standard Python modules
|
2017-12-23 14:21:08 -05:00
|
|
|
usually have ``u`` ("micro") prefix.
|
2017-05-14 17:26:44 -04:00
|
|
|
* Any particular MicroPython variant or port may miss any feature/function
|
2017-12-23 14:21:08 -05:00
|
|
|
described in this general documentation (due to resource constraints or
|
|
|
|
other limitations).
|
2017-05-14 17:26:44 -04:00
|
|
|
|
|
|
|
|
2016-06-02 06:05:13 -04:00
|
|
|
This chapter describes modules (function and class libraries) which are built
|
2017-12-23 14:21:08 -05:00
|
|
|
into MicroPython. There are a few categories of such modules:
|
2016-06-01 17:08:07 -04:00
|
|
|
|
2016-06-02 06:05:13 -04:00
|
|
|
* Modules which implement a subset of standard Python functionality and are not
|
|
|
|
intended to be extended by the user.
|
|
|
|
* Modules which implement a subset of Python functionality, with a provision
|
|
|
|
for extension by the user (via Python code).
|
|
|
|
* Modules which implement MicroPython extensions to the Python standard libraries.
|
2017-12-23 14:21:08 -05:00
|
|
|
* Modules specific to a particular `MicroPython port` and thus not portable.
|
2016-06-01 17:08:07 -04:00
|
|
|
|
2017-12-23 14:21:08 -05:00
|
|
|
Note about the availability of the modules and their contents: This documentation
|
2016-06-01 17:08:07 -04:00
|
|
|
in general aspires to describe all modules and functions/classes which are
|
2017-12-23 14:21:08 -05:00
|
|
|
implemented in MicroPython project. However, MicroPython is highly configurable, and
|
2016-06-01 17:08:07 -04:00
|
|
|
each port to a particular board/embedded system makes available only a subset
|
|
|
|
of MicroPython libraries. For officially supported ports, there is an effort
|
|
|
|
to either filter out non-applicable items, or mark individual descriptions
|
|
|
|
with "Availability:" clauses describing which ports provide a given feature.
|
2017-12-23 14:21:08 -05:00
|
|
|
|
2016-06-02 06:05:13 -04:00
|
|
|
With that in mind, please still be warned that some functions/classes
|
2017-12-23 14:21:08 -05:00
|
|
|
in a module (or even the entire module) described in this documentation **may be
|
|
|
|
unavailable** in a particular build of MicroPython on a particular system. The
|
2016-06-02 06:05:13 -04:00
|
|
|
best place to find general information of the availability/non-availability
|
|
|
|
of a particular feature is the "General Information" section which contains
|
2017-12-23 14:21:08 -05:00
|
|
|
information pertaining to a specific `MicroPython port`.
|
2016-06-01 17:08:07 -04:00
|
|
|
|
|
|
|
Beyond the built-in libraries described in this documentation, many more
|
|
|
|
modules from the Python standard library, as well as further MicroPython
|
2017-08-22 02:33:31 -04:00
|
|
|
extensions to it, can be found in `micropython-lib`.
|
2016-04-26 18:32:38 -04:00
|
|
|
|
|
|
|
Python standard libraries and micro-libraries
|
|
|
|
---------------------------------------------
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2016-04-26 18:32:38 -04:00
|
|
|
The following standard Python libraries have been "micro-ified" to fit in with
|
|
|
|
the philosophy of MicroPython. They provide the core functionality of that
|
|
|
|
module and are intended to be a drop-in replacement for the standard Python
|
2016-11-15 17:15:25 -05:00
|
|
|
library. Some modules below use a standard Python name, but prefixed with "u",
|
|
|
|
e.g. ``ujson`` instead of ``json``. This is to signify that such a module is
|
|
|
|
micro-library, i.e. implements only a subset of CPython module functionality.
|
|
|
|
By naming them differently, a user has a choice to write a Python-level module
|
|
|
|
to extend functionality for better compatibility with CPython (indeed, this is
|
2017-08-22 02:33:31 -04:00
|
|
|
what done by the `micropython-lib` project mentioned above).
|
2014-11-02 18:37:02 -05:00
|
|
|
|
2016-11-15 17:15:25 -05:00
|
|
|
On some embedded platforms, where it may be cumbersome to add Python-level
|
|
|
|
wrapper modules to achieve naming compatibility with CPython, micro-modules
|
|
|
|
are available both by their u-name, and also by their non-u-name. The
|
2017-12-23 14:21:08 -05:00
|
|
|
non-u-name can be overridden by a file of that name in your library path (``sys.path``).
|
|
|
|
For example, ``import json`` will first search for a file ``json.py`` (or package
|
|
|
|
directory ``json``) and load that module if it is found. If nothing is found,
|
2016-11-15 17:15:25 -05:00
|
|
|
it will fallback to loading the built-in ``ujson`` module.
|
2014-11-02 18:37:02 -05:00
|
|
|
|
2015-10-30 18:14:48 -04:00
|
|
|
.. only:: port_unix
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 18:32:38 -04:00
|
|
|
|
2016-06-08 17:26:44 -04:00
|
|
|
builtins.rst
|
2016-10-30 16:13:52 -04:00
|
|
|
array.rst
|
2015-10-30 18:14:48 -04:00
|
|
|
cmath.rst
|
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ubinascii.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
ucollections.rst
|
2017-07-02 17:55:09 -04:00
|
|
|
uerrno.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
uio.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ujson.rst
|
2016-04-26 18:55:06 -04:00
|
|
|
uos.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ure.rst
|
2017-06-16 04:28:06 -04:00
|
|
|
uselect.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
usocket.rst
|
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2017-11-09 17:09:43 -05:00
|
|
|
_thread.rst
|
2015-10-30 18:14:48 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. only:: port_pyboard
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 18:32:38 -04:00
|
|
|
|
2016-06-08 17:26:44 -04:00
|
|
|
builtins.rst
|
2016-10-30 16:13:52 -04:00
|
|
|
array.rst
|
2015-06-10 17:29:56 -04:00
|
|
|
cmath.rst
|
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ubinascii.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
ucollections.rst
|
2017-07-02 17:55:09 -04:00
|
|
|
uerrno.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
uio.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ujson.rst
|
2016-04-26 18:55:06 -04:00
|
|
|
uos.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ure.rst
|
2017-06-16 04:28:06 -04:00
|
|
|
uselect.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
usocket.rst
|
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2017-11-09 17:09:43 -05:00
|
|
|
_thread.rst
|
2015-06-10 17:29:56 -04:00
|
|
|
|
|
|
|
.. only:: port_wipy
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 18:32:38 -04:00
|
|
|
|
2016-06-08 17:26:44 -04:00
|
|
|
builtins.rst
|
2016-10-30 16:13:52 -04:00
|
|
|
array.rst
|
2015-06-10 17:29:56 -04:00
|
|
|
gc.rst
|
|
|
|
sys.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ubinascii.rst
|
|
|
|
ujson.rst
|
2016-04-26 18:55:06 -04:00
|
|
|
uos.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ure.rst
|
2017-06-16 04:28:06 -04:00
|
|
|
uselect.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
usocket.rst
|
|
|
|
ussl.rst
|
|
|
|
utime.rst
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2016-03-25 10:33:05 -04:00
|
|
|
.. only:: port_esp8266
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2016-06-08 17:26:44 -04:00
|
|
|
builtins.rst
|
2016-10-30 16:13:52 -04:00
|
|
|
array.rst
|
2016-03-25 10:33:05 -04:00
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ubinascii.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
ucollections.rst
|
2017-07-02 17:55:09 -04:00
|
|
|
uerrno.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 07:02:54 -04:00
|
|
|
uio.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ujson.rst
|
2016-04-26 18:55:06 -04:00
|
|
|
uos.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ure.rst
|
2017-06-16 04:28:06 -04:00
|
|
|
uselect.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
usocket.rst
|
2016-05-22 16:57:26 -04:00
|
|
|
ussl.rst
|
2016-04-26 18:32:38 -04:00
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2016-04-26 18:14:16 -04:00
|
|
|
|
|
|
|
|
2016-04-26 18:37:45 -04:00
|
|
|
MicroPython-specific libraries
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
Functionality specific to the MicroPython implementation is available in
|
|
|
|
the following libraries.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2017-04-03 17:29:23 -04:00
|
|
|
btree.rst
|
2017-02-27 01:16:32 -05:00
|
|
|
framebuf.rst
|
2016-04-26 18:37:45 -04:00
|
|
|
machine.rst
|
|
|
|
micropython.rst
|
|
|
|
network.rst
|
|
|
|
uctypes.rst
|
|
|
|
|
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. only:: port_pyboard
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
Libraries specific to the pyboard
|
|
|
|
---------------------------------
|
2015-10-14 06:32:01 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
The following libraries are specific to the pyboard.
|
2015-10-14 06:32:01 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
2015-10-14 06:32:01 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
pyb.rst
|
2017-01-22 22:37:10 -05:00
|
|
|
lcd160cr.rst
|
2014-11-02 18:37:02 -05:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. only:: port_wipy
|
|
|
|
|
|
|
|
Libraries specific to the WiPy
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
The following libraries are specific to the WiPy.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
2015-10-19 09:19:34 -04:00
|
|
|
wipy.rst
|
2014-10-30 21:37:19 -04:00
|
|
|
|
2015-05-26 17:34:31 -04:00
|
|
|
|
|
|
|
.. only:: port_esp8266
|
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
Libraries specific to the ESP8266
|
|
|
|
---------------------------------
|
2015-05-26 17:34:31 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
The following libraries are specific to the ESP8266.
|
2015-05-26 17:34:31 -04:00
|
|
|
|
2015-06-10 17:29:56 -04:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
2015-05-26 17:34:31 -04:00
|
|
|
|
2016-04-07 09:44:10 -04:00
|
|
|
esp.rst
|