From 6bbd352e9d8aac0ce7fbd1315c976af97bfea246 Mon Sep 17 00:00:00 2001
From: Matt <matt@mattcarey.me>
Date: Sat, 21 Jan 2017 17:32:58 -0500
Subject: [PATCH] Documentation update

---
 README.md | 61 ++++++++++++++++++++++++++++---------------------------
 1 file changed, 31 insertions(+), 30 deletions(-)

diff --git a/README.md b/README.md
index 4043637..d6c2b6d 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,37 @@ This tool will allow you to send stats from a torrent client to InfluxDB for dis
 
 **Support Clients**
 * Deluge
+* uTorrent
+* rTorrent
+
+## Usage
+
+Before the first use run pip3 install -r requirements.txt
+
+Enter your desired information in config.ini and run influxdbSeedbox.py
+
+Optionally, you can specify the --config argument to load the config file from a different location.  
+
+
+## Notes About Specific Clients
+
+**Deluge**
+* You must have the WebUI plugin installed.
+* The URL to use in the config will usually look like: http://ADDRESS:8112/json
+* Only the password is required in the config.ini
+
+**uTorrent**
+* You must have the Web Interface enabled with a Username/Password set
+* The URL to use in the config will usually look like: http://localhost:8080/gui
+* You must have both a username and password in the config
+
+**rTorrent**
+* Neither username or password are needed in the config
+* URL can very depending on configuration
+
+rTorrent is tricky since you need something to forward the SCGI requests. For my testing I used nginx to forward requests on port 8000
+Setting this up is beyond the scope of this tool. 
+However, you can refer to [this guide](http://elektito.com/2016/02/10/rtorrent-xmlrpc/)
 
 ## Configuration within config.ini
 
@@ -39,36 +70,6 @@ This tool will allow you to send stats from a torrent client to InfluxDB for dis
 |CensorLogs     |Censor certain things like server names and IP addresses from logs                                                  |
 
 
-
-## Usage
-
-Before the first use run pip3 install -r requirements.txt
-
-Enter your desired information in config.ini and run influxdbSeedbox.py
-
-Optionally, you can specify the --config argument to load the config file from a different location.  
-
-
-## Notes About Specific Clients
-
-**Deluge**
-* You must have the WebUI plugin installed.
-* The URL to use in the config will usually look like: http://ADDRESS:8112/json
-* Only the password is required in the config.ini
-
-**uTorrent**
-* You must have the Web Interface enabled with a Username/Password set
-* The URL to use in the config will usually look like: http://localhost:8080/gui
-* You must have both a username and password in the config
-
-**rTorrent**
-* Neither username or password are needed in the config
-* URL can very depending on configuration
-
-rTorrent is tricky since you need something to forward the SCGI requests. For my testing I used nginx to forward requests on port 8000
-Setting this up is beyond the scope of this tool. 
-However, you can refer to [this guide](http://elektito.com/2016/02/10/rtorrent-xmlrpc/)
-
 ***Requirements***
 
 Python 3+
-- 
GitLab