Advertisement
ijontichy

<stdin>

Mar 16th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. ijontichy@powernoob ~/tichybot2 $ python
  2. Python 3.3.0 (default, Dec 22 2012, 21:02:07)
  3. [GCC 4.7.2] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import ircconnection
  6. >>> derp = ircconnection.IRCConnection("testbot")
  7. >>> derp.connect("irc.lostsig.com")
  8. Sending: b'USER testbot testbot - :testbot\n'
  9. Sending: b'NICK testbot\n'
  10. b':irc.lostsig.net NOTICE Auth :*** Looking up your hostname...\r\n:irc.lostsig.net NOTICE Auth :*** Found your hostname (24-207-224-192.dhcp.stls.mo.charter.com) -- cached\r\n'
  11. >>> derp.recvLines()
  12. [':irc.lostsig.net NOTICE Auth :*** Looking up your hostname...', ':irc.lostsig.net NOTICE Auth :*** Found your hostname (24-207-224-192.dhcp.stls.mo.charter.com) -- cached', ':irc.lostsig.net NOTICE Auth :Welcome to \x02LSN\x02!', ':irc.lostsig.net 001 testbot :Welcome to the LSN IRC Network testbot!testbot@24-207-224-192.dhcp.stls.mo.charter.com', ':irc.lostsig.net 002 testbot :Your host is irc.lostsig.net, running version InspIRCd-2.0', ':irc.lostsig.net 003 testbot :This server was created 20:41:32 Dec 13 2012', ':irc.lostsig.net 004 testbot irc.lostsig.net InspIRCd-2.0 BIRScdikorswx ACDFJKLMNORSTabefghijklmnopqrstvz FJLabefghjkloqv', ':irc.lostsig.net 005 testbot AWAYLEN=201 CASEMAPPING=rfc1459 CHANMODES=beg,k,FJLfjl,ACDKMNORSTimnprstz CHANNELLEN=65 CHANTYPES=# CHARSET=ascii ELIST=MU EXCEPTS=e EXTBAN=,ACNORSTUmprz FNC KICKLEN=256 MAP MAXBANS=60 :are supported by this server', ':irc.lostsig.net 005 testbot MAXCHANNELS=20 MAXPARA=32 MAXTARGETS=20 MODES=20 NAMESX NETWORK=LSN NICKLEN=46 OPERLOG OVERRIDE PREFIX=(qaohv)~&@%+ REMOVE SECURELIST SSL=209.44.106.179:6697 :are supported by this server', ':irc.lostsig.net 005 testbot STATUSMSG=~&@%+ TOPICLEN=308 UHNAMES VBANLIST WALLCHOPS WALLVOICES WATCH=32 :are supported by this server', ':irc.lostsig.net 042 testbot 682AAABU9 :your unique ID', ':irc.lostsig.net 375 testbot :irc.lostsig.net message of the day', ':irc.lostsig.net 372 testbot :- * pineapple.lostsig.net *', ':irc.lostsig.net 372 testbot :- 209.44.106.179', ':irc.lostsig.net 372 testbot :- SSL on ports 6697 & 7002 ', ':irc.lostsig.net 372 testbot :- Montreal, CA', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- ---[ Connection ]-----------------------------', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- You can reach this IRC network via the', ':irc.lostsig.net 372 testbot :- round-robin at irc.lostsig.net.', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- This network is also accessible using Mibbit: ', ':irc.lostsig.net 372 testbot :- http://mibbit.com/', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- ---[ Staff ]----------------------------------', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- - SeanieB (Network Founder)', ':irc.lostsig.net 372 testbot :- - tm512 (crimson Server Owner)', ':irc.lostsig.net 372 testbot :- - serio', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- ---[ Rules ]----------------------------------', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- This network retains a policy of open ', ':irc.lostsig.net 372 testbot :- discussion. We allow any legal subject', ':irc.lostsig.net 372 testbot :- matter. We do not believe in self-censorship.', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- By connecting to this network, you agree', ':irc.lostsig.net 372 testbot :- that:', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- - You are at least 13 years of age.', ':irc.lostsig.net 372 testbot :- - You will not attempt to damage this system', ':irc.lostsig.net 372 testbot :- in any way.', ':irc.lostsig.net 372 testbot :- - You will obey staff instruction.', ':irc.lostsig.net 372 testbot :- - Your use of this network may be limited or', ':irc.lostsig.net 372 testbot :- restricted at any time.', ':irc.lostsig.net 372 testbot :- - You will not harass any users of this', ':irc.lostsig.net 372 testbot :- system.', ':irc.lostsig.net 372 testbot :- - These rules are subject to change at any', ':irc.lostsig.net 372 testbot :- time, with or without warning.', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- If you do not agree to any of these terms,', ':irc.lostsig.net 372 testbot :- please disconnect immediately.', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 testbot :- If you require assistance, please contact', ':irc.lostsig.net 372 testbot :- an oper.', ':irc.lostsig.net 372 testbot :- ', ':irc.lostsig.net 372 t
  13. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement