""" Makes a dummy post to the test server """ import requests import json import abp #URL = "http://localhost:5000" URL = "https://abv.peteshadbolt.co.uk/" def test_graph(): N = 100 g = abp.NXGraphState(range(N)) for i in range(N-1): g.act_cz(i, i+1) g.layout() return g if __name__ == '__main__': data = json.dumps(test_graph().to_json(stringify=False)) r = requests.post("{}/graph".format(URL), data=data) print r.status_code, r.content