File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ title: Accessing SQLite Databases Using Python and Pandas
33teaching : 20
44exercises : 25
55questions :
6- - " FIXME"
6+ - " What if my data are stored in an SQL database? Can I manage them with Python?"
7+ - " How can I write data from Python to be used with SQL?"
78objectives :
89 - " Use the sqlite3 module to interact with a SQL database."
910 - " Access data stored in SQLite using Python."
1011 - " Describe the difference in interacting with data stored as a CSV file versus in SQLite."
1112 - " Describe the benefits of accessing data using a database compared to a CSV file."
1213keypoints :
13- - " FIXME"
14+ - " sqlite3 provides a SQL-like interface to read, query, and write SQL databases from Python."
15+ - " sqlite3 can be used with Pandas to read SQL data to the familiar Pandas DataFrame."
16+ - " Pandas and sqlite3 can also be used to transfer between the CSV and SQL formats."
1417---
1518
1619## Python and SQL
You can’t perform that action at this time.
0 commit comments