Releases: adafruit/Adafruit_CircuitPython_Requests
Fix byte strings for Blinka compatibility
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Change socket.read to socket.recv
Changes calls from socket.read
to socket.recv
to match the latest ESP32SPI release.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Change socket.write to socket.send
Changes calls from socket.write
to socket.send
to match the latest ESP32SPI release.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Add Parse_Headers
Added parse_headers
method, made backwards-compatible changes to request
for handling parsed headers (and raise exceptions for unsupported header types).
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Updated examples
Adding more detailed examples showing the commonly-used requests methods in this library.
- GET
- Text Data
- JSON Data
- POST
- Data
- JSON Data
- GET
- Custom Headers
- HTTP Status Code Response, useful for interacting with APIs
- Convert response into JSON
dict.
object and parse it - Raw Byte Response
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Initial Release - Requests!
This library is provides a python-requests-like library for web interfacing.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.