campaignmonitor / createsend-python

A Python library for the Campaign Monitor API
http://campaignmonitor.github.io/createsend-python
MIT License
57 stars 63 forks source link

Remove the need for unnecessary arguments when calling various methods #20

Closed jdennes closed 10 years ago

jdennes commented 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.