# -*- coding: UTF-8 -*-
import urllib.request
import re
import os
os.system("cls")
url=input("Url Link : ")
if(url[0:8]=="https://"):
url=url[:4]+url[5:]
if(url[0:7]!="http://"):
url="http://"+url
try :
try :
value=urllib.request.urlopen(url,timeout=60).read().decode('cp949')
except UnicodeDecodeError :
value=urllib.request.urlopen(url,timeout=60).read().decode('UTF8')
par='<title>(.+?)</title>'
result=re.findall(par,value)
print(result)
except ConnectionResetError as e:
print(e)
TimeoutError消失。但是出現ConnectionResetError。這個錯誤是什麼?它是服務器問題嗎?所以它不能解決我?「ConnectionResetError」我該怎麼辦?
這將是很好,如果你可以添加完整回溯 – The6thSense
主頁是[這裏](http://jakjeon.icems.kr/main.do) –
@VigneshKalai什麼是回溯?我能怎麼做? –