summaryrefslogtreecommitdiff
path: root/ricky/imgrid/imgrid.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/imgrid/imgrid.py
parent20a896ed6a8d54c3e59baa33ce3fce7a26343c20 (diff)
huge rename
Diffstat (limited to 'ricky/imgrid/imgrid.py')
-rw-r--r--ricky/imgrid/imgrid.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ricky/imgrid/imgrid.py b/ricky/imgrid/imgrid.py
new file mode 100644
index 0000000..6872537
--- /dev/null
+++ b/ricky/imgrid/imgrid.py
@@ -0,0 +1,12 @@
+from ricky.api import Api
+from ricky.imgrid.params import ImGridParams
+from ricky.config import IMGRID_URL
+
+class ImGrid(Api):
+ def __init__(self):
+ self.url = IMGRID_URL
+ def params_init(self):
+ new_params = ImGridParams()
+ #new_params = self.get_from_server()
+ new_params.api = self
+ return new_params