We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a424d27 commit 3359668Copy full SHA for 3359668
adafruit_httpserver/__init__.py
@@ -8,7 +8,7 @@
8
Socket based HTTP Server for CircuitPython
9
10
11
-* Author(s): Dan Halbert
+* Author(s): Dan Halbert, Michał Pokusa
12
13
Implementation Notes
14
--------------------
@@ -30,12 +30,14 @@
30
require_authentication,
31
)
32
from .exceptions import (
33
+ ServerStoppedError,
34
AuthenticationError,
- BackslashInPathError,
35
- FileNotExistsError,
36
InvalidPathError,
37
ParentDirectoryReferenceError,
+ BackslashInPathError,
38
ResponseAlreadySentError,
39
+ ServingFilesDisabledError,
40
+ FileNotExistsError,
41
42
from .headers import Headers
43
from .methods import (
0 commit comments