forked from fportantier/vulpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibposts.py
34 lines (20 loc) · 826 Bytes
/
libposts.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
#!/usr/bin/env python3
import sys
import sqlite3
def get_posts(username):
conn = sqlite3.connect('db_posts.sqlite')
conn.set_trace_callback(print)
conn.row_factory = sqlite3.Row
c = conn.cursor()
rows = c.execute("SELECT * FROM posts WHERE username = ? ORDER BY date DESC", (username,)).fetchall()
posts = [ dict(zip(row.keys(), row)) for row in rows ]
return posts
def post(username, text):
conn = sqlite3.connect('db_posts.sqlite')
conn.set_trace_callback(print)
conn.row_factory = sqlite3.Row
c = conn.cursor()
rows = c.execute("INSERT INTO posts (username, text, date) VALUES (?, ?, DateTime('now'))", (username, text)) #WHERE username = ?", (username,)).fetchall()
conn.commit()
#posts = [ dict(zip(row.keys(), row)) for row in rows ]
return True