New Post
Loading...

How To Create Python Program for wikipedia.


  • This article talks about the Internet (Internet) encyclopedia. 
  • For that Wikipedia's main page, see Wikipedia's main page. 
  • For visitor introduction to Wikipedia, see page about Wikipedia.
  • Wikipedia is a free, web-based and collaborative multilingual encyclopedia.
  • which originated in a project supported by the non-profit Wikimedia Foundation.

Installation

sudo apt-get install pip

  • Pip is a package manager for Python i.e. 
  • pip command can be used to download any external module in Python. 
  • It is something that helps us to get code written by someone else from somewhere.

Installation

pip install wikipedia

Or

sudo pip install wikipedia

  • We must first install the Python Wikipedia library, which wraps the official Wikipedia API. 
  • This can be done by entering the command below in your CMD (command prompt) or Terminal



# importing the module...........
import wikipedia
# getting suggestions.............
result = wikipedia.search("programming", results = 5)
# printing the result...............
print(result)

OUTPUT

['Program', 'Computer programming', 'Programming language', 'Functional programming', 'Linear programming']

Post a Comment

0 Comments