summaryrefslogtreecommitdiff
path: root/Pb_Api/ImBreak/__init__.py
blob: 7836f2ee7f7f905b6a2b851992057156bbd7b064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python2.7
from Pb_Api import Pb_Api
from Pb_Api.ImBreak.Params import ImBreak_Params
from config import IMBREAK_URL

class Pb_Api_ImBreak(Pb_Api):
    def __init__(self):
        self.url = IMBREAK_URL
    def params_init(self):
        new_params = ImBreak_Params()
        #new_params = self.get_from_server()
        new_params.api = self 
        return new_params