hyperschema
python client library to build a JSON hyperschema client for https://github.com/Mercateo/rest-schemagen
Examples
root = Link(base_url).follow()
stations = root.follow('stations')
# create station
new_station = stations.follow('create', {'name': 'station-name', 'longitude': 11.0, 'latitude': 49.0})
stations = stations.update()
for station in stations:
print(" ", station.data)
# delete created station
new_station.follow('delete')