“file unduhan python dari web” Kode Jawaban

file unduhan python dari web

import requests

url = 'https://www.facebook.com/favicon.ico'
r = requests.get(url, allow_redirects=True)

open('facebook.ico', 'wb').write(r.content)
The Biton

Python Dapatkan file online

import urllib2  # the lib that handles the url stuff

data = urllib2.urlopen(target_url) # it's a file like object and works just like a file
for line in data: # files are iterable
    print line
TheAssassin

Jawaban yang mirip dengan “file unduhan python dari web”

Pertanyaan yang mirip dengan “file unduhan python dari web”

Lebih banyak jawaban terkait untuk “file unduhan python dari web” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya