Project Brief
In this project, we will create a bookmark manager web app using Django and Bootstrap, allowing users to add and remove URL bookmarks.
Expected Output
The above is how the homepage of the web app looks like. The user can add the title and the URL of a website. Pressing the “Add Bookmark” button will add that website to the list of bookmarks. For the frontend, we use Bootstrap to make the website visually appealing.
Prerequisites
Required Libraries: django
Setting up the project:
pip install django
Create a new project from the terminal: django-admin startproject bookmark_manager_project
Navigate into the project folder: cd bookmark_manager_project
Create a new app: python manage.py startapp bookmark_manager_app
Write your code.
Required Files: No files are required for this project.
IDE: You can use any IDE on your computer to code the project.
Danger Zone
Here is the code solution and the steps to get the app up and running:
Happy Coding!
Daily Python Projects Team