Top "Beautifulsoup" questions

Beautiful Soup is a Python package for parsing HTML/XML.

Beautiful Soup find children for particular div

I have am trying to parse a webpage that looks like this with Python->Beautiful Soup: I am trying …

python parsing beautifulsoup
How to get rid of BeautifulSoup user warning?

After I installed BeautifulSoup, Whenever I run my Python in cmd, this warning comes out. D:\Application\python\lib\site-packages\…

python beautifulsoup user-warning
BeautifulSoup: AttributeError: 'NavigableString' object has no attribute 'name'

Do you know why the first example in BeautifulSoup tutorial http://www.crummy.com/software/BeautifulSoup/documentation.html#QuickStart gives …

python beautifulsoup
How to install beautifulsoup into python3, when default dir is python2.7?

I have both Python 2.7 and Python 3.5 installed. When I type pip install beautifulsoup4 it tells me that it is already …

python python-3.x beautifulsoup pip
Python and BeautifulSoup encoding issues

I'm writing a crawler with Python using BeautifulSoup, and everything was going swimmingly till I ran into this site: http://…

python unicode utf-8 beautifulsoup
How to get HTML from a beautiful soup object

I have the following bs4 object listing: >>> listing <div class="listingHeader"> <h2> .... >&…

python html beautifulsoup html-parsing
Rendered HTML to plain text using Python

I'm trying to convert a chunk of HTML text with BeautifulSoup. Here is an example: <div> <p&…

python beautifulsoup
BeautifulSoup webscraping find_all( ): finding exact match

I'm using Python and BeautifulSoup for web scraping. Lets say I have the following html code to scrape: <body&…

python html regex web-scraping beautifulsoup
Python BeautifulSoup scrape tables

I am trying to create a table scrape with BeautifulSoup. I wrote this Python code: import urllib2 from bs4 import …

python html web-scraping beautifulsoup html-parsing
Remove a tag using BeautifulSoup but keep its contents

Currently I have code that does something like this: soup = BeautifulSoup(value) for tag in soup.findAll(True): if tag.…

python beautifulsoup