Skip to content

Commit 3bdfd02

Browse files
lint fixes
1 parent 821dd68 commit 3bdfd02

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,5 +250,3 @@ insert_file(client, 'example_table', 'my_data.csv',
250250
settings={'input_format_allow_errors_ratio': .2,
251251
'input_format_allow_errors_num': 5})
252252
```
253-
254-

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ ClickHouse queries can accept external data in any ClickHouse format. This binar
424424
| structure | str or seq of str | A list of column name + data type in the data (see examples). Either `structure` or `types` is required |
425425
| mime_type | str | Optional MIME type of the file data. Currently ClickHouse ignores this HTTP subheader |
426426

427-
428427
To send a query with an external CSV file containing "movie" data, and combine that data with an `directors` table already present on the ClickHouse server:
429428

430429
```python
@@ -453,4 +452,3 @@ When using time zone aware data types in queries - in particular the Python `dat
453452
5. Finally, if the client `apply_server_timezone` parameter has been set to True (the default), the ClickHouse server timezone is applied.
454453

455454
Note that if the applied timezone based on these rules is UTC, `clickhouse-connect` will _always_ return a time zone naive Python `datetime.datetime` object. Additional timezone information can then be added to this timezone naive object by the application code if desired.
456-

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ ClickHouse Connect is a core database driver providing interoperability with a w
2424
- There is a [SQLAlchemy](https://www.sqlalchemy.org/) dialect in the package `clickhouse_connect.cc_sqlalchemy` which is built off of the `datatypes` and `dbi` packages. This implementation supports SQLAlchemy Core functionality including `SELECT` queries with `JOIN`s (`INNER`, `LEFT OUTER`, `FULL OUTER`, `CROSS`), `WHERE` clauses, `ORDER BY`, `LIMIT`/`OFFSET`, `DISTINCT` operations, lightweight `DELETE` statements with `WHERE` conditions, table reflection, and basic DDL operations (`CREATE TABLE`, `CREATE`/`DROP DATABASE`). While it does not support advanced ORM features or advanced DDL features, it provides robust query capabilities suitable for most analytical workloads against ClickHouse's OLAP-oriented database.
2525
- The core driver and [ClickHouse Connect SQLAlchemy](sqlalchemy.md) implementation are the preferred method for connecting ClickHouse to Apache Superset. Use the `ClickHouse Connect` database connection, or `clickhousedb` SQLAlchemy dialect connection string.
2626

27-
2827
This documentation is current as of the clickhouse-connect release 0.9.2.
2928

3029
:::note
@@ -43,7 +42,6 @@ The official ClickHouse Connect Python driver uses the HTTP protocol for communi
4342
| 3.13.x || | | 25.7.x (Stable) || | | 3.0.x || | | | |
4443
| | | | | 25.8.x (LTS) || | | | | | | | |
4544

46-
4745
¹ClickHouse Connect has been explicitly tested against the listed platforms. In addition, untested binary wheels (with C optimization) are built for all architectures supported by the excellent [`cibuildwheel`](https://cibuildwheel.readthedocs.io/en/stable/) project. Finally, because ClickHouse Connect can also run as pure Python, the source installation should work on any recent Python installation.
4846

4947
²SQLAlchemy support is limited to Core functionality (queries, basic DDL). ORM features are not supported. See [SQLAlchemy Integration Support](sqlalchemy.md) docs for details.

0 commit comments

Comments
 (0)