diff --git a/README-zh.md b/README-zh.md
index 765d0122bec..6e917977c60 100644
--- a/README-zh.md
+++ b/README-zh.md
@@ -20,6 +20,7 @@
* 嵌入在 Python 中的 SQL OLAP 引擎,由 ClickHouse 驱动
* 不需要安装 ClickHouse
* 支持 Parquet、CSV、JSON、Arrow、ORC 和其他 60 多种格式的[输入输出](https://clickhouse.com/docs/en/interfaces/formats),[示例](tests/format_output.py)。
+* 支持 Python DB API 2.0 标准, [example](examples/dbapi.py)
## 架构
diff --git a/README.md b/README.md
index 67ad972c67a..ff56f12cabb 100644
--- a/README.md
+++ b/README.md
@@ -22,6 +22,7 @@
* No need to install ClickHouse
* Minimized data copy from C++ to Python with [python memoryview](https://docs.python.org/3/c-api/memoryview.html)
* Input&Output support Parquet, CSV, JSON, Arrow, ORC and 60+[more](https://clickhouse.com/docs/en/interfaces/formats) formats, [samples](tests/format_output.py)
+* Support Python DB API 2.0, [example](examples/dbapi.py)
## Arch