Making an AI that plays Starcraft II. [Link to SC2AI wiki](http://wiki.sc2ai.net/Main_Page).
First goal is to create an AI that has a preset game plan that it executes. Currently the TerranRushAI.py does this and can beat the Blizzard's AI, when it's difficulty is set to "Hard".
Second goal would be to implement a reinforcement learning AI.
I am trying out two python packages that are listed below.
## PySC2
Google's DeepMind toolset that can be used to implement reinforcement learning.
## Python-sc2
An easier to use library than PySC2 that can be used to create AI bots.