File: glossary.rst

package info (click to toggle)
python-aiohttp-session 2.12.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: python: 2,534; makefile: 197
file content (56 lines) | stat: -rw-r--r-- 1,261 bytes parent folder | download
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
.. _aiohttp-session-glossary:

==========
 Glossary
==========

.. if you add new entries, keep the alphabetical sorting!

.. glossary::

   aioredis

      :term:`asyncio` compatible module in the :term:`redis` library.

      https://redis-py.readthedocs.io/en/stable/examples/asyncio_examples.html

   aiomcache

      :term:`asyncio` compatible Memcached client library

      https://github.com/aio-libs/aiomcache

   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://docs.python.org/3/library/asyncio.html

   cryptography

      The libary used for encrypting secure cookied session

      https://cryptography.io

   pynacl

      Yet another libary used for encrypting secure cookied session

      https://pynacl.readthedocs.io

   session

      A namespace that is valid for some period of continual activity
      that can be used to represent a user's interaction with a web
      application.

   sqlalchemy

      The Python SQL Toolkit and Object Relational Mapper.

      http://www.sqlalchemy.org/