Forum Moderators: phranque
1. What language should I create this spider in?
2. Where can I learn do this? (resource sites or examples)
thanks,
Justin
Google for "HTML parser". To extend that to spider functionality, simply read in the array of links, and keep following them. That's what a basic spider does.
I'd recommend perl/python, just for the availabilty of good parsing objects.
I don't want to keep following links right now, just want to pull out specific parts and that is it.
I am not a coding genius by any means, just needed some direction on which language is the best. I figured Perl would be the best, or at least that is what I have read, but wasn't sure.
I understand how spiders work, just need someone to show me how to do it. I need a teacher. Do you know any good tutorials on creating a spider in Perl?
Here's the reference on perldoc for the HTML::Parser module. It's a good starting point, with examples:
[perldoc.com...]