1 files changed, 22 insertions, 3 deletions
|
diff --git a/README.md b/README.md index 49c1594..985a1ae 100644 --- a/ README.md+++ b/ README.md |
@@ -4,9 +4,28 @@ Current Top Score: 1068 |
4 | |
4 | |
5 | ![image](https://user-images.githubusercontent.com/2663319/34491418-4e345ac6-f01e-11e7-99af-88e8e8a1e2ec.png) |
5 | ![image](https://user-images.githubusercontent.com/2663319/34491418-4e345ac6-f01e-11e7-99af-88e8e8a1e2ec.png) |
6 | |
6 | |
| |
7 | ## Dependencies |
| |
8 | |
| |
9 | + [mss](https://github.com/BoboTiG/python-mss) |
| |
10 | |
| |
11 | An ultra fast cross-platform multiple screenshots module in pure Python using ctypes. |
| |
12 | |
| |
13 | + [numpy](https://github.com/numpy/numpy) |
| |
14 | |
| |
15 | NumPy is the fundamental package needed for scientific computing with Python. |
| |
16 | |
| |
17 | + [PyAutoGUI](https://github.com/asweigart/pyautogui) |
| |
18 | |
| |
19 | A cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard. |
| |
20 | |
| |
21 | + [pynput](https://github.com/moses-palmer/pynput) |
| |
22 | |
| |
23 | Sends virtual input commands (Much more faster than [PyAutoGUI](https://github.com/asweigart/pyautogui) and [keyboard](https://github.com/boppreh/keyboard)) |
| |
24 | |
7 | ## Usage |
25 | ## Usage |
8 | |
26 | |
9 | ```python |
27 | ```bash |
| |
28 | pip install -r requirements.txt |
10 | python3 bot.py |
29 | python3 bot.py |
11 | ``` |
30 | ``` |
12 | |
31 | |
@@ -14,7 +33,7 @@ Tested on macOS 10.12.6 with screen resolution 1680*1050 (not HiDPI) on Safari. |
14 | |
33 | |
15 | ## Videos |
34 | ## Videos |
16 | |
35 | |
17 | ![60 fps](https://www.youtube.com/watch?v=TCPrj4mzZ6s) |
36 | [60 fps](https://www.youtube.com/watch?v=TCPrj4mzZ6s) |
18 | |
37 | |
19 | ![240 fps slow motion](https://www.youtube.com/watch?v=uXTSveJCdH8) |
38 | [240 fps slow motion](https://www.youtube.com/watch?v=uXTSveJCdH8) |
20 | |
39 | |
|