def test_post(self): http = '160.16.10.1' host = 'localhost' db = 'watergate' user = '******' password = '******' conn = DB(host, db, user, password) client = ApiClient(host) params = client.createParams('aaaaa', 1, [1000, 2000]) response = client.post(params) print(response)
def sendData(code, id, values): client = ApiClient(apiPath) params = client.createParams(code, id, values) print(params) res = client.post(params)