From 5695122056a124e8ab3ca1b80a954c81dbe6915a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 20 Feb 2011 13:31:14 -0500 Subject: [PATCH] Convore object is all there is to import. --- convore/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/convore/core.py b/convore/core.py index 9f8a8c3..dc52856 100644 --- a/convore/core.py +++ b/convore/core.py @@ -18,9 +18,10 @@ __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' - +__all__ = ('Convore',) class Convore(object): + """The main Convore interface object.""" def __init__(self, username, password): self.username = username api.login(username, password)