Closed jdennes closed 10 years ago
This removes the need for calling certain methods with unnecessary arguments.
For example, previously you would write:
subscriber = Subscriber(auth, 'listid', 'me@test.com').get('listid', 'me@test.com')
Now you can write:
subscriber = Subscriber(auth, 'listid', 'me@test.com').get()
Closes #18.
This removes the need for calling certain methods with unnecessary arguments.
For example, previously you would write:
Now you can write:
Closes #18.