本文主要是介绍python requests做爬虫爬取oxford词典单词音标,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import requests
import redef phonetic_spelling(word):word=word.replace(" ","_")phoneticSpelling=""#url的格式有规律request=requests.get("https://en.oxforddictionaries.com/definition/"+word)html=request.text#查看网页发现音标所处的行HTML格式有规律 使用正则表达式描述regularExpression=r'<span\s+class="phoneticspelling">/([^\/]*)/</span>'matchObject=re.search(regularExpression,html,re.I)if matchObject:if matchObject.group(1):phoneticSpelling=matchObject.group(1)print("\nphoneticSpelling: ",word,
这篇关于python requests做爬虫爬取oxford词典单词音标的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!