I use urequests to access a couchdb database from an esp8266 micro-controller. I need to authenticate the session, and get a cookie back, that I can use in subsequent requests to the database. It will also be used for longpolling the database for changes.
response.cookies or responce.headers
is not supported by urequests. This all works in cPython, but not in Micropython.
Is there a way to access the raw response, or should I use another more complete library?