소스 검색

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]