Python Web Scraping: List all language names and number of related articles in the order they appear in wikipedia
Python Web Scraping: Exercise-12 with Solution
Write a Python program to list all language names and number of related articles in the order they appear in wikipedia.org.
Sample Solution:
Python Code:
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen('https://www.wikipedia.org/')
bs = BeautifulSoup(html, "html.parser")
nameList = bs.findAll('a', {'class' : 'link-box'})
for name in nameList:
print(name.get_text())
Sample Output:
English 5 675 000+ articles 日本語 1 111 000+ 記事 Español 1 427 000+ artículos Deutsch 2 195 000+ Artikel Русский 1 481 000+ статей Français 1 997 000+ articles Italiano 1 446 000+ voci 中文 1 012 000+ 條目 Português 1 000 000+ artigos Polski 1 288 000+ haseł
Flowchart:

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to check whether a page contains a title or not.
Next: Write a Python program to get the number of people visiting a U.S. government website right now.
What is the difficulty level of this exercise?
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join