summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Arnold2025-02-22 00:46:07 -0500
committerMatt Arnold2025-02-22 00:46:07 -0500
commite8e53da972309e5ace11bd2a46ba5401593a9c2a (patch)
treeba5500b386ffc082dd3d97c42cc2e1bae2fb1e8c
parentf2f74a152109f5b6c90cb8dd832c79b21c306b85 (diff)
change readme, and play Fetch with Ruff Ruffmen
-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