Top "Html-parsing" questions

HTML parsing is the process of consuming a serialization of an HTML document and producing a representation that you can work with programmatically — e.g., in order to extract data from it.

Python: Extracting specific data with html parser

I started using the HTMLParser in Python to extract data from a website. I get everything I wanted, except the …

python html python-2.7 html-parsing html-parser
Selenium: Iterating through groups of elements

I've done this with BeautifulSoup but it's a bit cumbersome, and I'm trying to figure out if I can do …

python html selenium beautifulsoup html-parsing
Parsing HTML in python - lxml or BeautifulSoup? Which of these is better for what kinds of purposes?

From what I can make out, the two main HTML parsing libraries in Python are lxml and BeautifulSoup. I've chosen …

python beautifulsoup html-parsing lxml
How to get img/src or a/hrefs using Html Agility Pack?

I want to use the HTML agility pack to parse image and href links from a HTML page,but I …

c# .net html html-parsing html-agility-pack
Using beautifulsoup to extract text between line breaks (e.g. <br /> tags)

I have the following HTML that is within a larger document <br /> Important Text 1 <br /> <…

python html html-parsing beautifulsoup
Importing bs4 in Python 3.5

I have installed both Python 3.5 and Beautifulsoup4. When I try to import bs4, I get the error below. Is there …

python python-3.x beautifulsoup html-parsing python-3.5
Is it possible to get data from HTML forms into android while using webView?

I'm making a very simple form in HTML which is viewed in android using the webview which takes in your …

javascript android webview html-parsing code-injection
HTML Agility pack: parsing an href tag

How would I effectively parse the href attribute value from this : <tr> <td rowspan="1" colspan="1">7</…

c# asp.net-mvc-3 html-parsing html-agility-pack
Simple libxml2 HTML parsing example, using Objective-c, Xcode, and HTMLparser.h

Please can somebody show me a simple example of parsing some HTML using libxml. #import <libxml2/libxml/HTMLparser.h&…

objective-c xcode html-parsing libxml2
Extract links from a web page using Go lang

I am learning google's Go programming language. Does anyone know the best practice to extract all URLs from a html …

html-parsing go