Skip to content

Commit 60d00a7

Browse files
authored
Update index.md
1 parent decf5f9 commit 60d00a7

File tree

1 file changed

+3
-3
lines changed
  • docs/integrations/language-clients/python

1 file changed

+3
-3
lines changed

docs/integrations/language-clients/python/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ settings = {'merge_tree_min_rows_for_concurrent_read': 65535,
355355
client.query("SELECT event_type, sum(timeout) FROM event_errors WHERE event_time > '2022-08-01'", settings=settings)
356356
```
357357

358-
### Client _command_ Method {#client-_command_-method}
358+
### Client `command` Method {#client-command-method}
359359

360360
Use the `Client.command` method to send SQL queries to the ClickHouse Server that do not normally return data or returns
361361
a single primitive or array value rather than a full dataset. This method takes the following parameters:
@@ -387,7 +387,7 @@ result
387387
Out[7]: 110
388388
```
389389

390-
### Client _query_ Method {#client-_query_-method}
390+
### Client `query` Method {#client-query-method}
391391

392392
The `Client.query` method is the primary way to retrieve a single "batch" dataset from the ClickHouse Server. It
393393
utilizes the Native ClickHouse format over HTTP to transmit large datasets (up to approximately one million rows)
@@ -465,7 +465,7 @@ generator):
465465
Each of these methods returns a `ContextStream` object that must be opened via a `with` statement to start consuming the
466466
stream. See [Advanced Queries (Streaming Queries)](#streaming-queries) for details and examples.
467467

468-
### Client _insert_ Method {#client-_insert_-method}
468+
### Client `insert` method {#client-insert-method}
469469

470470
For the common use case of inserting multiple records into ClickHouse, there is the `Client.insert` method. It takes the
471471
following parameters:

0 commit comments

Comments
 (0)