Tagged Questions
1
vote
1answer
42 views
How can I retrieve and parse just the html returned from an URL?
I want to be able to programmatically (without it displaying in the browser) send an URL such as ...
-5
votes
0answers
26 views
Interact with the tool “webBrowser” [closed]
I have a program written in C# and at the end I need to show site by tool webBrowser1 has been introduced already.
But I need to fill the boxes "cells" table displayed in the page or the site open ...
0
votes
0answers
132 views
How to parse/screen scrape this webpage of in java with jsoup [closed]
I have a moderate to strong background in Java but a little in HTML and not much in JavaScript/CSS. I was wondering how I could use jSoup to parse data from the table this website:
...
0
votes
1answer
142 views
Issue with html tags while scraping data using beautiful soup
Common piece of code:
# -*- coding: cp1252 -*-
import csv
import urllib2
import sys
import time
from bs4 import BeautifulSoup
from itertools import islice
page = ...
1
vote
1answer
214 views
Using ghost.py to change the value of a select dropdown and retrieve values after update
Default action for the webpage is to list results by relevance but has a dropdown box that can be used to change the results table sort order. I would like to use Ghost.py to mimic the action of ...
1
vote
3answers
115 views
What this symbol .*? means in PHP (HTML Parsing)
i just wanna ask what this symbol .*? means in php.
here is the sample code:
function parse($html) {
//echo "Find table(id=weekdays)..\n";
$pattern = ...
1
vote
2answers
83 views
perl regex mutiple groups
I am trying to do a screen scrape in perl and have it down to a array of table elements.
the string:
<tr>
<td>10:11:00</td>
<td><a ...
0
votes
3answers
287 views
Best method to screen-scrape data off of many different websites
I'm looking to scrape public data off of many different local government websites. This data is not provided in any standard format (XML, RSS, etc.) and must be scraped from the HTML. I need to scrape ...
2
votes
2answers
319 views
CSS aware intelligent html parser for python
I'm looking for a HTML parser which is css aware and works same way a browser renders html. I'm actually looking for equivalent of element.innerText (DOM-JS).
Let me give a example. consider the ...
1
vote
1answer
100 views
Unable to find exact source code of my blog
I am into a project where I deal with parsing HTML of web pages. So, I took my blog (Bloggers Blog - Dynamic Template) and tried to read the content of it. Unfortunately I failed to look at "actual" ...
1
vote
3answers
181 views
How can i use Regex or DOM with PHP to get a slice of HTML?
If I have a block of HTML and want to get the exact HTML content for certain nodes and child nodes, for example the <ul> block below, should I use something like preg_match or parse the content ...
4
votes
4answers
1k views
Interacting with web pages in C#
There is a website that was created using cold fusion (not sure if this matters or not). I need to interact with this web site. The main things I need to do are navigate to different pages and click ...
1
vote
2answers
184 views
DOM Parser Foreach
Does anyone know why this wouldn't work?
foreach($html->find('tbody.result') as $article) {
// get retail
$item['Retail'] = trim($article->find('span.price', 0)->plaintext);
// ...
1
vote
2answers
175 views
Html scraping with JS support
I am trying to scrape a company web page for automation purposes but the embedded scripts in the page prevent me to fully replicate the request. The biggest pain is in the script generated cookies.
I ...
1
vote
2answers
57 views
checking programmatically that a remote websites 'shows' a particular html element
I want to require my free users to add a linkback to my website. But, I want to check it programmatically that indeed they added the linkback html element I provided and was not hidden by some sort of ...
1
vote
4answers
3k views
Can a wild card or string “contains” be used in a switch {case}? caution: wordy
Being new to programming I read a lot of sample code and try to hack things together in an attempt to learn what works. I am working with html agility pack trying to scrap a news webpage.
Problem: ...
1
vote
1answer
1k views
Xpath and wildcards
I have tried several combinations without success. The full xpath to that data is .//*[@id='detail_row_seek_37878']/td The problem is the number portion '37878' changes for each node and thus I ...
2
votes
2answers
370 views
How to scrape logos from websites?
First off, this is not a question about how to scrape websites. I am fully aware of the tools available to me to scrape (css_parser, nokogiri, etc. I'm using Ruby to do the scraping).
This is more of ...
1
vote
1answer
271 views
xpath and htmlagility pack
I figured it out! I will leave this posted just in case some other newbie like myself has the same question.
Answer: **("./td[2]/span[@class='smallfont']")***
I am a novice at xpath and html ...
0
votes
5answers
908 views
How can I use html agility to grab everything between <b> and <br>
I poorly asked about this same project last week and didn't receive any suggestions. I will try to be more clear. I am trying to work with data from the website www.gtin13.com. For example if you ...
1
vote
3answers
127 views
Are there libraries for parsing content blocks out of HTML?
I'm trying to find libraries or examples of parsing tools or patterns to use in generically parsing content out of HTML. I'm thinking something along the lines of how services like post.ly can take ...
1
vote
3answers
778 views
Screen-scraping for PDF links to download
I'm learning C# through creating a small program, and couldn't find a similar post (apologies if this answer is posted somewhere else).
How might I go about screen-scraping a website for links to ...
0
votes
1answer
905 views
PHP Simple HTML DOM Parser - How to get the first post of all topics in a forum
I was trying to scrap the first post of every topics in sitepoint javascript forum. But The DOM Parser would give me ALL THE POSTS OF EVERY TOPICS IN SITE POINT JAVASCRIPT FORUM. Maybe I didn't ...
0
votes
2answers
731 views
Php screen scraping using php simple dom parser
I am using simple html dom parser to scrape a website ... How can i skip a particular class while in a loop
0
votes
1answer
331 views
BeautifulSoup is choking on jQuery script, any known workaround?
I'm giving BeautifulSoup an html document and simply by constructing a BeautifulSoup object instance with the full html, it seems to choke on the following line of a jQuery script that's embedded ...
1
vote
4answers
3k views
Web scraping, screen scraping, data mining tips? [closed]
I'm working on a project and I need to do a lot of screen scraping to get a lot of data as fast as possible. I'm wondering if anyone knows of any good API's or resources to help me out.
I'm using ...
0
votes
1answer
207 views
java html parser doesnt read all page
I'm parsing html pages to get specific information, but there are some pages that I cant get all the information displayed on the web page, for example in this page
I cant get the reviews ...
0
votes
1answer
1k views
Parse html with ajax json inside
Hi
I have such files to parse (from scrapping) with Python:
some HTML and JS here...
SomeValue =
{
'calendar': [
{ 's0Date': new Date(2010, 9, 12),
'values': [
...
1
vote
8answers
2k views
capturing ajax requests
I want to capture an ajax http request w/ all of its headers/cookies/post params being sent to save it so I can scrape it later.
I can't find a good way of doing this with firefox or chrome. Firebug ...
1
vote
5answers
517 views
Problem with eastern european characters when scraping data from the European Parliament Website
EDIT: thanks a lot for all the answers an points raised. As a novice I am a bit overwhelmed, but it is a great motivation for continuing learning python!!
I am trying to scrape a lot of data from the ...
0
votes
1answer
650 views
c# Network Programming - HTTPWebRequest Scraping
I am building a web scraping application. It should scrape a complex web site with concurrent HttpWebRequests from a single host to a single target web server.
The application should run on Windows ...
2
votes
5answers
1k views
What language/tool should I use for HTML parsing?
I have a couple of websites that I want to extract data from and based on previous experiences, this isn't as easy as it sound. Why? Simply because the HTML pages I have to parse aren't properly ...
186
votes
41answers
51k views
Options for HTML scraping?
I'm thinking of trying Beautiful Soup, a Python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in ...


