8 lines
168 B
Python
8 lines
168 B
Python
|
"""
|
||
|
Description
|
||
|
Accessing external resources could be potentially dangerous
|
||
|
|
||
|
"""
|
||
|
|
||
|
import urllib.request
|
||
|
contents = urllib.request.urlopen("https://emkc.org").read()
|