| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

封装了Wikipedia(维基百科网站) API的Python库:Wikipedia

Wikipedia是一个Python库,它封装了Wikipedia(维基百科网站) API,让获取和解析Wikipedia网站的数据变得非常简单,功能包括搜索Wikipedia、获取文章摘要、获取页面的链接或者图像数据等等。

>>> import wikipedia  >>> print wikipedia.summary("Wikipedia")  # Wikipedia (/ˌwɪkɨˈpiːdiə/ or /ˌwɪkiˈpiːdiə/ WIK-i-PEE-dee-ə) is a collaboratively edited, multilingual, free Internet encyclopedia supported by the non-profit Wikimedia Foundation...     >>> wikipedia.search("Barack")  # [u'Barak (given name)', u'Barack Obama', u'Barack (brandy)', u'Presidency of Barack Obama', u'Family of Barack Obama', u'First inauguration of Barack Obama', u'Barack Obama presidential campaign, 2008', u'Barack Obama, Sr.', u'Barack Obama citizenship conspiracy theories', u'Presidential transition of Barack Obama']     >>> ny = wikipedia.page("New York")  >>> ny.title  # u'New York'  >>> ny.url  # u'http://en.wikipedia.org/wiki/New_York'  >>> ny.content  # u'New York is a state in the Northeastern region of the United States. New York is the 27th-most exten'...  >>> ny.links[0]  # u'1790 United States Census'     >>> wikipedia.set_lang("fr")  >>> wikipedia.summary("非死book", sentences=1)  # 非死book est un service de réseautage social en ligne sur Internet permettant d'y publier des informations (photographies, liens, textes, etc.) en contrôlant leur visibilité par différentes catégories de personnes.

项目主页:http://www.open-open.com/lib/view/home/1417941636089

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1417941636089.html
Wikipedia 网络工具包