el3

import_paste

el3
Aug 6th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def import_paste(url,R=requests):
  2. r = R.get(url)
  3. c=compile(r.text,"abc","single")
  4. eval(c)
  5. globals().update(locals())
Advertisement
Add Comment
Please, Sign In to add comment