-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the Get Started tutorial for Python connector #4197
Conversation
0164a58
to
3740b47
Compare
3740b47
to
e3177eb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, seems cool
439b988
to
0d60ea7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
|
||
To get connected to the Tarantool server, say this: | ||
Now you can a client Python application that makes requests to this database. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now you can a client Python application that makes requests to this database. | |
Now you can create a client Python application that makes requests to this database. |
|
||
.. code-block:: python | ||
``connection.insert()`` is used to insert a tuple to the space. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
``connection.insert()`` is used to insert a tuple to the space. | |
``conn.insert()`` is used to insert a tuple to the space. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or Connection.insert()
if you refer to the library class instead of exact object in this example.
Same for occurrences of connection.<method_name>
below in text.
Updated topics:
crud
module (net.box/Go/Python tutorials).The
Connecting from Python
tutorial has the same steps and uses the same database as the Connecting to a database using net.box and Connecting from Go tutorials. The upcoming C/C++ tutorials are going to have the same layout.