1. Let's put the knowledge from the previous days together. Instead of getting hold of blog posts from the npoint JSON bin as we've done in the previous blog project, grab the all the posts from the posts.db SQLite database using flask-SQLAlchemy.
I've included 3 posts in the database for the starting project. You'll need to add your code under the home "/"
route.
This is what you should see when you are reading the blog posts from the posts.db:
2. Once you've successfully loaded all the posts, add the code so that a user can click on an individual post and read it:
HINT: Think about creating a route for the post with the post's unique id. You can then retrieve that particular post from the database.