Track the pipeline process, wherein we can also validate or intercept the incoming API request. Microsoft had given us some of classes using that we can…
Read MoreWe are going to design the Odata Web API Project, by following below steps we will create project. For security and message interceptor we will discuss…
Read MoreSwashbuckle – Swagger for WebApi Recently I had faced issue while working with large team; more or less currently, we are targeting our application architecture as…
Read MoreOpen Data Protocol -OData :: Microsoft has given us a way to access data as queryable and inter-operable using Restful API under Microsoft Open Specification Promise.…
Read MoreFile operation is an important part of python programming which enables to work with external file. Most of the operation related in input/output and file manipulation…
Read MoreTuples are a special data structure similar to the list data structure. If we relate tuple to list, tuples are faster because of nature of tuples…
Read MoreDictionary is used to represent a collection of keys and values pair of data. Syntax fruitsCollection= {‘apple’, ‘pear’, ‘orange’, ‘banana’} print fruitsCollection output set([‘orange’, ‘pear’, ‘banana’,…
Read MoreA list is an Python-object which can contain many different types of elements inside it like integer, characters or array and even another list inside it.…
Read MoreArrays can only contain values corresponding to same data opposed to lists which contains value corresponding to different data types. Syntax arrayName = array(typecode, [Initializers]> Code…
Read MoreAny values provided by the user in single quote ‘’ or double quote “” compiler treats as string Syntax Firstname=”Rupesh” print Firstname String Manipulation functions string.ascii_letters…
Read More