-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableGen.py
More file actions
29 lines (25 loc) · 917 Bytes
/
tableGen.py
File metadata and controls
29 lines (25 loc) · 917 Bytes
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
from sqlalchemy import *
from sqlalchemy import create_engine, ForeignKey
from sqlalchemy import Column, Date, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, backref
engine = create_engine('sqlite:///users.db', echo=True)
Base = declarative_base()
########################################################################
class User(Base):
""""""
__tablename__ = "users"
id = Column(Integer, primary_key=True)
username = Column(String)
password = Column(String)
locationX = Column(Float)
locationY = Column(Float)
#----------------------------------------------------------------------
def __init__(self, username, password, x, y):
""""""
self.username = username
self.password = password
self.locationX = x
self.locationY = y
# create tables
Base.metadata.create_all(engine)