0
2

More than 3 years have passed since last update.

BeautifulSoup

Posted at
#pip install bs4
from bs4 import BeautifulSoup
import requests


html = requests.get('https://www.python.org')

soup = BeautifulSoup(html.text, 'lxml')

titles = soup.find_all('title')
print(titles[0].text)

intro = soup.find_all('div', {'class': 'introduction'})
print(intro[0].text)
Welcome to Python.org

Python is a programming language that lets you work quickly and integrate systems more effectively. Learn More
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2