mirror of
https://github.com/kennethreitz-archive/python-convore.git
synced 2026-06-05 23:40:18 +00:00
idk if this is the way to go or not..
This commit is contained in:
+13
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user