[Back-End & Database Django Python]
By manish Thu, Jun 27, 2019
Till now we are seen basics of models, views, serializes everything. But the most important aspect of any project is the database operations.
In this blog post we will some db operations which were used a in a live project and get more in-depth knowledge of things.
[Back-End & Database Django Python]
By manish Fri, Jun 21, 2019
In this blog post we will see about groups/permissions.
[Django Python]
By manish Fri, Jun 21, 2019
In this part we will see about authentication for api
[Back-End & Database Django Python]
By manish Mon, Jun 17, 2019
This is one the exciting features of DRF let’s see what it is.
[Back-End & Database Django Python]
By manish Mon, Jun 17, 2019
In this blog post we will see more details on View Class and also router.
[Back-End & Database Django Python]
By manish Mon, Jun 17, 2019
In this part we will see about “Views” with DRF
[Back-End & Database Django Python]
By manish Fri, Jun 14, 2019
Let’s get started with django rest api framework as we saw in the last blog.
[Back-End & Database]
By Aishwary Kaul Tue, Apr 2, 2019
This article is for the development of a REST API for communication with other users with the help of a REST API called Twilio. Twilio’s APIs (Application Programming Interfaces) is a platform for communications with users globally. Behind these APIs is a software layer connecting and optimizing communications networks around the world to allow your users to call and message anyone anywhere.
[Back-End & Database Python]
By Aayush Saini Thu, Mar 28, 2019
Introduction: Requests is a Python module that you can use to send all kinds of HTTP requests. It is an easy-to-use library with a lot of features ranging from passing parameters in URLs to sending custom headers and SSL Verification.
we can use requests library very easily like this.
import requests
req = requests.get('https://www.excellencetechnologies.in/')
Now let’s install the requests library.
How to Install Requests: You can make use of pip, easy_install, or tarball package managers.
[Back-End & Database Python]
By manish Mon, Dec 31, 2018
As our code base i getting bigger it’s better if we split our code into different files.
[Back-End & Database Python]
By manish Mon, Dec 24, 2018
In this article we will see how to integrate database specially mongodb with our api.
[Python]
By manish Mon, Dec 24, 2018
Authentication is a very part of any rest api. Authentication means certain routes are protected via login and certain routes are protected via roles.