Skip to content

Commit 050c6cd

Browse files
committed
README: More info about naming and links to PyPI search results.
Also, typo fixes.
1 parent 88c9eae commit 050c6cd

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ Usage
1616
micropython-lib packages are published on PyPI (Python Package Index),
1717
the standard Python community package repository: http://pypi.python.org/ .
1818
On PyPI, you can search for MicroPython related packages and read
19-
additional package information.
19+
additional package information. By convention, all micropython-lib package
20+
names are prefixed with "micropython-".
21+
Browse available packages
22+
[via this URL](https://pypi.python.org/pypi?%3Aaction=search&term=micropython).
23+
(Note: search results may include both micropython-lib and 3rd-party
24+
packages).
2025

2126
To install packages from PyPI for usage on your local system, use the
2227
`upip` tool, which is MicroPython's native package manager, similar to
23-
`upip`, which is used to install packages for CPython. `upip` is bundled
28+
`pip`, which is used to install packages for CPython. `upip` is bundled
2429
with MicroPython "Unix" port (i.e. if you build "Unix" port, you
2530
automatically have `upip` tool). Following examples assume that
2631
`micropython` binary is available on your `PATH`:
@@ -29,7 +34,7 @@ automatically have `upip` tool). Following examples assume that
2934
$ micropython -m upip install micropython-pystone
3035
...
3136
$ micropython
32-
>>> import pyston
37+
>>> import pystone
3338
>>> pystone.main()
3439
Pystone(1.2) time for 50000 passes = 0.534
3540
This machine benchmarks at 93633 pystones/second

0 commit comments

Comments
 (0)