summaryrefslogtreecommitdiffstats
path: root/python/python3-h2/README
diff options
context:
space:
mode:
author Steven Voges <svoges.sbo@gmail.com>2022-09-05 09:33:15 +0100
committer Dave Woodfall <dave@slackbuilds.org>2022-09-05 09:33:15 +0100
commitcb2594ce8e26fc709a1c144d3bb3b17b69ada274 (patch)
tree99199d7f20dfab0ac9cad4bcc36fd7b5a80c3d9c /python/python3-h2/README
parente26bf015643f57b024d4aa70c94bcfe5eccb53a6 (diff)
downloadslackbuilds-cb2594ce8e26fc709a1c144d3bb3b17b69ada274.tar.gz
slackbuilds-cb2594ce8e26fc709a1c144d3bb3b17b69ada274.tar.xz
python/python3-h2: Added (HTTP/2 Protocol)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Diffstat (limited to 'python/python3-h2/README')
-rw-r--r--python/python3-h2/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/python3-h2/README b/python/python3-h2/README
new file mode 100644
index 0000000000..81147d529f
--- /dev/null
+++ b/python/python3-h2/README
@@ -0,0 +1,12 @@
+h2 is a HTTP/2 protocol stack, written entirely in Python. The goal of
+h2 is to be a common HTTP/2 stack for the Python ecosystem, usable in
+all programs regardless of concurrency model or environment.
+
+To achieve this, h2 is entirely self-contained: it does no I/O of any
+kind, leaving that up to a wrapper library to control. This ensures
+that it can seamlessly work in all kinds of environments, from
+single-threaded code to Twisted.
+
+Its goal is to be 100% compatible with RFC 7540, implementing a
+complete HTTP/2 protocol stack build on a set of finite state
+machines. Its secondary goals are to be fast, clear, and efficient.