diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-09-30 00:56:49 -0700 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-09-30 00:56:49 -0700 |
| commit | 5521785e6c52dd4603699d057d62a5797844fd13 (patch) | |
| tree | 3516ba416147ebd00104f3f5fc666371432af0ae /example.py | |
| parent | 20a896ed6a8d54c3e59baa33ce3fce7a26343c20 (diff) | |
huge rename
Diffstat (limited to 'example.py')
| -rwxr-xr-x | example.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/example.py b/example.py new file mode 100755 index 0000000..4fd6965 --- /dev/null +++ b/example.py @@ -0,0 +1,37 @@ +#!/usr/bin/python2.7 +import sys +from ricky.impattern import ImPattern +from ricky.imgrid import ImGrid +from ricky.imbreak import ImBreak +from ricky.imgradient import ImGradient +import pprint + +#api = ImPattern() +#params = api.params_init() +#params.randomize() +#print params.as_hash() +#req = params.execute() +#print req + +#api = ImGrid() +#params = api.params_init() +#params.randomize() +#print params.as_hash() +#req = params.execute() +#print req + + + +#api = ImBreak() +#params = api.params_init() +#params.randomize() +#print params.as_hash() +#req = params.execute() +#print req + +api = ImGradient() +params = api.params_init() +params.randomize() +print params.as_hash() +req = params.execute() +print req |
