/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
wikipedia__examples/hello_world.py
38 строк
118 KB
gil9red
Refactoring. Using black code style
28 июн 2023, 15:59
28 июн 2023, 15:59
446e5eb
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # SOURCE: https://pypi.org/project/wikipedia/ # SOURCE: https://wikipedia.readthedocs.io/en/latest/quickstart.html # pip install wikipedia import wikipedia print(wikipedia.summary("Wikipedia")) # Wikipedia ( (listen) wik-ih-PEE-dee-ə or (listen) wik-ee-PEE-dee-ə) is a multilingual online encyclopedia created and maintained as an open collaboration project by a community of volunteer editors using a wiki-based editing system. It is the largest and most popular general reference work on the World Wide Web, and is one of the most popular websites ranked by Alexa as of October 2019. It features exclusively free content and no commercial ads, and is owned and supported by the Wikimedia Foundation, a non-profit organization funded primarily through donations.Wikipedia was launched on January 15, 2001, by Jimmy Wales and Larry Sanger. Sanger coined its name, as a portmanteau of "wiki" (the Hawaiian word for "quick") and "encyclopedia". While it was Initially an English-language encyclopedia, versions in other languages were quickly developed. With at least 5,972,341 articles, the English Wikipedia is the largest of the more than 290 Wikipedia encyclopedias. Overall, Wikipedia comprises more than 40 million articles in 301 different languages and by February 2014 it had reached 18 billion page views and nearly 500 million unique visitors per month.In 2005, Nature published a peer review comparing 42 hard science articles from Encyclopædia Britannica and Wikipedia and found that Wikipedia's level of accuracy approached that of Britannica, although critics suggested that it might not have fared so well in a similar study of a random sampling of all articles or one focused on social science or contentious social issues. The following year, Time magazine stated that the open-door policy of allowing anyone to edit had made Wikipedia the biggest and possibly the best encyclopedia in the world, and was a testament to the vision of Jimmy Wales.Wikipedia has been criticized for exhibiting systemic bias, for presenting a mixture of "truth, half truth, and some falsehoods", and for being subject to manipulation and spin in controversial topics. In addition, Wikipedia has gender bias, particularly on its English-language site, where the dominant majority of editors are male. However, Edit-a-thons have been held to encourage female editors and increase the coverage of women's topics. Facebook announced that by 2017 it would help readers detect fake news by suggesting links to related Wikipedia articles. YouTube announced a similar plan in 2018. print() print(wikipedia.search("Barack")) # ['Barack Obama', 'Barack Obama Sr.', 'Family of Barack Obama', 'Presidency of Barack Obama', 'Barack Obama citizenship conspiracy theories', 'Barack (disambiguation)', 'Barack Obama religion conspiracy theories', 'United States presidential approval rating', 'Efforts to impeach Barack Obama', 'Barack Obama (disambiguation)'] print() ny = wikipedia.page("New York City") print(ny) # <WikipediaPage 'New York City'> print(ny.title) # New York City print(ny.url) # https://en.wikipedia.org/wiki/New_York_City print( repr(ny.content) ) # 'The City of New York, usually referred to as either New York City (NYC) or simply New York (NY), is the most populous city in the United States. With an estimated 2018 population of 8,398,748 di … [Строка слишком длинная. Вы можете скачать файл] print(ny.links[0]) # 10 Hudson Yards print() wikipedia.set_lang("fr") print(wikipedia.summary("Facebook", sentences=1)) # Facebook [ˈfeɪsbʊk] est un réseau social en ligne qui permet à ses utilisateurs de publier des images, des photos, des vidéos, des fichiers et documents, d'échanger des messages, joindre et créer des groupes et d'utiliser une variété d'applications.