Here is my code:
from kivy.network.urlrequest import UrlRequest def got_json(req, result): for key, value in req.resp_headers.items(): print('{}: {}'.format(key, value)) req = UrlRequest('https://httpbin.org/headers', got_json)
I want to print the response from the URL
1.4m articles
1.4m replys
5 comments
57.0k users