diff options
author | alexv-smirnov <alexv-smirnov@yandex-team.ru> | 2022-02-23 07:04:30 +0300 |
---|---|---|
committer | alexv-smirnov <alexv-smirnov@yandex-team.ru> | 2022-02-23 07:04:30 +0300 |
commit | a79f2c74005436321655a314344ee19ae53e5919 (patch) | |
tree | 77cdcc026a30ca60c5c1812d4fc2c50b7cbff52c | |
parent | 48ea8d8b90bee5ac9effeee7fef16ec93cdc4f1e (diff) | |
download | ydb-a79f2c74005436321655a314344ee19ae53e5919.tar.gz |
ydb docs python sdk simplified example launch
ref:3503a6b71126e4460be5a9f3fe66fda70e525890
-rw-r--r-- | ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_custom.md | 4 | ||||
-rw-r--r-- | ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_docker.md | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_custom.md b/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_custom.md index 52a5b67916..5eda5743b4 100644 --- a/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_custom.md +++ b/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_custom.md @@ -5,8 +5,8 @@ Выполните команду по следующему образцу: ``` bash -( export <auth_mode_var>="<auth_mode_value>" && \ -python3 ydb-python-sdk/examples/basic_example_v1/ -e <endpoint> -d <database> ) +<auth_mode_var>="<auth_mode_value>" \ +python3 ydb-python-sdk/examples/basic_example_v1/ -e <endpoint> -d <database> ``` , где diff --git a/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_docker.md b/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_docker.md index 3b6f39d006..3325915acd 100644 --- a/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_docker.md +++ b/ydb/docs/ru/core/reference/ydb-sdk/example/python/_includes/run_docker.md @@ -1,6 +1,6 @@ Для соединения с развернутой локальной базой данных YDB по сценарию [Docker](../../../../../getting_started/ydb_docker.md) в конфигурации по-умолчанию выполните следующую команду: ``` bash -( export YDB_ANONYMOUS_CREDENTIALS=1 && \ -python3 ydb-python-sdk/examples/basic_example_v1/ -e grpc://localhost:2136 -d /local ) +YDB_ANONYMOUS_CREDENTIALS=1 \ +python3 ydb-python-sdk/examples/basic_example_v1/ -e grpc://localhost:2136 -d /local ``` |