Tagged Questions
0
votes
0answers
25 views
how to use the search bar of a website with R?
I want to use the search bar of a specific website.
And then ask for some keywords.
And have the links in which appears my keyword using R packages Rcurl,json and XML.
For exemple, I want to scrape ...
0
votes
0answers
76 views
Any alternatives to Google Docs spreadsheet that allows unlimited ImportXML-type function?
First off, I'm a total novice when it comes to programming so any answers that require a lot of technical expertise/programming know-how aren't really going to work.
I've had some success at scraping ...
1
vote
1answer
68 views
How to get sum of nodes values in XQuery?
In below xml, there are two types of information related to parts and orders.
XML:
<mo>
<parts>
<part pno="10506">
<pname>Land Before ...
2
votes
2answers
57 views
How to Make use of a list of tables
Using the XML package i was able to scrape over 80 tables from a website, and this number will grow over time as well. Tables them selves are not very large mostly 6x10 (this size varies between ...
1
vote
3answers
118 views
extract elements from a html page
I download some youtube comment page and I want to extract username(or user display name)
and the link
like from the following code block:
<p class="metadata">
<span class="author ...
0
votes
3answers
247 views
How to scrape XML with Python?
I am trying to parse the following XML with Python. I am using:
thumbnail_tag = dom.getElementsByTagName('media:thumbnail')[0].toxml()
This selects the first one. I know I can change the [0] to [1] ...
2
votes
4answers
4k views
How can I get data from a site like Yahoo Finance?
I have a project that I need help with. I want to be able to go to a website of my making, eg. abc123.com, and have it display the Dow Jones Index. That's it. Just display one number like 12050 on ...
1
vote
2answers
231 views
Excel to XML for data stripping
I am trying to strip data from thousands of identical Excel 2007/2010 files. I would prefer to do this using scraping techniques. Is it possible to scrape an Excel file since, as far as I know, the ...
0
votes
1answer
212 views
Scan xml for links using ajax, apply links to another ajax call to scrape page and return data
So, I've tried to look around before posting, but I can't seem to find an answer. My dilemma:
I have an XML file that houses url links to various pages(all similar, diff products).
By using jQuery ...
