def getWikipediaSummary(station: str):
try:
result = wikipedia.summary("Stazione di {station}".format(station=station))
except PageError:
return "Nessuna informazione aggiuntiva disponibile"
return cleanHTML(result) + " (da Wikipedia, l'enciclopedia libera)"
评论列表
文章目录