فهرست منبع

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]