瀏覽代碼

updated comments.

Charlie Root 7 年之前
父節點
當前提交
2e4a5ec767
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      ibr1.py

+ 3 - 0
ibr1.py

@@ -97,6 +97,9 @@ class Zipcode(db.Model):
 api = Api(app)
 
 def model_to_dict(model):
+    """ Given a SQLAlchemy model, return a dictionary.
+    This allows for the model to be easily jsonified.
+    """
     data = {}
     for col in model.__table__.c.keys():
         # data[col] = getattr(c, col, None) # c[col]