Skip to content

Commit 076b92a

Browse files
lint fixes
1 parent 25bb636 commit 076b92a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

docs/integrations/language-clients/python/advanced-querying.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ client.query('SELECT device_id, dev_address, gw_address from devices', column_fo
409409
| Variant | object | - | Returns the matching Python type for the ClickHouse datatype stored for the value |
410410
| Dynamic | object | - | Returns the matching Python type for the ClickHouse datatype stored for the value |
411411

412-
413412
## External data {#external-data}
414413

415414
ClickHouse queries can accept external data in any ClickHouse format. This binary data is sent along with the query string to be used to process the data. Details of the External Data feature are [here](/engines/table-engines/special/external-data.md). The client `query*` methods accept an optional `external_data` parameter to take advantage of this feature. The value for the `external_data` parameter should be a `clickhouse_connect.driver.external.ExternalData` object. The constructor for that object accepts the following arguments:

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ There are two examples shown for connecting to ClickHouse:
7575

7676
#### Use a ClickHouse Connect client instance to connect to a ClickHouse server on localhost: {#use-a-clickhouse-connect-client-instance-to-connect-to-a-clickhouse-server-on-localhost}
7777

78-
7978
```python
8079
import clickhouse_connect
8180

@@ -88,7 +87,6 @@ client = clickhouse_connect.get_client(host='localhost', username='default', pas
8887
Use the connection details gathered earlier. ClickHouse Cloud services require TLS, so use port 8443.
8988
:::
9089

91-
9290
```python
9391
import clickhouse_connect
9492

0 commit comments

Comments
 (0)