How do you manage and store scraped data?

all depends on the data value, how much did you invest into, in terms of money/time/efforts,
for easy to scrape data, i tend to leave it wherever it was scraped or wherever i'm planning to use (PC/VPS),
for important data, i simply save it in some drive (g drive for example), just compress and upload
 
Amazon AWS private bucket, if it's super private and very important professionally.
 
Using WP with mysql seems ok, just make sure you backup the scraped data table on regular basis, then you can copy backups on an external drive, for instance. Thus, you will be able to periodically refresh that db table.
 
I'm unsure whether to keep it on my local PC or use WordPress and MySQL.
I have a VPS scraping various data 24/7, which either gets inserted straight into mysql tables, saved as csvs, or dumped as plain text files for other scripts to parse through later.
 
Most of mine is saved on a flash drive and locally on my scraping laptop.

It really depends on what that data is being scraped for. I normally keep it in a CSV.
 
i think local storage might not handle very large datasets well cause disk space and performance can become issues. for most individual or small projects, local storage is often sufficient and simpler to manage but for larger or collaborative projects, leveraging WordPress with MySQL can provide more robust solutions.
 
I'm unsure whether to keep it on my local PC or use WordPress and MySQL.
I would use Wordpress and MySQL, provided I do several back ups in order not to loose any of the data.
 
You don’t need wordpress for this. Just install mysql and phpmyadmin, create some schema through phpmyadmin and store data in that. Depending on the schema you could store a hell lot of data and query the data as you need. Csv is fine for upto 100k tows perhaps, it becomes painful after that.

Also, you could do it locally as well. Install docker desktop and use the gui to add a mysql and a phpmyadmin container.
 
Back
Top