would someone be kind enough to point or just hint me to the right direction.
How would I scrape all the articles from a site like http://www.jugantor.com (where there are no rss feeds) for a later translation.
I've used MS for alot of thing but never for web so I'm a little confused.
I started with this but got stuck
Code: Select all
IECreate>IE[0]
IENavigate>%IE[0]%,http://www.jugantor.com/,r
IEWait>%IE[0]%,r
Wait>delay
IEGetTags>www.jugantor.com,DIV,O,divArr
DeleteFile>C:\temp\jugantor.txt
If>divArr_count>0
Let>k=0
Repeat>k
Let>k=k+1
Let>this_div_html=divArr_%k%
WriteLn>C:\temp\jugantor.txt,resvar,%this_div_html%
Until>k=divArr_count
Endif
Or maybe there is a whole different aproach that I'm not aware of
Thanks.