Skip to content

Releases: adafruit/Adafruit_CircuitPython_HTTPServer

0.5.3 - Explicitly set accepted socket to blocking

25 Oct 20:22
f9345f2
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

0.5.2 - Shrunk buffer size for file read to send as HTTPResponse

18 Oct 15:13
ba2da43
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

0.5.1 - Made copyright stay up to date in docs/conf.py

26 Aug 02:39
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

0.5.0 - Allow access to request body

19 Aug 20:12
ea9a2e0
Compare
Choose a tag to compare

Added the ability to access the body of a request.

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

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

Read the docs for info on how to use it.

0.4.1 - Switched to pyproject.toml

09 Aug 19:33
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

0.4.0 - Allow changing incoming buffer size

08 Aug 13:28
96b045b
Compare
Choose a tag to compare

Added getter and setter for the size of the incoming buffer bytearray. Additionally, documentation has been improved by including more examples in the documentation page for examples. Thanks @karlfl!

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

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

Read the docs for info on how to use it.

0.3.0 - Allow non-blocking socket calls

22 Jul 14:44
b218af3
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

What's Changed

  • Allow Non-Blocking Socket Calls by @karlfl in #10

Full Changelog: 0.2.0...0.3.0

0.2.0 - Allow explicit polling instead of just serve_forever() loop

06 Jul 00:58
142c97d
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

What's Changed

  • Split serve_forever to allow polling in loop and add another example with polling in while loop. by @karlfl in #7

New Contributors

  • @karlfl made their first contribution in #7

Full Changelog: 0.1.4...0.2.0

0.1.4 - Repo documentation and config updates

07 Jun 16:39
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

0.1.3 - Use split to parse request header

18 May 12:55
ca2f648
Compare
Choose a tag to compare

What's Changed

  • Change request handling to use split instead of regular expressions. by @cthulahoops in #3

New Contributors

Full Changelog: 0.1.2...0.1.3


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

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

Read the docs for info on how to use it.