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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -