yes but I want it to scrape and then fully automatically post scraped info to my website.With a simple scraper? This can be done with node.js/python.
If you are looking for a freelancer, post a thread in hire a freelancer section.
If you are looking for a tutorial, it depends on how complicated the scraping job is. If it is not that difficult (no login, info is available in the html itself), it could probably be done with a simple fetch/axios request. For more complicated tasks, you could use puppeteer. There are lots of tutorials available for both on YT. Just search for the keywords.
You just need a mysql query to insert the scraped data to the database.. That is it.yes but I want it to scrape and then fully automatically post scraped info to my website.
Also Ive tried to find some information already but unfortunately any success yet, so decided to post here.
I am not using any language for scraping atm, just asking now.You just need a mysql query to insert the scraped data to the database.. That is it.
What language are you using to scrape the data? Google how to make a mysql insert (or better yet, a insert ignore/replace into query if the data can have duplicates) query in that language. Node has mysql2 for example. It should be pretty straightforward. Be sure to back everything up first though.Im
I would use selenium (or if possible just requests) check if the elements do exist save it into a json/sqlite db and load the json from the other program something like thisyes but I want it to scrape and then fully automatically post scraped info to my website.
I have done that using php and have script that does exactly that. PM for detailsyes but I want it to scrape and then fully automatically post scraped info to my website.
Also Ive tried to find some information already but unfortunately any success yet, so decided to post here.