idk if this is the way to go or not..

This commit is contained in:
Kenneth Reitz
2011-02-14 03:08:40 -05:00
parent ce8a8cd5ba
commit 11e558c0d0
+13 -4
View File
@@ -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