mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
8 lines
No EOL
168 B
Python
8 lines
No EOL
168 B
Python
"""
|
|
Description
|
|
Accessing external resources could be potentially dangerous
|
|
|
|
"""
|
|
|
|
import urllib.request
|
|
contents = urllib.request.urlopen("https://emkc.org").read() |