Skip to content

Commit

Permalink
Merge pull request #404 from wrightaprilm/09-kp
Browse files Browse the repository at this point in the history
adding keypoints to sql lesson
  • Loading branch information
wrightaprilm authored Jun 9, 2019
2 parents f9e438c + 60ed65d commit 95c7705
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions _episodes/09-working-with-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ title: Accessing SQLite Databases Using Python and Pandas
teaching: 20
exercises: 25
questions:
- "FIXME"
- "What if my data are stored in an SQL database? Can I manage them with Python?"
- "How can I write data from Python to be used with SQL?"
objectives:
- "Use the sqlite3 module to interact with a SQL database."
- "Access data stored in SQLite using Python."
- "Describe the difference in interacting with data stored as a CSV file versus in SQLite."
- "Describe the benefits of accessing data using a database compared to a CSV file."
keypoints:
- "FIXME"
- "sqlite3 provides a SQL-like interface to read, query, and write SQL databases from Python."
- "sqlite3 can be used with Pandas to read SQL data to the familiar Pandas DataFrame."
- "Pandas and sqlite3 can also be used to transfer between the CSV and SQL formats."
---

## Python and SQL
Expand Down

0 comments on commit 95c7705

Please sign in to comment.