Part 1: Analyze and Explore the Climate Data Used Python and SQLAlchemy to do a basic climate analysis and data exploration of the climate database. Specifically, used SQLAlchemy ORM queries, Pandas, and Matplotlib.
Used the SQLAlchemy create_engine() function to connect to SQLite database.
Used the SQLAlchemy automap_base() function to reflect tables into classes, and then saved references to the classes named station and measurement.
Linked Python to the database by creating a SQLAlchemy session.
Performed a precipitation analysis and then a station analysis.
Precipitation Analysis Finding the most recent date in the dataset.
Using that date, the previous 12 months of precipitation data were found by querying the previous 12 months of data.
Used Pandas to print the summary statistics for the precipitation data.

Station Analysis Designed a query to calculate the total number of stations in the dataset. Designed a query to find the most-active stations.
Part 2: Design Climate App Designed a Flask API based on the queries that were developed.





