urequests: Add example_xively.py as very basic example.

The main purpose is actually to show the need to call .close().
pull/68/merge
Paul Sokolovsky 2017-05-05 20:46:25 +03:00
rodzic 577457dbdd
commit d0c6ae0b31
1 zmienionych plików z 16 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,16 @@
try:
import urequests as requests
except ImportError:
import requests
r = requests.get("http://api.xively.com/")
print(r)
print(r.content)
print(r.text)
print(r.content)
print(r.json())
# It's mandatory to close response objects as soon as you finished
# working with them. On MicroPython platforms without full-fledged
# OS, not doing so may lead to resource leaks and malfunction.
r.close()