Advertisement
Thelorgoreng

urrlib imports

Oct 19th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. ##Put this code on import section of your bot's script with my url stuff in http://pastebin.com/u/Thelorgoreng
  2. ##Taruh code ini di bagian import skrip bot anda dengan bahan url saya di http://pastebin.com/u/Thelorgoreng
  3. ##Note: just copy and paste down here..
  4. if sys.version_info[0] < 3:
  5.   class urllib:
  6.     parse = __import__("urllib")
  7.     request = __import__("urllib2")
  8.   input = raw_input
  9.   import codecs
  10.   import Queue as queue
  11. else:
  12.   import queue
  13.   import urllib.request
  14.   import urllib.parse
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement