summaryrefslogtreecommitdiff
path: root/ricky/imbreak/imbreak.py
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/imbreak/imbreak.py')
-rw-r--r--ricky/imbreak/imbreak.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ricky/imbreak/imbreak.py b/ricky/imbreak/imbreak.py
new file mode 100644
index 0000000..a9a4c95
--- /dev/null
+++ b/ricky/imbreak/imbreak.py
@@ -0,0 +1,12 @@
+from ricky.api import Api
+from ricky.imbreak.params import ImBreakParams
+from ricky.config import IMBREAK_URL
+
+class ImBreak(Api):
+ def __init__(self):
+ self.url = IMBREAK_URL
+ def params_init(self):
+ new_params = ImBreakParams()
+ #new_params = self.get_from_server()
+ new_params.api = self
+ return new_params