summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--README.md21
-rw-r--r--client.py4
2 files changed, 10 insertions, 15 deletions
diff --git a/README.md b/README.md
index 589c75a..0d15ef7 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,9 @@
-# RabbitEars IRC client builder
-
-RabbitEars is an irc client framework writen in python
-Warning this is experimental prealpha software. It works but APIs design 
-models and other stuff are subject to change at my whim at this stage
-
-## Features, and Planned features
-* TLS suppport as first class citizen ✔
-* Clear license Terms ✔
-* Event driven
-* Conformity with modern irc specs
-* As few external dependancies as possible ❗ 
+# frog
+
+On the floor where'd she come from
+Nobody knows where she'll go
+
+Just a fun little irc bot for some friends.
+
+
+
diff --git a/client.py b/client.py
index d1e7474..c70317c 100644
--- a/client.py
+++ b/client.py
@@ -1,12 +1,10 @@
 # Part of rabbitears See LICENSE for permissions
 # Copyright (C) 2022 Matt Arnold
 from IRC import IRCBot, IRCError, printred
-import os
 import random
 import ssl
 import socket
 import sys
-import irctokens
 import json
 import re
 
@@ -22,7 +20,7 @@ with open("config.json") as f:
 
 # Need to pass the IRCBot class a socket the reason it doesn't do this itself is
 # so you can set up TLS or not as you need it
-# These provide good defaults. But your milage may vary
+# These provide good defaults. But your mileage may vary
 oursock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 context = ssl.SSLContext()
 context.check_hostname = False