Thanks for your response. I had looked at the package and example before, but I was not able to see how to get a list of all promoted tweets for an account, campaign or line item. (Sorry, I am fairly new to Python, so if I am missing something obvious, please let me know.)
I ended up modifying the account.py package and added the following under the Account class:
def promoted_tweets(self, id=None, **kwargs):
"""
Returns a collection of promoted_tweets available to the current account.
"""
return self._load_resource(PromotedTweet, id, **kwargs)
And used it similar to this in my code:
for w_promoted_tweet in (x for x in w_account.promoted_tweets()):…
This seems to work, but I am not sure if it always returns everything…?
Thanks
Steve