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)