Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #-*- coding:utf-8 -*-
  3.  
  4. import sys
  5. # import ...
  6.  
  7. class bot():
  8.     def __init__(self, user, pass):
  9.         self.user = user
  10.         self.pass = pass
  11.     def run(self):
  12.         #connect...
  13.  
  14. def start():
  15.     # apri il file di log e cose simili
  16.     b = bot()
  17.     b.run()
  18.     # chiudi il file di log e cose simili
  19.  
  20. if __name__ == '__main__':
  21.     start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement