bfc97737b4
although I spent way too much time on the server side since deciding to add Redis as "persistence".
21 lines
472 B
JSON
21 lines
472 B
JSON
import json
|
|
from server.families import Families
|
|
|
|
__families__ = Families()
|
|
|
|
|
|
|
|
if GET:
|
|
response.body = __families__.getall()
|
|
elif POST:
|
|
family = json.loads(
|
|
request.body.s_iter.read(int(request.headers['Content-Length']))
|
|
)['family']
|
|
family_id = __families__.add(family)
|
|
response.headers['Location'] = '/families/{}.json'.format(family_id)
|
|
family['id'] = family_id
|
|
response.body = family
|
|
response.code = 201
|
|
|
|
# vim:filetype=python
|