This is a repository of libraries designed to be useful for writing MicroPython applications.
 
 
Go to file
Paul Sokolovsky d87573b113 uasyncio.udp: Initial attempt of UDP support for uasyncio.
API is not stable and will guaranteedly change, likely completely.

Currently, this tries to folow the same idea as TCP open_connection()
call, but that doesn't make much sense, so that will likely change.
2017-12-03 00:07:12 +02:00
__future__
_libc
_markupbase
abc
argparse
asyncio
asyncio_slow
base64
binascii
binhex
bisect
calendar
cgi
cmd
code
codecs
codeop
collections
collections.defaultdict
collections.deque
concurrent.futures
contextlib
copy
cpython-uasyncio
csv
curses
curses.ascii
datetime datetime: Add test from CPython 3.3.3. 2017-11-12 00:28:14 +02:00
dbm
decimal
difflib
email.charset
email.encoders
email.errors
email.feedparser
email.header
email.internal
email.message
email.parser
email.utils
errno
fcntl
ffilib
fnmatch
formatter
fractions
ftplib
functools
getopt
getpass
gettext
glob
gzip
hashlib
heapq
hmac
html
html.entities
html.parser
http.client
imaplib
imp
importlib
inspect
io
ipaddress
itertools
json
keyword
linecache
locale
logging
machine
mailbox
mailcap
mimetypes
multiprocessing
nntplib
numbers
operator
optparse
os
os.path
pathlib
pdb
pickle pickle: Very rough implementation of pickle loads from imported modules. 2017-11-12 00:34:04 +02:00
pickletools
pkg_resources
pkgutil
platform
poplib
posixpath
pprint
profile
pty
pwd
pyb
pystone
pystone_lowmem
queue
quopri
random random: Release 0.2. 2017-11-26 00:04:07 +02:00
re-pcre
readline
reprlib
runpy
sched
select
selectors
shelve
shlex
shutil
signal
smtplib
socket
socketserver
sqlite3
ssl
stat
statistics
string
stringprep
struct
subprocess
sys
tarfile
telnetlib
tempfile
test
test.pystone
test.support test.support: Add dummy @requires_IEEE_754 decorator. 2017-11-12 00:32:46 +02:00
textwrap
threading
time
timeit
trace
traceback
tty
types
typing
uaiohttpclient uaiohttpclient: Release 0.5. 2017-11-26 19:01:31 +02:00
uasyncio uasyncio: README: Mention .awrite() and .aclose() methods vs asyncio. 2017-12-02 12:59:33 +02:00
uasyncio.core
uasyncio.queues
uasyncio.synchro uasyncio.synchro: Release 0.1. 2017-11-26 10:10:39 +02:00
uasyncio.udp/uasyncio uasyncio.udp: Initial attempt of UDP support for uasyncio. 2017-12-03 00:07:12 +02:00
ucontextlib
ucurses
umqtt.robust
umqtt.simple
unicodedata unicodedata: Release 0.0.3. 2017-11-09 19:15:47 +02:00
unittest
upip
upysh
urequests urequests: Release 0.5.1. 2017-12-02 12:57:06 +02:00
urllib
urllib.parse
urllib.urequest
utarfile
uu
uuid
venv
warnings
weakref
xmltok
zipfile
zlib
.gitignore
CONTRIBUTING.md
LICENSE
Makefile
README.md
make_metadata.py make_metadata.py: Support plain README files for long_desc. 2017-11-27 00:16:24 +02:00
optimize_upip.py

README.md

micropython-lib

micropython-lib is a project to develop a non-monolothic standard library for MicroPython (https://github.com/micropython/micropython). Each module or package is available as a separate distribution package from PyPI. Each module comes from one of the following sources (and thus each module has its own licensing terms):

  • written from scratch specifically for MicroPython
  • ported from CPython
  • ported from some other Python implementation, e.g. PyPy
  • some modules actually aren't implemented yet and are dummy

Note that the main target of micropython-lib is a "Unix" port of MicroPython. Actual system requirements vary per module. For example, if a module is not related to I/O, it may work without problems on bare-metal ports too (e.g. pyboard).

Usage

micropython-lib packages are published on PyPI (Python Package Index), the standard Python community package repository: http://pypi.python.org/ . On PyPI, you can search for MicroPython related packages and read additional package information. By convention, all micropython-lib package names are prefixed with "micropython-" (the reverse is not true - some package starting with "micropython-" aren't part of micropython-lib and were released by 3rd parties).

Browse available packages via this URL.

To install packages from PyPI for usage on your local system, use the upip tool, which is MicroPython's native package manager, similar to pip, which is used to install packages for CPython. upip is bundled with MicroPython "Unix" port (i.e. if you build "Unix" port, you automatically have upip tool). Following examples assume that micropython binary is available on your PATH:

$ micropython -m upip install micropython-pystone
...
$ micropython
>>> import pystone
>>> pystone.main()
Pystone(1.2) time for 50000 passes = 0.534
This machine benchmarks at 93633 pystones/second

Run micropython -m upip --help for more information about upip.

Development

To install modules during development, use make install. By default, all available packages will be installed. To install a specific module, add the MOD=<module> parameter to the end of the make install command.

If you would like to trace evolution of MicroPython packaging support, you may find following links useful (note that they may contain outdated information):

Guidelines for packaging MicroPython modules for PyPI: