urequest.py
-
hello pycom ,i want need the urequest.py update of pycom the older one of github is update?because i try to make post with json data but it crash with no response. then i need to know if someone use it or have changed some instructions .thank you
-
There are many github deposit for urequest.
I don't know if you noticed that some librarie are for urequest and some for urequests
The last librairie I founded at this time for urequests was in the micro-python's deposit you can found here : https://github.com/micropython/micropython-lib
You can use it as simply as :
import urequests req = urequests.get("http://<your.personal.url>/", {"param1":"value1", "param2":"value2"} )