From 11e558c0d047603dba76f1ab3c1316f5d399af8f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 14 Feb 2011 03:08:40 -0500 Subject: [PATCH] idk if this is the way to go or not.. --- convore/core.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/convore/core.py b/convore/core.py index dcec3be..d0caaf6 100644 --- a/convore/core.py +++ b/convore/core.py @@ -46,9 +46,18 @@ class Convore(object): r = requests.get(API_URL + 'account/verify.json') - if r.status_code == 200: - return True - else: - return False + return True if r.status_code == 200 else False + + +class Groups(object): + def create(self): + pass +class Group(object): + pass + def __init__(self, id): + pass + + def leave(self): + pass