You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
410 B
21 lines
410 B
2 years ago
|
# encoding: UTF-8
|
||
|
import urllib.request
|
||
|
|
||
|
# URL öffnen und Daten anfordern. Ohne spezielle Dateiangabe
|
||
|
# liefert der Webserver immer die index.html zurück.
|
||
|
fp = urllib.request.urlopen('https://raspithek.de')
|
||
|
|
||
|
# Daten auslesen
|
||
|
data = fp.read()
|
||
|
|
||
|
print(type(data))
|
||
|
# Die Daten sin vom Datentyp Bytes und müssen daher erst
|
||
|
# zum UTF-8 String umkodiert werden.
|
||
|
str = data.decode('utf8')
|
||
|
|
||
|
fp.close()
|
||
|
|
||
|
print(str)
|
||
|
|
||
|
|