|
|
@@ -1,3 +1,25 @@
|
|
|
# Chat_Names
|
|
|
|
|
|
-A Python script that uses lists of names to create a suggested chat names list on your Owncast instance.
|
|
|
+A Python script that uses lists of names to create a suggested chat names list on your Owncast instance.
|
|
|
+
|
|
|
+I have it pre-populated with lists of characters from Looney Tunes, Lego City Undercover, and Futurma, but you can set up whatever list you want.
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+### Configuring the script
|
|
|
+
|
|
|
+You'll find the following entry near the bottom of the script:
|
|
|
+
|
|
|
+```data = {"value": list_name_no_quotes}
|
|
|
+```
|
|
|
+
|
|
|
+Be sure to change list_name_no_quotes to the name of the list you'd like to use. As the temporary name suggests, do not enclose the list name in quotes.
|
|
|
+
|
|
|
+### Running the script
|
|
|
+
|
|
|
+From the command line, enter the folder containing chatnames.py, and run the following command:
|
|
|
+
|
|
|
+```python3 chatnames.py
|
|
|
+```
|
|
|
+
|
|
|
+
|