An intuitive Python-based CRUD (Create, Read, Update, Delete) application demonstrating the fundamentals of database interactions with a clean, modern interface. Perfect for beginners and developers looking to integrate Python with database operations seamlessly
#Features Perform CRUD operations with ease. User-friendly interface with a clean design. Built with Python for seamless database interaction. Beginner-friendly structure and modular codebase.
Technologies Used Python: Core programming language. Django: Backend framework for handling CRUD operations. HTML & CSS: For creating a clean and responsive user interface.
Installation
Clone the Repository : git clone https://github.com/satyasagarsahoo/PythonCRUDManager.git
Navigate to the Project Directory : cd PythonBasicCRUDapp
Set Up a Virtual Environment: python -m venv env source env/bin/activate # For Linux/macOS env\Scripts\activate # For Windows
Install Required Dependencies pip install -r requirements.txt
Apply Migrations python manage.py migrate
Run the Development Server python manage.py runserver
Access the Application http://127.0.0.1:8000 (in the browser)