how to learn parsing?

jackyth

Registered Member
Joined
Oct 31, 2018
Messages
97
Reaction score
13
I wanna learn parsing for the sites that I wanna run.

I got no coding skill (know some basic html, css), so what can be recommend for me to learn parsing asap?
 
parse what? HTML?
The simplest one would be to use JavaScript to scrape and parse the data with XMLHttpRequest.
 
Probably OP means web scraping, but I'm not sure. If you want solve web scraping tasks, the fastest way to do that is imacros addon for chrome or firefox, limitations is one thread of work and low speed based on browser overhead. For complex tasks need python programming language and special libraries.
 
Probably OP means web scraping, but I'm not sure. If you want solve web scraping tasks, the fastest way to do that is imacros addon for chrome or firefox, limitations is one thread of work and low speed based on browser overhead. For complex tasks need python programming language and special libraries.
can you tell me more about scraping with imacro?
 
can you tell me more about scraping with imacro?
Just read official web site documentation here https://wiki.imacros.net/Main_Page, it's very good start point. Also there are many youtube videos (search "imacros tutorial"). First thing you should have is task you want to solve, you can try to grab all posts of specified used from BHW for example. When you starting to solve task you getting new questions and you need google answers to move on.
 
Just read official web site documentation here here, it's very good start point. Also there are many youtube videos (search "imacros tutorial"). First thing you should have is task you want to solve, you can try to grab all posts of specified used from BHW for example. When you starting to solve task you getting new questions and you need google answers to move on.
appreciate man!
 
if you need a app to scrape there many so programming not needed.

scrapebox is one that does a lot for marketers and website seo.

there a lot of already made scripts on 'git' for python to do most scrapping jobs .

there also visual browser programming click and point apps available.
 
If the target you want to scrape doesn't have any protection to scraping , you can just use browser extensions for small amounts of data.

Grepsr is one of them and they give you free trail up to 1000 records, 3 times a month.It's easy to use fool proof extension you just click on the stuff that you want to scrape and give them a name.It also gives you CSV and JSON output.
 
parse what? HTML?
The simplest one would be to use JavaScript to scrape and parse the data with XMLHttpRequest.

I strongly disagree with this if you are planning to do more than just view a bunch of data. This wouldn't be ideal if you want to export data as well.
 
Back
Top