From 095591a64b33b5e58ab0875177e97c6ec9176733 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 19 Feb 2011 06:16:52 -0500 Subject: [PATCH] API Direction change. --- README.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 466e759..8741ff7 100644 --- a/README.rst +++ b/README.rst @@ -21,10 +21,10 @@ Usage Hmm.. :: - >>> from convore import Convore - >>> convore = Convore('username', 'password') - - >>> convore.account.verify() + >>> import convore + >>> convore.login('username', 'password') + + >>> convore.account_verify() True >>> convore.groups @@ -36,13 +36,13 @@ Hmm.. :: >>> convore.groups['api-2'].leave() True - >>> convore.groups.create(name, description=None, slug=None) + >>> convore.group_create(name, description=None, slug=None) >>> convore.groups['api-2'].topics [, ...] - >>> convore.groups['api-2'].topics.create(name) + >>> convore.groups['api-2'].topic_create(name) >>> convore.groups['api-2'].topics[topic_id].messages @@ -53,7 +53,7 @@ Hmm.. :: - convore.groups.create(name, decription=None, slug=None) + convore.group_create(name, decription=None, slug=None)