Anyone good with selenium (python)?

Sounds interesting :). So the delimiter allows you to use the text file and keep the data separate in the text file.

Correct.

Any good examples on this? II'll see if stack overflow has some examples and try it out.

I don't have any sample code to show you. But it shouldn't be hard. Put a semicolon after every column while writing to file.

On a side note, I always prefer storing the scraped data in a mysql database. Its much easier to query and if you need a csv you can always export it from a mysql admin took like phpmyadmin.
 
Thanks for the tip. So mysql databases has a big advantage over using vba + excel + Ftp ? Is it simply an online database where you can manipulate excels? I'm going to investigate mysql after I fix excel :D
 
Thanks for the tip. So mysql databases has a big advantage over using vba + excel + Ftp ? Is it simply an online database where you can manipulate excels? I'm going to investigate mysql after I fix excel :D

It doesn't have to be online. And both excel / MySQL have their own advantages. Depends on the data and what you're doing with it.
Just do some googling and you'll figure out what the best solution is for your specific project.
 
I always prefer storing the scraped data in a mysql database. Its much easier to query and if you need a csv you can always export it from a mysql admin took like phpmyadmin.

Agree... you should be using DBs for data management as much as possible. Learning curve isn't to steep and well worth the investment. Anything above 50K entries becomes unmanageable in Excel.
 
Excel has pretty much zero advantages over a relational database (eg, MySQL). Learn how, and use one.

That is subjective but I'm not advocating Excel here. At times, I do use Excel for quickly churning out charts and graphs.
 
Back
Top