Merge pull request #36 from ideaman924/master

Add new maintainers and generator
diff --git a/json/maintainers.json b/json/maintainers.json
index f8b958a..653d8f0 100644
--- a/json/maintainers.json
+++ b/json/maintainers.json
@@ -21,5 +21,13 @@
            "owens",
            "warp4"
        ]
-   }
+   },
+   {
+        "name": "Beau Echols (REV3NT3CH)",
+        "email": "rev3nt3ch@blissroms.com",
+        "device": [
+            "dumpling",
+            "cheeseburger"
+        ]
+    }
 ]
diff --git a/json/maintainers.py b/json/maintainers.py
new file mode 100644
index 0000000..4d40ff0
--- /dev/null
+++ b/json/maintainers.py
@@ -0,0 +1,20 @@
+import json
+
+user_list = []
+
+user = {}
+
+user["name"] = input("Name: ")
+user["email"] = input("Email: ")
+user["device"] = []
+
+while True:
+	device_name = input("Device codename (type -1 to end): ")
+	if device_name == "-1":
+		break
+	user["device"].append(device_name)
+
+user_list.append(user)
+
+print("Finished! Please give the following output to Eric:")
+print(json.dumps(user_list, indent=4))
\ No newline at end of file