forked from python-gino/gino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbind.py
36 lines (24 loc) · 768 Bytes
/
bind.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
35
36
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')
db.bind = conn
# You will need to create the database and table manually
u = await User.create(nickname='fantix')
print(u)
u = await User.get(u.id)
print(u)
await u.update(nickname='daisy').apply()
print(u)
print(await u.delete())
if __name__ == '__main__':
import asyncio
loop = asyncio.get_event_loop()
loop.run_until_complete(main())