Advertisement
Guest User

Untitled

a guest
Jul 31st, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import irc3
  4.  
  5. config = dict(
  6. nick = 'test7f',
  7. username = 'test7f',
  8. realname = 'test7f',
  9. ssl = False,
  10. ssl_verify = False,
  11. host = 'localhost',
  12. port = 6667,
  13. autojoins = [ "#7ftest1", "#7f\x7ftest2" ],
  14. includes = [ 'irc3.plugins.core' ]
  15. )
  16.  
  17. bot = irc3.IrcBot.from_config(config)
  18. bot.run(forever = True)
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement