ydb-python-sdk
ydb-python-sdk copied to clipboard
YDB Python SDK
Bumps [pydantic](https://github.com/pydantic/pydantic) from 1.6.2 to 1.10.13. Release notes Sourced from pydantic's releases. V1.10.13 2023-09-27 What's Changed Update pip commands to install 1.10 by @chbndrhnns in pydantic/pydantic#6930 Make the v1 mypy...
Bumps [black](https://github.com/psf/black) from 22.12.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
``` driver_config = ydb.DriverConfig( 'grpc://ydb-ru.yandex.net:2135', '/ru/tutorial/home/testdb', credentials=ydb.credentials_from_env_variables(), root_certificates=ydb.load_ydb_root_certificate(), ) with ydb.Driver(driver_config) as driver: driver.wait(timeout=15) with ydb.SessionPool(driver) as pool: result = pool.retry_operation_sync(lambda session: session.transaction().execute("select DateTime::MakeTzDatetime(air_date) from episodes;", commit_tx=True)) print(result[0].rows) ``` Result:...
Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.7.4 to 3.9.4. Release notes Sourced from aiohttp's releases. 3.9.4 Bug fixes The asynchronous internals now set the underlying causes when assigning exceptions to the future objects...
main issue: https://github.com/ydb-platform/ydb/issues/3885
Bumps [idna](https://github.com/kjd/idna) from 3.2 to 3.7. Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time...
Bumps [idna](https://github.com/kjd/idna) from 2.10 to 3.7. Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time...
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en ## Pull request type Please check the type of change your PR introduces: - [ ] Bugfix -...
Support OAuth 2.0 Token Exchange (https://www.rfc-editor.org/rfc/rfc8693) JWT auth credentials provider ## Pull request type Please check the type of change your PR introduces: - [ ] Bugfix - [X] Feature...
# Feature Request **Describe the Feature Request** Now `describe_table` method returns `TableDescription` with field `indexes`. Each index in this field represented by class `TableIndex`, which doesn't have any information about...