@@ -22,18 +22,16 @@ With pip (recommended)
22
22
23
23
The recommended way to install the ``tarantool `` package is using ``pip ``.
24
24
25
- For Tarantool version < 1.6.0, get the ``0.3.* `` connector version::
26
-
27
- $ pip install tarantool\<0.4
28
-
29
- For a later Tarantool version, get the ``0.5.* `` connector version::
25
+ .. code-block :: bash
30
26
31
- $ pip install tarantool\>0.4
27
+ $ pip install tarantool
32
28
33
29
ZIP archive
34
30
^^^^^^^^^^^
35
31
36
- You can also download zip archive, unpack it and run::
32
+ You can also download zip archive, unpack it and run:
33
+
34
+ .. code-block :: bash
37
35
38
36
$ python setup.py install
39
37
@@ -42,11 +40,7 @@ Development version
42
40
43
41
You can also install the development version of the package using ``pip ``.
44
42
45
- For Tarantool version < 1.6.0, get the ``stable `` branch::
46
-
47
- $ pip install git+https://github.com/tarantool/tarantool-python.git@stable
48
-
49
- For a later Tarantool version, use the ``master `` branch::
43
+ .. code-block :: bash
50
44
51
45
$ pip install git+https://github.com/tarantool/tarantool-python.git@master
52
46
@@ -55,10 +49,8 @@ For a later Tarantool version, use the ``master`` branch::
55
49
What is Tarantool?
56
50
------------------
57
51
58
- `Tarantool `_ is an in-memory NoSQL database with a Lua application server on board.
59
- It combines the network programming power of Node.JS
60
- with data persistency capabilities of Redis.
61
- It's open-source, licensed under `BSD-2-Clause `_.
52
+ `Tarantool `_ is an in-memory computing platform originally designed by
53
+ `VK `_ and released under the terms of `BSD license `_.
62
54
63
55
Features
64
56
--------
@@ -97,7 +89,7 @@ Run tests
97
89
98
90
On Linux:
99
91
100
- .. code-block :: console
92
+ .. code-block :: bash
101
93
102
94
$ python setup.py test
103
95
@@ -141,7 +133,10 @@ Open ``localhost:8000`` in your browser to read the docs.
141
133
.. _`Tarantool homepage` : https://tarantool.io
142
134
.. _`Tarantool on GitHub` : https://github.com/tarantool/tarantool
143
135
.. _`Tarantool documentation` : https://www.tarantool.io/en/doc/latest/
136
+ .. _`VK` : https://vk.company
144
137
.. _`Client-server protocol specification` : https://www.tarantool.io/en/doc/latest/dev_guide/internals/box_protocol/
138
+ .. _`BSD` :
139
+ .. _`BSD license` :
145
140
.. _`BSD-2-Clause` : https://opensource.org/licenses/BSD-2-Clause
146
141
.. _`asynctnt` : https://github.com/igorcoding/asynctnt
147
142
.. _`feature comparison table` : https://www.tarantool.io/en/doc/latest/book/connectors/#python-feature-comparison
0 commit comments