summaryrefslogtreecommitdiff
path: root/ricky/imgradient/imgradient.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-09-30 00:56:49 -0700
committerpepperpepperpepper <pepper@scannerjammer.com>2015-09-30 00:56:49 -0700
commit5521785e6c52dd4603699d057d62a5797844fd13 (patch)
tree3516ba416147ebd00104f3f5fc666371432af0ae /ricky/imgradient/imgradient.py
parent20a896ed6a8d54c3e59baa33ce3fce7a26343c20 (diff)
huge rename
Diffstat (limited to 'ricky/imgradient/imgradient.py')
-rw-r--r--ricky/imgradient/imgradient.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ricky/imgradient/imgradient.py b/ricky/imgradient/imgradient.py
new file mode 100644
index 0000000..c7be83d
--- /dev/null
+++ b/ricky/imgradient/imgradient.py
@@ -0,0 +1,12 @@
+from ricky.api import Api
+from ricky.imgradient.params import ImGradientParams
+from ricky.config import IMGRADIENT_URL
+
+class ImGradient(Api):
+ def __init__(self):
+ self.url = IMGRADIENT_URL
+ def params_init(self):
+ new_params = ImGradientParams()
+ #new_params = self.get_from_server()
+ new_params.api = self
+ return new_params