Skip to content

Instantly share code, notes, and snippets.

View ryoco's full-sized avatar

YAMASHITA (KATO), Ryoko ryoco

View GitHub Profile
@ryoco
ryoco / ircconnect.py
Created December 8, 2011 17:19
only join irc ,write a message and leave
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import socket, string
import codecs, sys
SERVER = sys.argv[1]
PORT = int(sys.argv[2])
PASS = sys.argv[3]