-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
...e-5- Capstone Retrieving Processing and Visualizing Data with Python/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Python For Everybody-Coursera | ||
This course is part of the Python for Everybody Specialization | ||
|
||
## Using Databases with Python | ||
|
||
|
||
### About this Course | ||
This course will introduce students to the basics of the Structured Query Language (SQL) as well as basic database design for storing data as part of a multi-step data gathering, analysis, and processing effort. The course will use SQLite3 as its database. We will also build web crawlers and multi-step data gathering and visualization processes. We will use the D3.js library to do basic data visualization. This course will cover Chapters 14-15 of the book “Python for Everybody”. To succeed in this course, you should be familiar with the material covered in Chapters 1-13 of the textbook and the first three courses in this specialization. This course covers Python 3. | ||
|
||
**WHAT YOU WILL LEARN** | ||
* Use the Create, Read, Update, and Delete operations to manage databases | ||
* Explain the basics of Object Oriented Python | ||
* Understand how data is stored across multiple tables in a database | ||
* Utilize the Google Maps API to visualize data | ||
|
||
## Course Syllabus | ||
**WEEK-1 : Object Oriented Python** | ||
> To start this class out we cover the basics of Object Oriented Python. We won't be writing our own objects, but since many of the things we use like BeautifulSoup, strings, dictionaries, database connections all use Object Oriented (OO) patterns we should at least understand some of its patterns and terminology. | ||
**WEEK-2 : Basic Structured Query Language** | ||
> We learn the four core CRUD operations (Create, Read, Update, and Delete) to manage data stored in a database. | ||
**WEEK-3 : Data Models and Relational SQL** | ||
> In this section we learn about how data is stored across multiple tables in a database and how rows are linked (i.e., we establish relationships) in the database. | ||
**WEEK-4 : Many-to-Many Relationships in SQL** | ||
> In this section we explore how to model situations like students enrolling in courses where each course has many students and each student is enrolled in many courses. | ||
**WEEK-5 : Databases and Visualization** | ||
> In this section, we put it all together, retrieve and process some data and then use the Google Maps API to visualize our data. | ||
## Reference | ||
> [Coursera](https://www.coursera.org/learn/python-databases?specialization=python) | ||
> [Achievement Certificate](https://github.com/Ashleshk/Python-For-Everybody-Coursera/blob/master/Course-4%20Using%20Databases%20with%20Python.pdf) |