diff options
Diffstat (limited to 'ricky/imgrid/imgrid.py')
| -rw-r--r-- | ricky/imgrid/imgrid.py | 12 |
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 |
