Hello, I installed mailchimp3 this way:
pip install mailchimp3
And also the mailchimp:
pip install mailchimp
There was no error.
When I'm going to run the podium in python:
from mailchimp3 import MailChimp
client = MailChimp('YOUR_USERNAME', 'YOUR_SECRET_KEY')
client.lists.members.all('YOUR_LIST_ID', get_all=True, fields="members.email_address")
Returns the error:
Exception has occurred: ModuleNotFoundError No module named 'mailchimp3'
Has anyone ever been through this? Thanks!