Advertisement
Madmouse

example of a server dict for threading, and cross sharing

Jul 22nd, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.68 KB | None | 0 0
  1. # servers
  2. connections = {
  3. #           0     1        2                3          4      5 6 7
  4. # Server    ssl?  port  [channels]         thread     socket  power lists
  5.     "irc.hackthissite.org": [True,  6697, ["#bots", "#8====D", "#coffeesh0p"],    0, 0,   noneuter_list,  neuter_list,  dicks ],
  6.     "irc.blackcatz.org":    [True,  6697, ["#default", "#blackcatz"],             0, 0,   noneuter_list,  neuter_list,  dicks ],
  7.     "irc.freenode.org":     [True,  6697, ["##linux", "##asm", "##math"],         0, 0,   noneuter_list,  neuter_list,  dicks ],
  8.     "rcode.ca":             [False, 6667, ["#rcode"],                             0, 0,   noneuter_list,  neuter_list,  dicks ],
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement