-1
votes
1answer
142 views

scrapy xpath selector repeats data

I am trying to extract the business name and address from each listing and export it to a -csv, but I am having problems with the output csv. I think bizs = ...
0
votes
2answers
75 views

How to scrape content from the simpleXML_Element_Object?

I am trying to scrape the contents from the Information Box of wikipedia on the right hand side of any wikipage. I am using DOMXpath to scrape the contents. On this link's Information box(on the ...
0
votes
2answers
114 views

Scrape a statistic from YouTube using PHP

After struggling for 3 hours at trying to do this on my own, I have decided that it is either not possible or not possible for me to do on my own. My question is as follows: How can I scrape the ...
0
votes
0answers
103 views

How to use DOM and XPATH in PHP to scrape content associated with css IDs/CLASSes in parsed tags

I'm in over my head, but that hasn't stopped me from getting the job done before. Seeking suggestions/examples to do this: 1) For any website URL provided: 2) obtain a list of all HTML tags, ...
0
votes
1answer
286 views

Beginner headache PHP DOMXPath

I try to write a simple PHP to scrape a html page. I don't know why I cannot get the result? Here is some of my PHP code: //$html , successfuly get the html from ...
5
votes
1answer
503 views

Remotely Scrape Page and Get most Relevant title or Description for Images with XPath

What I'm looking at doing is essentially the same thing a Tweet button or Facebook Share / Like button does, and that is to scrape a page and the most relevant title for a piece of data. The best ...
0
votes
1answer
394 views

using scrapy to parse an arbitrary number of rows (key:value pairs) in an html table

Recently started working with the scrapy library. I am trying to scrape from a web site that has slightly different tables for each kind of product they sell. Eventually, I will use the data to ...
2
votes
1answer
177 views

Xpath reverse searching

Is there a way, when using DOM_Document Xpath to search in reverse (from the end of the page moving up instead of from the top down?) If so, how would I do this? I am doind a scrape of a web site. ...
1
vote
1answer
397 views

XPath select descendent of parents sibling

This html is within my page: <tr> <td class="padded2" bgcolor="#103A74"><font color="White">Refine by Vehicle Types</font></td> </tr><tr> ...
1
vote
2answers
588 views

XPath match every node containing text

How do I match all child nodes containing text recursively. If I have a tree like table tr td "hello" td b "hi" tr td "salud" td em "bonjour" How do I match every ...