|
@@ -96,16 +96,24 @@ class Zipcode(db.Model):
|
|
|
|
|
|
api = Api(app)
|
|
|
|
|
|
-
|
|
|
+def model_to_dict(model):
|
|
|
+ data = {}
|
|
|
+ for col in model.__table__.c.keys():
|
|
|
+ # data[col] = getattr(c, col, None) # c[col]
|
|
|
+ data[col] = str( getattr(model, col, None) ) # c[col]
|
|
|
+ return data
|
|
|
+
|
|
|
class IBRSimple(Resource):
|
|
|
def get(self, todo_id):
|
|
|
# Ok, lookup the id, and return the json
|
|
|
c = Candidate.query.filter_by(ID=todo_id).first()
|
|
|
- data = {}
|
|
|
- for col in c.__table__.c.keys():
|
|
|
- # data[col] = getattr(c, col, None) # c[col]
|
|
|
- data[col] = str( getattr(c, col, None) ) # c[col]
|
|
|
- return data
|
|
|
+ return model_to_dict(c)
|
|
|
+
|
|
|
+ # data = {}
|
|
|
+ # for col in c.__table__.c.keys():
|
|
|
+ # # data[col] = getattr(c, col, None) # c[col]
|
|
|
+ # data[col] = str( getattr(c, col, None) ) # c[col]
|
|
|
+ # return data
|
|
|
# {'id': todo_id, 'stuff': True }
|
|
|
|
|
|
api.add_resource(IBRSimple, '/<string:todo_id>')
|