Page 3 of 4

Re: micropython-lib - "distributed" uPython standard library

Posted: Sat Jan 20, 2018 11:50 am
by pythoncoder
pfalcon wrote:
Sun Jan 07, 2018 2:24 pm
The master repository of micropython-lib is now at https://github.com/pfalcon/micropython-lib . Some modules also require my fork of MicroPython, https://github.com/pfalcon/micropython , and there will be more such modules in the future. Majority of modules of course remain compatible with the upstream MicroPython.
I'm glad to see that the latest update to uasyncio has now propagated from your fork to micrropython-lib. I would be grateful if you or @Damien could clarify the situation about the relationship between your fork and the (erstwhile?) official library. I can't answer for anyone else, but I'm completely confused :?

Re: micropython-lib - "distributed" uPython standard library

Posted: Mon Jul 09, 2018 9:32 am
by pfalcon
For some time now, micropython-lib contains 3 different HTTP client modules. I wanted to add quick comparison/selection guide for them for a long time, and now I did: https://pypi.org/project/micropython-urllib.urequest/

Re: micropython-lib - "distributed" uPython standard library

Posted: Mon Jul 09, 2018 9:36 am
by mattyt
Your timing is impeccable - looking into the differences between these options was literally on my todo list for tonight! This is really helpful, thanks pfalcon!

Re: micropython-lib - "distributed" uPython standard library

Posted: Sat Oct 13, 2018 10:53 am
by pfalcon
pfalcon wrote:
Mon Jul 09, 2018 9:32 am
For some time now, micropython-lib contains 3 different HTTP client modules. I wanted to add quick comparison/selection guide for them for a long time, and now I did: https://pypi.org/project/micropython-urllib.urequest/
Ok, being spelled like that, it effectively opened road for [s]bloating up[/s] adding more features to "urequests". By now, it response header parsing by default (of course, can be disabled or overridden to save memory), processes redirects and works around some issues of non-compliant servers.

But there's pressure to add more and more [s]bloat[/s] features. Before giving up to that, I decided to snapshot the latest version of urequests, 0.8, as a new module uurequests (micro-urequests): https://pypi.org/project/micropython-uurequests/ . It may be useful to users of esp8266 and other low-memory systems.


To remind, the master micropython-lib repository is https://github.com/pfalcon/micropython-lib . Issues reports and patches adhering to Contributor Guidelines are welcome.

Re: micropython-lib - "distributed" uPython standard library

Posted: Wed Nov 07, 2018 7:23 am
by stlm
I was wondering lately what the state of the micropython-lib is. The last commit in the master branch is from February this year. Is there a specific reason why there were no new commits this year? There are lot's of open PRs with new modules that could replace some of the empty placeholder modules which would be great. Please, don't get me wrong. I really appreciate all the effort that has been made to build up the micropython-lib and I like working with it. But I also think it is far from finished, especially with all the placeholders around and I would just like to know if it makes sense to contribute more modules or changes as a PR to this repository or if there is "something new" coming up in the future?

Kind Regards

Re: micropython-lib - "distributed" uPython standard library

Posted: Thu Nov 22, 2018 5:09 am
by pfalcon
micropython-lib is actively depeloped: https://github.com/pfalcon/micropython-lib

Re: micropython-lib - "distributed" uPython standard library

Posted: Wed Nov 28, 2018 7:12 pm
by pfalcon
pfalcon wrote:
Sat Oct 13, 2018 10:53 am
But there's pressure to add more and more [s]bloat[/s] features. Before giving up to that, I decided to snapshot the latest version of urequests, 0.8, as a new module uurequests (micro-urequests):
Similar thing happened to "logging" module - extensions to it were recently contributed. Before merging them, the original logging state was capture as "ulogging".

Re: micropython-lib - "distributed" uPython standard library

Posted: Fri Jan 25, 2019 10:27 pm
by pfalcon
Finally coded up "venv" module: viewtopic.php?f=15&t=5869

Re: micropython-lib - "distributed" uPython standard library

Posted: Wed Feb 06, 2019 8:06 pm
by pfalcon
"argparse" module as was written by Damien was captured as "uargparse", before possibly adding more bloat to make "argparse" more compatible with CPython.

Problem with uaiohttpclient run witl pycopy

Posted: Tue Feb 12, 2019 9:38 pm
by eltomek
Trying to run micropython-lib's http.client renders the following error regardless of whether using @pfalcon's version of micropython-lib or the "official" one (https://github.com/micropython/micropython-lib/)

Code: Select all

tomek@ubuntu:~/src/micropython/ports/unix$ ./micropython ~/src/micropython-lib/http.client/example_client.py https://python.org
Traceback (most recent call last):
  File "/home/tomek/src/micropython-lib/http.client/example_client.py", line 1, in <module>
  File "/home/tomek/src/micropython-lib/http.client/http/client.py", line 69, in <module>
  File "/home/tomek/.micropython/lib/email/parser.py", line 12, in <module>
  File "/home/tomek/.micropython/lib/email/feedparser.py", line 27, in <module>
  File "/home/tomek/.micropython/lib/email/message.py", line 16, in <module>
  File "/home/tomek/.micropython/lib/email/utils.py", line 31, in <module>
  File "/home/tomek/.micropython/lib/datetime.py", line 1919, in <module>
  File "/home/tomek/.micropython/lib/datetime.py", line 1836, in _create
AttributeError: type object 'tzinfo' has no attribute '__new__'