forked from python-gino/gino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.py
34 lines (22 loc) · 846 Bytes
/
basic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import asyncpg
from gino import Gino
db = Gino()
class User(db.Model):
__tablename__ = 'users'
id = db.Column(db.BigInteger(), primary_key=True)
nickname = db.Column(db.Unicode(), default='noname')
def __repr__(self):
return '{}<{}>'.format(self.nickname, self.id)
async def main():
conn = await asyncpg.connect('postgresql://localhost/gino')
# You will need to create the database and table manually
print(await User.create(bind=conn, nickname='fantix'))
print(await User.get(1, bind=conn))
async with conn.transaction():
query, params = db.compile(User.query.where(User.id > 3))
async for u in User.map(conn.cursor(query, *params)):
print(u)
if __name__ == '__main__':
import asyncio
loop = asyncio.get_event_loop()
loop.run_until_complete(main())