Skip to content

Commit 5777628

Browse files
author
Vladimir I
committed
Fix gh-850
Added Python connectors and formated official python-connector mentioning in line with other connectors.
1 parent cd06e82 commit 5777628

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

doc/1.10/book/connectors/__python.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Python
33
=====================================================================
44

5+
`tarantool-python <http://github.com/tarantool/tarantool-python>`_
6+
is the official Python connector for Tarantool. It is not supplied as part
7+
of the Tarantool repository and must be installed separately (see below for details).
8+
59
Here is a complete Python program that inserts ``[99999,'Value','Value']`` into
610
space ``examples`` via the high-level Python API.
711

@@ -18,7 +22,9 @@ To prepare, paste the code into a file named :file:`example.py` and install
1822
the ``tarantool-python`` connector with either :samp:`pip install tarantool\>0.4`
1923
to install in :file:`/usr` (requires **root** privilege) or
2024
:samp:`pip install tarantool\>0.4 --user` to install in :file:`~` i.e. user's
21-
default directory. Before trying to run, check that the server instance is :ref:`listening <cfg_basic-listen>` at
25+
default directory.
26+
27+
Before trying to run, check that the server instance is :ref:`listening <cfg_basic-listen>` at
2228
``localhost:3301`` and that the space ``examples`` exists, as
2329
:ref:`described earlier <index-connector_setting>`.
2430
To run the program, say :samp:`python example.py`. The program will connect
@@ -32,3 +38,7 @@ necessary for good practice. For that, please see
3238
For an example of using Python API with
3339
`queue managers for Tarantool <https://github.com/tarantool/queue>`_, see
3440
`queue-python <https://github.com/tarantool/queue-python>`_ project at GitHub.
41+
Also there are several community driven Python connectors:
42+
* `asynctnt <https://github.com/igorcoding/asynctnt>`_ with asyncio support
43+
* `aiotarantool <https://github.com/shveenkov/aiotarantool>`_ also with asyncio support
44+
* `gtarantool <https://github.com/shveenkov/gtarantool>`_ with gevent support

0 commit comments

Comments
 (0)