2017-07-01 20:09:40 +01:00
|
|
|
.. _micropython_lib:
|
|
|
|
|
2015-06-04 23:53:26 +01:00
|
|
|
MicroPython libraries
|
|
|
|
=====================
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2017-05-14 22:26:44 +01: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
|
|
|
|
usually have ``u`` (micro) prefix.
|
|
|
|
* Any particular MicroPython variant or port may miss any feature/function
|
|
|
|
described in this general documentation, due to resource constraints.
|
|
|
|
|
|
|
|
|
2016-06-02 11:05:13 +01:00
|
|
|
This chapter describes modules (function and class libraries) which are built
|
|
|
|
into MicroPython. There are a few categories of modules:
|
2016-06-01 22:08:07 +01:00
|
|
|
|
2016-06-02 11:05:13 +01: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.
|
2016-06-01 22:08:07 +01:00
|
|
|
* Modules specific to a particular port and thus not portable.
|
|
|
|
|
|
|
|
Note about the availability of modules and their contents: This documentation
|
|
|
|
in general aspires to describe all modules and functions/classes which are
|
|
|
|
implemented in MicroPython. However, MicroPython is highly configurable, and
|
|
|
|
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.
|
2016-06-02 11:05:13 +01:00
|
|
|
With that in mind, please still be warned that some functions/classes
|
|
|
|
in a module (or even the entire module) described in this documentation may be
|
|
|
|
unavailable in a particular build of MicroPython on a particular board. The
|
|
|
|
best place to find general information of the availability/non-availability
|
|
|
|
of a particular feature is the "General Information" section which contains
|
2016-06-01 22:08:07 +01:00
|
|
|
information pertaining to a specific port.
|
|
|
|
|
|
|
|
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 07:33:31 +01:00
|
|
|
extensions to it, can be found in `micropython-lib`.
|
2016-04-26 23:32:38 +01:00
|
|
|
|
|
|
|
Python standard libraries and micro-libraries
|
|
|
|
---------------------------------------------
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2016-04-26 23:32:38 +01: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 22:15:25 +00: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 07:33:31 +01:00
|
|
|
what done by the `micropython-lib` project mentioned above).
|
2014-11-02 23:37:02 +00:00
|
|
|
|
2016-11-15 22:15:25 +00: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
|
|
|
|
non-u-name can be overridden by a file of that name in your package path.
|
|
|
|
For example, ``import json`` will first search for a file ``json.py`` or
|
|
|
|
directory ``json`` and load that package if it is found. If nothing is found,
|
|
|
|
it will fallback to loading the built-in ``ujson`` module.
|
2014-11-02 23:37:02 +00:00
|
|
|
|
2015-10-30 22:14:48 +00:00
|
|
|
.. only:: port_unix
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 23:32:38 +01:00
|
|
|
|
2016-06-08 22:26:44 +01:00
|
|
|
builtins.rst
|
2016-10-30 20:13:52 +00:00
|
|
|
array.rst
|
2015-10-30 22:14:48 +00:00
|
|
|
cmath.rst
|
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ubinascii.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
ucollections.rst
|
2017-07-02 22:55:09 +01:00
|
|
|
uerrno.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
uio.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ujson.rst
|
2016-04-26 23:55:06 +01:00
|
|
|
uos.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ure.rst
|
2017-06-16 09:28:06 +01:00
|
|
|
uselect.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
usocket.rst
|
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2017-11-09 22:09:43 +00:00
|
|
|
_thread.rst
|
2015-10-30 22:14:48 +00:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. only:: port_pyboard
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 23:32:38 +01:00
|
|
|
|
2016-06-08 22:26:44 +01:00
|
|
|
builtins.rst
|
2016-10-30 20:13:52 +00:00
|
|
|
array.rst
|
2015-06-10 22:29:56 +01:00
|
|
|
cmath.rst
|
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ubinascii.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
ucollections.rst
|
2017-07-02 22:55:09 +01:00
|
|
|
uerrno.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
uio.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ujson.rst
|
2016-04-26 23:55:06 +01:00
|
|
|
uos.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ure.rst
|
2017-06-16 09:28:06 +01:00
|
|
|
uselect.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
usocket.rst
|
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2017-11-09 22:09:43 +00:00
|
|
|
_thread.rst
|
2015-06-10 22:29:56 +01:00
|
|
|
|
|
|
|
.. only:: port_wipy
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2016-04-26 23:32:38 +01:00
|
|
|
|
2016-06-08 22:26:44 +01:00
|
|
|
builtins.rst
|
2016-10-30 20:13:52 +00:00
|
|
|
array.rst
|
2015-06-10 22:29:56 +01:00
|
|
|
gc.rst
|
|
|
|
sys.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ubinascii.rst
|
|
|
|
ujson.rst
|
2016-04-26 23:55:06 +01:00
|
|
|
uos.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ure.rst
|
2017-06-16 09:28:06 +01:00
|
|
|
uselect.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
usocket.rst
|
|
|
|
ussl.rst
|
|
|
|
utime.rst
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2016-03-25 14:33:05 +00:00
|
|
|
.. only:: port_esp8266
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2016-06-08 22:26:44 +01:00
|
|
|
builtins.rst
|
2016-10-30 20:13:52 +00:00
|
|
|
array.rst
|
2016-03-25 14:33:05 +00:00
|
|
|
gc.rst
|
|
|
|
math.rst
|
|
|
|
sys.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ubinascii.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
ucollections.rst
|
2017-07-02 22:55:09 +01:00
|
|
|
uerrno.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
uhashlib.rst
|
|
|
|
uheapq.rst
|
2016-05-02 12:02:54 +01:00
|
|
|
uio.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ujson.rst
|
2016-04-26 23:55:06 +01:00
|
|
|
uos.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ure.rst
|
2017-06-16 09:28:06 +01:00
|
|
|
uselect.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
usocket.rst
|
2016-05-22 21:57:26 +01:00
|
|
|
ussl.rst
|
2016-04-26 23:32:38 +01:00
|
|
|
ustruct.rst
|
|
|
|
utime.rst
|
|
|
|
uzlib.rst
|
2016-04-26 23:14:16 +01:00
|
|
|
|
|
|
|
|
2016-04-26 23:37:45 +01:00
|
|
|
MicroPython-specific libraries
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
Functionality specific to the MicroPython implementation is available in
|
|
|
|
the following libraries.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2017-04-03 22:29:23 +01:00
|
|
|
btree.rst
|
2017-02-27 06:16:32 +00:00
|
|
|
framebuf.rst
|
2016-04-26 23:37:45 +01:00
|
|
|
machine.rst
|
|
|
|
micropython.rst
|
|
|
|
network.rst
|
|
|
|
uctypes.rst
|
|
|
|
|
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. only:: port_pyboard
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
Libraries specific to the pyboard
|
|
|
|
---------------------------------
|
2015-10-14 11:32:01 +01:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
The following libraries are specific to the pyboard.
|
2015-10-14 11:32:01 +01:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
2015-10-14 11:32:01 +01:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
pyb.rst
|
2017-01-23 03:37:10 +00:00
|
|
|
lcd160cr.rst
|
2014-11-02 23:37:02 +00:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. only:: port_wipy
|
|
|
|
|
|
|
|
Libraries specific to the WiPy
|
|
|
|
---------------------------------
|
|
|
|
|
|
|
|
The following libraries are specific to the WiPy.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
2015-10-19 14:19:34 +01:00
|
|
|
wipy.rst
|
2014-10-31 01:37:19 +00:00
|
|
|
|
2015-05-26 22:34:31 +01:00
|
|
|
|
|
|
|
.. only:: port_esp8266
|
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
Libraries specific to the ESP8266
|
|
|
|
---------------------------------
|
2015-05-26 22:34:31 +01:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
The following libraries are specific to the ESP8266.
|
2015-05-26 22:34:31 +01:00
|
|
|
|
2015-06-10 22:29:56 +01:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
2015-05-26 22:34:31 +01:00
|
|
|
|
2016-04-07 14:44:10 +01:00
|
|
|
esp.rst
|