Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by wth ( 13 years ago )
Base = declarative_base()
class Disk(Base):
__tablename__ = "disks"
filesystem = Column(String)
diskid = Column(String, primary_key = True)
label = Column(String)
session = sessionmaker()
session.query(Disk)
Revise this Paste