diff options
Diffstat (limited to 'ricky/pbbreaker/__init__.py')
| -rw-r--r-- | ricky/pbbreaker/__init__.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ricky/pbbreaker/__init__.py b/ricky/pbbreaker/__init__.py new file mode 100644 index 0000000..3a25a2b --- /dev/null +++ b/ricky/pbbreaker/__init__.py @@ -0,0 +1,13 @@ +from ricky.pb import Pb +from ricky.pbbreaker.params import Params +from ricky.config import IMBREAK_URL + + +class PbBreaker(Pb): + def __init__(self): + self.url = IMBREAK_URL + def params_init(self): + new_params = Params() + # new_params = self.get_from_server() + new_params.api = self + return new_params |
