Files
python/exercises/rest-api/rest_api.py
Corey McCandless 65133219da rest-api: implement exercise (#1431)
* implement exercise, add to config.json

* add README
2018-08-03 15:32:01 -04:00

10 lines
180 B
Python

class RestAPI(object):
def __init__(self, database=None):
pass
def get(self, url, payload=None):
pass
def post(self, url, payload=None):
pass