Skip to content

Commit 967b123

Browse files
committed
Changed name of the lib to psqlpy
1 parent baafd09 commit 967b123

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Async PostgreSQL driver for Python written in Rust.
1+
# PSQLPy - Async PostgreSQL driver for Python written in Rust.
22

33
Driver for PostgreSQL written fully in Rust and exposed to Python.
44
*Normal documentation is in development.*
@@ -28,7 +28,7 @@ Create new instance of PSQLPool, startup it and start querying.
2828
from typing import Any
2929
import asyncio
3030

31-
from rust_psql_driver import PSQLPool
31+
from psqlpy import PSQLPool
3232

3333

3434
db_pool = PSQLPool(
@@ -72,7 +72,7 @@ You can work with connection instead of DatabasePool.
7272
from typing import Any
7373
import asyncio
7474

75-
from rust_psql_driver import PSQLPool
75+
from psqlpy import PSQLPool
7676

7777

7878
db_pool = PSQLPool(
@@ -108,7 +108,7 @@ By default async context manager only begins and commits transaction automatical
108108
from typing import Any
109109
import asyncio
110110

111-
from rust_psql_driver import PSQLPool, IsolationLevel
111+
from psqlpy import PSQLPool, IsolationLevel
112112

113113

114114
db_pool = PSQLPool()
@@ -136,7 +136,7 @@ async def main() -> None:
136136
from typing import Any
137137
import asyncio
138138

139-
from rust_psql_driver import PSQLPool, IsolationLevel
139+
from psqlpy import PSQLPool, IsolationLevel
140140

141141

142142
db_pool = PSQLPool()
@@ -171,7 +171,7 @@ If you want to use `ROLLBACK TO SAVEPOINT`, see below.
171171
from typing import Any
172172
import asyncio
173173

174-
from rust_psql_driver import PSQLPool, IsolationLevel
174+
from psqlpy import PSQLPool, IsolationLevel
175175

176176

177177
db_pool = PSQLPool()
@@ -199,7 +199,7 @@ You can rollback your transaction to the specified savepoint, but before it you
199199
from typing import Any
200200
import asyncio
201201

202-
from rust_psql_driver import PSQLPool, IsolationLevel
202+
from psqlpy import PSQLPool, IsolationLevel
203203

204204

205205
db_pool = PSQLPool()
@@ -233,7 +233,7 @@ It's possible to release savepoint
233233
from typing import Any
234234
import asyncio
235235

236-
from rust_psql_driver import PSQLPool, IsolationLevel
236+
from psqlpy import PSQLPool, IsolationLevel
237237

238238

239239
db_pool = PSQLPool()
@@ -264,7 +264,7 @@ Cursors can be created only in transaction. In addition, cursor supports async i
264264
from typing import Any
265265
import asyncio
266266

267-
from rust_psql_driver import PSQLPool, IsolationLevel
267+
from psqlpy import PSQLPool, IsolationLevel
268268

269269

270270
db_pool = PSQLPool()
@@ -307,7 +307,7 @@ from typing import Any
307307
import asyncio
308308
import uuid
309309

310-
from rust_psql_driver import PSQLPool
310+
from psqlpy import PSQLPool
311311

312312
from psqlpy.extra_types import (
313313
SmallInt,

0 commit comments

Comments
 (0)