From dd6e828ca3b205fefcae833aec53139961f9575f Mon Sep 17 00:00:00 2001 From: Zachary Sloan Date: Thu, 27 Feb 2014 00:01:11 +0000 Subject: Began working on a TraitCollection.py file that will contain both the object for logged in user collections and collections created by anonymous users. --- wqflask/base/trait_collection.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 wqflask/base/trait_collection.py (limited to 'wqflask/base') diff --git a/wqflask/base/trait_collection.py b/wqflask/base/trait_collection.py new file mode 100644 index 00000000..797a4d63 --- /dev/null +++ b/wqflask/base/trait_collection.py @@ -0,0 +1,27 @@ +#The TraitCollection class with encompass the UserCollection (collections +#created by registered and logged in users) and AnonCollection (collections created by users who +#aren't logged in) class. The former will represent and act on a database table while the latter +#will store its trait information in Redis + + +from __future__ import print_function, division, absolute_import + +import uuid +import datetime + +import simplejson as json + +from flask import request +from flask.ext.sqlalchemy import SQLAlchemy + +from wqflask import app + +import sqlalchemy + +from sqlalchemy import (Column, Integer, String, Table, ForeignKey, Unicode, Boolean, DateTime, + Text, Index) +from sqlalchemy.orm import relationship, backref + +from wqflask.database import Base, init_db + +class TraitCollection(object): -- cgit v1.2.3