Harmon

Results 93 comments of Harmon

This PR has been stale for a while now, but it is decidedly so now that [the Premium v1.1 Account Activity API has been deprecated](https://twittercommunity.com/t/deprecating-the-premium-v1-1-api/191092).

It seems to be back up now. ~~https://theastrologer-api.herokuapp.com/ is now down too:~~ ![image](https://user-images.githubusercontent.com/9403740/56788205-678c2700-67c4-11e9-8f02-4cfd28cb7004.png)

This issue is still relevant.

See https://github.com/numpy/numpy/issues/11451

I'm not sure what exactly the issue is. The solution, which is already possible with aiohttp, e.g.: ```py async def main(): async with aiohttp.ClientSession() as session: resposne = await session.get("http://httpbin.org")...

> In fact I just ran your example, and it never printed or finished. I had to Ctrl+C. Hmm, I think it might be the request to httpbin.org hanging. I...

I agree that it's better to explicitly close, but in this case, I was trying to mimic the proposed solution in the issue as closely as possible. `release` does set...

This seems like it might be a bug with the Twitter API, since `edit_history_tweet_ids` should be a default Tweet field. For code block usage, see https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks.

While adding support for the edit metadata, it did occur to me that it might be a breaking change in terms of how `Tweet` is initialized. I supposed there are...

This seems to be an undocumented parameter for [GET lists/statuses](https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses), the Twitter API endpoint that `API.list_timeline` uses. That's just a warning though, and can be safely ignored if the parameter...