I have written some Python code that scrapes information and puts it into several different excel files depending on what the data is. Usually around 8 separate excel files.
I am wanting to be able to have this data automatically load into a database.
I believe that Python automatically comes with the SQLLite database installed?
I found this post: Load CSV data into MySQL in Python
which seems to be similar to what I want to do. However, I have never used SQLLite and don't even know how to tell if it is installed on my machine to begin doing any testing. Is there an easier way to load in data than using SQLite?
Once confirming SQLite is installed, the first step it seems would be to create the database and then try to load the data into it, making sure it appends data correctly so things don't get overwritten.
Eventually I want to be able to connect to the database via excel so that It will automatically generate information when I want it.
Thanks.