1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
.. _aiohttp-glossary:
==========
Glossary
==========
.. if you add new entries, keep the alphabetical sorting!
.. glossary::
:sorted:
aiodns
DNS resolver for asyncio.
https://pypi.python.org/pypi/aiodns
asyncio
The library for writing single-threaded concurrent code using
coroutines, multiplexing I/O access over sockets and other
resources, running network clients and servers, and other
related primitives.
Reference implementation of :pep:`3156`
https://pypi.python.org/pypi/asyncio/
callable
Any object that can be called. Use :func:`callable` to check
that.
chardet
The Universal Character Encoding Detector
https://pypi.python.org/pypi/chardet/
cchardet
cChardet is high speed universal character encoding detector -
binding to charsetdetect.
https://pypi.python.org/pypi/cchardet/
gunicorn
Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for
UNIX.
http://gunicorn.org/
keep-alive
A technique for communicating between HTTP client and server
when connection is not closed after sending response but kept
open for sending next request through the same socket.
It makes communication faster by getting rid of connection
establishment for every request.
nginx
Nginx [engine x] is an HTTP and reverse proxy server, a mail
proxy server, and a generic TCP/UDP proxy server.
https://nginx.org/en/
resource
A concept reflects the HTTP **path**, every resource corresponds
to *URI*.
May have a unique name.
Contains :term:`route`\'s for different HTTP methods.
route
A part of :term:`resource`, resource's *path* coupled with HTTP method.
web-handler
An endpoint that returns HTTP response.
websocket
A protocol providing full-duplex communication channels over a
single TCP connection. The WebSocket protocol was standardized
by the IETF as :rfc:`6455`
yarl
A library for operating with URL objects.
https://pypi.python.org/pypi/yarl
.. disqus::
:title: aiohttp glossary
|