“Plik pobierający Python z Internetu” Kod odpowiedzi

Plik pobierający Python z Internetu

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 otrzyma plik 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

Odpowiedzi podobne do “Plik pobierający Python z Internetu”

Pytania podobne do “Plik pobierający Python z Internetu”

Więcej pokrewnych odpowiedzi na “Plik pobierający Python z Internetu” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu