chir.py

- twitter bot that earns bitcoin via ppc links
git clone git://git.acid.vegas/chir.py.git
Log | Files | Refs | Archive | README | LICENSE

chir.py (510B)

      1 #!/usr/bin/env python
      2 # Chir.py Twitter Bot - Developed by acidvegas in Python (https://acid.vegas/chir.py)
      3 # chir.py
      4 
      5 import sys
      6 
      7 sys.dont_write_bytecode = True
      8 
      9 import debug
     10 
     11 debug.info()
     12 if not debug.check_version(3):
     13     debug.error_exit('Chir.py requires Python version 3 to run!')
     14 if not debug.get_windows():
     15     if debug.check_root():
     16         debug.error_exit('Do not run Chir.py as root!')
     17 debug.check_imports()
     18 debug.check_config()
     19 import twitter
     20 twitter.login()
     21 twitter.main_loop()
     22 debug.keep_alive()