Class to add emails to Mailchimp lists.
pip install git+https://github.com/GeoSchool/django-mailchimp3-emailcollector.gitAdd mailchimp3 to your INSTALLED_APPS, then define the MAILCHIMP_API_KEY setting.
# Initialize the integration
mc = Mailchimp()
# Trigger the action on the given list
added = mc.add_member_to_list(settings.MAILCHIMP_LIST_ID, email)
if added:
print("Email successfully added")virtualenv --python=python3 env
source env/bin/activate
pip install -r requirements-test.txt
python tests.pyYou can also run the coverage:
coverage run tests.py
# Display the results
coverage report -m