aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRed_M <[email protected]>2016-01-05 16:27:11 +1000
committerRed_M <[email protected]>2016-01-05 16:27:11 +1000
commit7cd2be2edc202880e5ede823669ea0859fac4a2d (patch)
tree2c62b5b670eec109aaf9325f9f2a36f1866e0e2c
parentCompressed READY (diff)
downloaddiscord.py-7cd2be2edc202880e5ede823669ea0859fac4a2d.tar.xz
discord.py-7cd2be2edc202880e5ede823669ea0859fac4a2d.zip
Update README.md
Update for legacy README.md
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 51cd909d..fca7fc11 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,14 @@ discord.py is an API wrapper for Discord written in Python.
This was written to allow easier writing of bots or chat logs.
+## Requirements
+
+- Python 2.7+ or Python 3.3+.
+- `ws4py` library
+- `requests` library
+
+Usually `pip` will handle these for you.
+
## Installing
Installing is pretty easy.
@@ -18,10 +26,10 @@ pip install discord.py
Will install the latest 'stable' version of the library.
-If you want to install the development version of the library, then do the following:
+If you want to install this version of the library, then do the following:
```
-pip install git+https://github.com/Rapptz/discord.py@develop
+pip install git+https://github.com/Rapptz/discord.py@legacy
```
Note that this requires `git` to be installed.
@@ -59,14 +67,6 @@ client.run()
You can find examples in the examples directory.
-## Requirements
-
-- Python 2.7+ or Python 3.3+.
-- `ws4py` library
-- `requests` library
-
-Usually `pip` will handle these for you.
-
## Related Projects
- [discord.js](https://github.com/discord-js/discord.js)