Top "Beautifulsoup" questions

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

Convert </br> to end line

I'm trying to extract some text using BeautifulSoup. I'm using get_text() function for this purpose. My problem is that …

beautifulsoup
Mechanize and BeautifulSoup for PHP?

I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?

php python beautifulsoup mechanize
How to download images from BeautifulSoup?

Image http://i.imgur.com/OigSBjF.png import requests from bs4 import BeautifulSoup r = requests.get("xxxxxxxxx") soup = BeautifulSoup(r.…

python python-2.7 beautifulsoup scrape
Beautiful Soup cannot find a CSS class if the object has other classes, too

if a page has <div class="class1"> and <p class="class1">, then soup.findAll(True, 'class1…

python screen-scraping beautifulsoup
BeautifulSoup and ASP.NET/C#

Has anyone integrated BeautifulSoup with ASP.NET/C# (possibly using IronPython or otherwise)? Is there a BeautifulSoup alternative or a …

c# asp.net screen-scraping ironpython beautifulsoup
Passing web data into Beautiful Soup - Empty list

I've rechecked my code and looked at comparable operations on opening a URL to pass web data into Beautiful Soup, …

python web-scraping beautifulsoup urllib3 web-content
BeautifulSoup - modifying all links in a piece of HTML?

I need to be able to modify every single link in an HTML document. I know that I need to …

python beautifulsoup
BeautifulSoup: Strip specified attributes, but preserve the tag and its contents

I'm trying to 'defrontpagify' the html of a MS FrontPage generated website, and I'm writing a BeautifulSoup script to do …

python web-scraping beautifulsoup scraper frontpage
Python script to translate via google translate

I'm trying to learn python, so I decided to write a script that could translate something using google translate. Till …

python beautifulsoup urllib2 google-translate
How to get all direct children of a BeautifulSoup Tag?

How to retrieve (not recursively) all children using BeautifulSoup (bs4) ? <div class='body'><span>A</…

python-3.x beautifulsoup siblings