Найти - Пользователи
Полная версия: beautiful soup python XML parsing
Начало » Python для новичков » beautiful soup python XML parsing
1
Чел_вТапКах
вообщем проблема в получении параметров, как из строки вида
<p id="firstpara" align="center">This is paragraph <b>one</b>.</p>
получить параметры , к примеру id, или все же прийдется писать регулярки?((
Ferroman
А документацию посмотреть религия не разрешает?
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(“<b id=”2“>Argh!</b>”)
print soup
# <b id=“2”>Argh!</b>
b = soup.b

b = 10
print soup
# <b id=“10”>Argh!</b>
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB