Skip to content

Instantly share code, notes, and snippets.

@kaeawc
Last active August 29, 2015 14:09
Show Gist options
  • Save kaeawc/54e7b8ca22e686d1a767 to your computer and use it in GitHub Desktop.
Save kaeawc/54e7b8ca22e686d1a767 to your computer and use it in GitHub Desktop.
Mailchimp Subscription
apikey = 'you_api_key'
list_id = 'your_list_id'
from mailchimp import Mailchimp
mailchimp = Mailchimp(apikey=apikey)
mailchimp.lists.subscribe(id=list_id, email={u"email",u"youremailaddress+testingmailchimp@yourcompany.com"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment