October 2013
Beginner
600 pages
15h 18m
English
What You’ll Learn in This Hour:
How to use a MySQL database server in your Python scripts
How to use a PostgreSQL database server in your Python scripts
One of the problems with Python scripts is persistent data. You can store all the information you want in your program variables, but at the end of the program, they just go away. There are times when you’d like for your Python scripts to be able to store data that you can use later. In the old days, storing and retrieving data from a Python script ...