APAbhay Pratap Mauryainabhayapm.hashnode.dev·Nov 27, 2024 · 4 min readREST APIs OverviewWhat is a REST API? A REST API is a type of web service that follows the architectural principles of REST (Representational State Transfer). It allows different applications to communicate with each other over the internet using standard HTTP methods...01I
APAbhay Pratap Mauryainabhayapm.hashnode.dev·Nov 27, 2024 · 3 min readAPI - An OverviewWhat is an API? An Application Programming Interface(API) is a set of rules and protocols that allow one software application to interact with another. APIs act as intermediaries that enable communication between different systems, platforms, or appl...00
APAbhay Pratap Mauryainabhayapm.hashnode.dev·Nov 25, 2024 · 5 min readModels And DatabasesIn Django, models are the core component for defining the structure of your data. They represent the database tables and act as a bridge between the database and your application. In Django, models are defined as Python classes, and Django uses these...00
APAbhay Pratap Mauryainabhayapm.hashnode.dev·Oct 20, 2024 · 2 min readHow to Setup MySQL on Fedora systemStep 1: Install MySQL Server Open a terminal and run the following command to install MySQL: sudo dnf install mysql-server This will install the MySQL server and client packages. Step 2: Start and Enable MySQL Service Once MySQL is installed, you ne...00
APAbhay Pratap Mauryainabhayapm.hashnode.dev·Oct 19, 2024 · 5 min readSQL (Structured Query Language)SQL (Structured Query Language) is a standardized language used to manage and manipulate relational databases. SQL allows you to create, query, update, and delete data from relational databases. It also handles the creation of database objects such a...00