# HG changeset patch # User Jeff Hammel # Date 1355365654 28800 # Node ID e46b4466abacc6d668383c79618344dc911f591d # Parent 24d57daaca21fa6d9bc254d0e017da9b43cb3fd3 start a RESTful client; putting this here for now; it could go in model.py as it will inherit from the ABC, but keeping it here avoids a ccertain class of import hell diff -r 24d57daaca21 -r e46b4466abac wsgraph/client.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wsgraph/client.py Wed Dec 12 18:27:34 2012 -0800 @@ -0,0 +1,12 @@ +#!/usr/bin/env python + + + +class WSGraphClient(): + """REST client for WSGraph""" + + def __init__(self, server): + self.server = server + +if __name__ == '__main__': + pass # TODO