extract email addresses from Mailgun using python -
i trying extract email subscribers mailgun using this:
members = requests.get('https://api.mailgun.net/v3/lists/<address>/members', auth=auth )
this works limits number of subscribers 100. have 600 people on list , need access them perform logic. understand there way over-ride 100 record limit have not found anything. thoughts? i'm stuck.
mailgun documentation: click here!
from documentation, looks api take limit
parameter. should able subscribers via like:
members = requests.get('https://api.mailgun.net/v3/lists/<address>/members', auth=auth, params={'limit':100, 'skip': 100} )
Comments
Post a Comment