Answers for "pip install urllib"

1

pip install urllib

pip install urllib3
Posted by: Guest on February-10-2021
2

python urllib3 download file

import requests

print('Beginning file download with requests')

url = 'http://i3.ytimg.com/vi/J---aiyznGQ/mqdefault.jpg'
r = requests.get(url)

with open('/Users/scott/Downloads/cat3.jpg', 'wb') as f:
    f.write(r.content)

# Retrieve HTTP meta-data
print(r.status_code)
print(r.headers['content-type'])
print(r.encoding)
Posted by: Guest on February-10-2021
4

urllib python

#Used to make requests
import urllib.request

x = urllib.request.urlopen('https://www.google.com/')
print(x.read())
Posted by: Guest on February-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language