How to get a summary of the a page in Wikipedia?🤔

Hi, friends!

You Can use the Wikipedia API for this work;

Look this Code:

import requests as rq

Query = “iran”#What Do You Want To Search In wikipedia
Lang = “en”#Your Language
Url = f”https://{Lang}.wikipedia.org/api/rest_v1/page/summa…


This content originally appeared on DEV Community and was authored by Phoenix

Hi, friends!

You Can use the Wikipedia API for this work;

Look this Code:

import requests as rq

Query = "iran"#What Do You Want To Search In wikipedia
Lang = "en"#Your Language
Url = f"https://{Lang}.wikipedia.org/api/rest_v1/page/summary/{Query}"

Result = rq.get(Url).json()['extract']

print(str(Result))

Run and See The Result.

Do not forget to like!
Bye until the next postđź‘‹


This content originally appeared on DEV Community and was authored by Phoenix


Print Share Comment Cite Upload Translate Updates
APA

Phoenix | Sciencx (2021-12-18T20:29:28+00:00) How to get a summary of the a page in Wikipedia?🤔. Retrieved from https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/

MLA
" » How to get a summary of the a page in Wikipedia?🤔." Phoenix | Sciencx - Saturday December 18, 2021, https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/
HARVARD
Phoenix | Sciencx Saturday December 18, 2021 » How to get a summary of the a page in Wikipedia?🤔., viewed ,<https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/>
VANCOUVER
Phoenix | Sciencx - » How to get a summary of the a page in Wikipedia?🤔. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/
CHICAGO
" » How to get a summary of the a page in Wikipedia?🤔." Phoenix | Sciencx - Accessed . https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/
IEEE
" » How to get a summary of the a page in Wikipedia?🤔." Phoenix | Sciencx [Online]. Available: https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/. [Accessed: ]
rf:citation
» How to get a summary of the a page in Wikipedia?🤔 | Phoenix | Sciencx | https://www.scien.cx/2021/12/18/how-to-get-a-summary-of-the-a-page-in-wikipedia%f0%9f%a4%94/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.