“Python BeautifulSoup запросы” Ответ

BeautifulSoup Python

pip install beautifulsoup4
Hurt Hornet

BeautifulSoup и Requesrs

from bs4 import BeautifulSoup
import requests

page = requests.get('https://www.timeanddate.com/worldclock/vietnam/hanoi')
soup = BeautifulSoup(page.text, 'html.parser')

soup.find_all(id='qlook')[0].find_all(id='ct')[0]
Disgusted Dugong

Python BeautifulSoup запросы

import requests
from bs4 import BeautifulSoup
 
base_url = 'http://www.nytimes.com'
r = requests.get(base_url)
soup = BeautifulSoup(r.text)
 
for story_heading in soup.find_all(class_="story-heading"): 
    if story_heading.a: 
        print(story_heading.a.text.replace("\n", " ").strip())
    else: 
        print(story_heading.contents[0].strip())
Lukas Pätz

BeautifulSoup Python

import bs4 as bs
import urllib.request

source = urllib.request.urlopen('https://pythonprogramming.net/parsememcparseface/').read()
Successful Sable

Ответы похожие на “Python BeautifulSoup запросы”

Вопросы похожие на “Python BeautifulSoup запросы”

Больше похожих ответов на “Python BeautifulSoup запросы” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования