Skip to content

Instantly share code, notes, and snippets.

View Aubizzy's full-sized avatar

AubreyKanje Aubizzy

View GitHub Profile
@Aubizzy
Aubizzy / -
Created March 1, 2018 14:28 — forked from anonymous/-
import socket,time
network = 'irc.freenode.net'
port = 6667
channels = ['#digibytecoin'] #Add as many as you want
nick = 'clickboom'
identify = False
password = 'superAwesomePassword'
irc = socket.socket (socket.AF_INET, socket.SOCK_STREAM)
print "Connecting to "+network+" ..."
irc.connect ((network, port))