forked from pclubiitj/face-recognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.py
44 lines (34 loc) · 1.01 KB
/
database.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
37
38
39
40
41
42
43
44
from peewee import PostgresqlDatabase, Model, CharField, IntegrityError
import psycopg2
db = PostgresqlDatabase('database_name', user='username', password='pass',
host='127.0.0.1', port=1234)
class Base(Model):
class Meta:
database = db
class Image(Base):
origin_image = CharField()
extract_image = CharField(unique=True, primary_key=True)
db.connect()
conn = psycopg2.connect(
dbname="database_name",
user="username",
host='127.0.0.1',
password="pass",
port=1234
)
db.create_tables(Image)
def match(origin, extract):
try:
with db.atomic():
img = Image.create(origin_image=origin, extract_image=extract)
img.save()
except IntegrityError:
print("The extract image exists")
db.close()
# match("abc980000", "abc100001")
# match("abc5", "abc6")
# match("abc7", "abc11")
# img = Image.select().order_by(Image.origin_image)
# print(img)
# for i in img:
# print("{} {} " .format(i.origin_image, i.extract_image))