Last active 1728456389

nithir's Avatar nithir revised this gist 1728456389. Go to revision

1 file changed, 13 insertions

web.py(file created)

@@ -0,0 +1,13 @@
1 + import urequests as requests
2 +
3 + gc.collect()
4 + r = requests.get("http://jsonplaceholder.typicode.com/todos/")
5 + print(r)
6 + gc.collect()
7 + print(r.content)
8 + gc.collect()
9 + print(r.text)
10 + gc.collect()
11 + print(r.content)
12 + gc.collect()
13 + print(r.json())
Newer Older