Timo Ewalds

Results 18 comments of Timo Ewalds

It turns out that the requests library works just fine, at least if you use: https://developers.google.com/appengine/docs/python/sockets/#making_httplib_use_sockets . This is because requests is based on urllib3, which is based on httplib,...

One thing related to this that doesn't work well on appengine is that the streaming api does several httplib.read(1) calls, (ie read one byte), which works, but socket.read(), which backs...

The patch is here: https://github.com/tweepy/tweepy/pull/496 .

You are correct. Unfortunately this is tough for us to fix given that our agents depend on this... Sorry.

Hmm, I've mainly used replay_actions to look at stats over many replays. It's quite possible there's a bug in the termination condition for a single replay. It probably also doesn't...

It'd be nice if replay_actions was split between the replay parser and the analysis so it could let you do more than collect stats about actions. It'd be good to...

That does look like the right direction. I added a few comments to make it a bit cleaner. Please test that it works at different window sizes/resolutions.

Take a look at my latest changes. It shows better action names, recent actions, selections, build queues, and cargo. The one thing that is still missing is control groups, which...

Do I understand this as a request to be able to redirect the stderr from the game to a file, and to do so via a global flag? How would...

I assume you mean parse, not pause. If you do mean pause and are running with pysc2.bin.play, hit the pause button on your keyboard. Is there an error message? If...