diff options
| author | Pepper <pepper@scannerjammer.com> | 2015-03-07 18:38:28 -0500 |
|---|---|---|
| committer | Pepper <pepper@scannerjammer.com> | 2015-03-07 18:38:28 -0500 |
| commit | 21b2e256c344659e2294bee33a68b5cb040b9234 (patch) | |
| tree | 04d40d88ae9faab20ae671af6396eec0ee668981 /test2.py | |
| parent | 107b40de0a2a7bcb6abcebb9aabd0f5bb7dabb4b (diff) | |
missing commit
Diffstat (limited to 'test2.py')
| -rw-r--r-- | test2.py | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,11 +1,11 @@ #!/usr/bin/python2.7 from Pb_Api.ImPattern import Pb_Api_ImPattern +from Pb_Api.ImGrid import Pb_Api_ImGrid import pprint -p = Pb_Api_ImPattern() -params = p.params() -#params.param("image_url").value = "http://hello" -#print params -params.randomize() -pprint.pprint(params.as_hash()) -print p.call(params.as_hash()) +api = Pb_Api_ImPattern() +request = api.request_new() +request.randomize() +resp = request.execute() + + |
