Files
E911_helper/script_loader.py
2022-02-01 02:03:29 -08:00

13 lines
241 B
Python

import requests
import sys
url = 'https://git.voice1.me/VOICE1-Public/E911_helper/raw/branch/master/e911_helper.py'
r = requests.get(url)
r.raise_for_status()
code = r.text
sys.argv = ['<string>']
exec(compile(code, '<string>', 'exec'))