summaryrefslogtreecommitdiff
path: root/ricky/imgrid/__init__.py
blob: e977115d4b66da7f111461c3d3ba1f916c1c6904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from ricky.im import Im
from ricky.imgrid.params import Params
from ricky.config import IMGRID_URL


class ImGrid(Im):
    def __init__(self):
        self.url = IMGRID_URL

    def params_init(self):
        new_params = Params()
        # new_params = self.get_from_server()
        new_params.api = self
        return new_params