Tagged Questions

9
votes
5answers
818 views

How can I use Perl to grab text from a web page that is dynamically generated with JavaScript?

There is a website I am trying to pull information from in Perl, however the section of the page I need is being generated using javascript so all you see in the source is: <div ...
8
votes
2answers
330 views

Is there a Python equivalent for the Perl module Term::VT102?

In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
5
votes
7answers
812 views

What's the best way to write a maintainable web scraping app?

I wrote a perl script a while ago which logged into my online banking and emailed me my balance and a mini-statement every day. I found it very useful for keeping track of my finances. The only ...
5
votes
10answers
7k views

How can I screen scrape with Perl?

I need to display some values that are stored in a website, for that I need to scrape the website and fetch the content from the table. Any ideas?
4
votes
3answers
162 views

How can I scrape data from the Israeli Bureau of Statistics web query tool?

The following url: http://www.cbs.gov.il/ts/ID40d250e0710c2f/databank/series_func_e_v1.html?level_1=31&level_2=1&level_3=7 Gives a data generator of information from the Israeli government ...
3
votes
3answers
168 views

How do I make pQuery work with slightly malformed HTML?

pQuery is a pragmatic port of the jQuery JavaScript framework to Perl which can be used for screen scraping. pQuery quite sensitive to malformed HTML. Consider the following example: use pQuery; my ...
3
votes
4answers
1k views

How can I log in to YouTube using Perl?

I am trying to write a Perl script to connect to me YouTube account but it doesnt seem to work. Basically I just want to connect to my account but apparently it is not working. I don't even have an ...
3
votes
8answers
2k views

How can I download Yahoo Groups?

I want to download some Yahoo Groups (files, photos, messages, memberlist) and I've found these scripts: http://freshmeat.net/projects/grabyahoogroup/ ...
2
votes
1answer
116 views

Screen scraping: Automating a vim script

In vim, I loaded a series of web pages (one at a time) into a vim buffer (using the vim netrw plugin) and then parsed the html (using the vim elinks plugin). All good. I then wrote a series of vim ...
2
votes
2answers
709 views

How do I send an arrow key in Perl using the Net::Telnet module?

Using the Perl module Net::Telnet, how do you send an arrow key to a telnet session so that it would be the same thing as a user pressing the down key on the keyboard? use Net::Telnet; my $t = new ...
1
vote
3answers
51 views

Perl: Problems with WWW:Mechanize and a form

i am trying to write a script that will navigate through a soccer website to the player of my choice and scrape their info for me. I have the scraping part working by just hard coding an individual ...
1
vote
1answer
74 views

How to check the HTML element is a end node?

I am building a HTML parser in Perl. I would like to know if the HTML element is an element without any sibilings. Here is the HTML, I would like to parse : <span class="bold1">A:</span> ...
1
vote
1answer
495 views

WWW:Mechanize Form Select

I am attempting to login to Youtube with WWW:Mechanize and use forms() to print out all the forms on the page after logging in. My script is logging in successfully, and also successfully navigating ...
1
vote
3answers
824 views

Why am I getting a new session ID on every page fetch in my Perl WWW::Mechanize script?

So I'm scraping a site that I have access to via HTTPS, I can login and start the process but each time I hit a new page (URL) the cookie Session Id changes. How do I keep the logged in Cookie Session ...
1
vote
3answers
111 views

I'm new to Perl and have a few regex questions

I'm teaching myself Perl and I learn best by example. As such, I'm studying a simple Perl script that scrapes a specific blog and have found myself confused about a couple of the regex statements. ...
0
votes
2answers
69 views

help with perl code to parse a file

I am new to Perl and have a question about the syntax. I received this code for parsing a file containing specific information. I was wondering what the if (/DID/) part of the subroutine get_number is ...
0
votes
1answer
359 views

Perl WWW::Mechanize JSESSION issue

I am having a problem getting/staying logged in with perl mechanize to https://psmsadmin.vzw.com/vzwcampaignadmin/ Looking at the headers, it appears that the JSESSIONID keeps changing. I am using a ...
0
votes
2answers
414 views

How do I find “wide characters” printed by perl?

A perl script that scrapes static html pages from a website and writes them to individual files appears to work, but also prints many instances of wide character in print at ./script.pl line n to ...
0
votes
1answer
266 views

Non-trivial screen scraping selections using pQuery

I'm using pQuery (a Perl port of jQuery) to select elements and retrieve text from a HTML-document. Consider the following markup: <x> <y>code1</y> <z>stuff</z> ...