Skip to content

Commit efd8b81

Browse files
committed
Merge branch 'main' into feature/more_connect_parameters
2 parents bb05b9f + 7773bc5 commit efd8b81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ Or you can build it by yourself. To do it, install stable rust and [maturin](htt
3535
## Usage
3636

3737
Usage is as easy as possible.
38-
Create new instance of PSQLPool and start querying.
38+
Create new instance of ConnectionPool and start querying.
3939
You don't need to startup connection pool, the connection pool will create connections as needed.
4040

4141
```python
4242
from typing import Any
4343

44-
from psqlpy import PSQLPool, QueryResult
44+
from psqlpy import ConnectionPool, QueryResult
4545

4646

47-
db_pool = PSQLPool(
47+
db_pool = ConnectionPool(
4848
username="postgres",
4949
password="pg_password",
5050
host="localhost",

0 commit comments

Comments
 (0)