Skip to content

Instantly share code, notes, and snippets.

View MasterChenb0x's full-sized avatar

Master Chen MasterChenb0x

View GitHub Profile
@11fl
11fl / irc.bot.0.1.py
Last active December 8, 2022 00:44
IRC bot python 3
# -*- coding: utf-8 -*-
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
HOST = '' #irc server
PORT = 6665 #port
NICK = 'pony_bot'
USERNAME = 'megadeath'
REALNAME = 'little pony'