Skip to content

Releases: adafruit/Adafruit_CircuitPython_Requests

1.4.1 - Added Black check, reran Black with Python 3 target.

10 Apr 18:18
1637d66

Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

1.4.0 - Upgrade to latest Pylint, implement Black formatting, added ethernet simpletest

20 Mar 15:27
85c92ec

Choose a tag to compare

We have upgraded Pylint checks to use the latest version of Pylint and implemented usage of Black Python formatting. This does not change the functionality of the code - it is designed to bring it up to current standards and make it more readable.

  • Remove pinned Pylint version number from build.yml file
  • Synced .pylintrc file to match Adafruit standard
  • Ran upgraded Pylint and applied any changes or new disables necessary
  • Ran Black formatter and allowed application of changes across entire repo

For more information on using Pylint and Black on your code, check out this guide on working with Pylint and Black

  • Additionally, a simpletest using the ethernet library was added

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

If data is bytearray do not encode as utf-8

04 Mar 20:54
c052e15

Choose a tag to compare

Thanks to @jimbobbennett for the update!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

If data is dictionary send it as form data

24 Feb 21:35
e8a7597

Choose a tag to compare

Thanks to @FoamyGuy for the update!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

Mini fix for header parsing

25 Jan 21:34
9d75832

Choose a tag to compare

This release includes:

  • We now handle if headers don't have anything after the colon (github was an issue)

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

1.1.4 - Changed CI from Travis to GitHub Actions

17 Jan 02:18

Choose a tag to compare

This release includes:

  • Migrating this repository from Travis to GitHub Actions. This has no effect on the behavior of the code itself.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-requests.

Read the docs for info on how to use it.

Fix byte strings for Blinka compatibility

16 Sep 22:24
ccfe4b7

Choose a tag to compare

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

29 Aug 23:52
31d7845

Choose a tag to compare

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

29 Aug 19:45
56d7643

Choose a tag to compare

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

02 Aug 16:21
59a467e

Choose a tag to compare

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.