“Unduh Python dari Web” Kode Jawaban

Unduh 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)
Salted

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 “Unduh Python dari Web”

Pertanyaan yang mirip dengan “Unduh Python dari Web”

Lebih banyak jawaban terkait untuk “Unduh Python dari Web” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya