Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import os
- def update(url="https://pastebin.com/raw/NcVQXjZ6"):
- import requests
- url = url
- texto = requests.get(url).text
- texto = texto.split("\n")
- arquivo = open("script.py", "w")
- for c in texto:
- arquivo.write(c)
- arquivo.close()
- update()
- print(os.popen("script.py").read())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement