“Python -Downloaddatei aus dem Web” Code-Antworten

Python -Downloaddatei aus dem 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 erhalten eine Online -Datei

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

Ähnliche Antworten wie “Python -Downloaddatei aus dem Web”

Fragen ähnlich wie “Python -Downloaddatei aus dem Web”

Weitere verwandte Antworten zu “Python -Downloaddatei aus dem Web” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen