top of page

REST API

Let’s Succeed Together

REST is acronym for REpresentational State Transfer. It is architectural style for distributed hypermedia systems. 
Like any other architectural style, REST also does have it’s own guiding constraints which must be satisfied if an interface needs to be referred as RESTful. 

The key abstraction of information in REST is a resource. Any information that can be named can be a resource: a document or image, a temporal service, a collection of other resources, a non-virtual object (e.g. a person), and so on. REST uses a resource identifier to identify the particular resource involved in an interaction between components.

Python / PyTest / Git

Together We Will Succeed

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together

PyTest is a framework that makes building simple and expandable tests easy. Tests are expressive and readable—no boilerplate code required. PyTest allows you to get started in minutes with a small unit test or complex functional test for your application or library.

GitHub Inc. is a web-based hosting service for version control using Git. It is mostly used for computer code. It offers all of the distributed version control and source code management functionality of Git as well as adding its own features

bottom of page