Skip to content
This repository has been archived by the owner on Feb 18, 2019. It is now read-only.

Commit

Permalink
add docstring for ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Hammel committed Aug 1, 2012
1 parent 5d35570 commit b5d99d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dzclient/client.py
Expand Up @@ -128,6 +128,13 @@ def create(cls, host, project, oauth_key, oauth_secret, collection):
return instance

def __init__(self, host, project, oauth_key, oauth_secret, **kw):
"""
- host : datazilla host to post to
- project : name of the project in datazilla: http://host/project
- oauth_key, oauth_secret : oauth credentials
- **kw : arguments to DatazillaResultsCollection.__init__
"""

self.host = host
self.project = project
self.oauth_key = oauth_key
Expand Down

0 comments on commit b5d99d1

Please sign in to comment.