Posted On 20 May 2020 By MicroPyramid
Python is a general-purpose programming language. We can use python for so many applications and including web applications. Which provides common backend fast reliable and scalable easily maintainable web applications.
Posted On 26 March 2020 By MicroPyramid
Python, Django top frameworks and it's comparison
Posted On 15 February 2019 By MicroPyramid
Unit testing with selenium-python. Unit test case example to test the front-end
Posted On 03 October 2018 By MicroPyramid
Choosing the best company for your software development needs is the most important step. This blog explains you tips to outsource custom software development services.
Posted On 08 June 2017 By MicroPyramid
The main goal of WSGI is to facilitate easy interconnection of servers and web frameworks/applications. WSGI defines a standerd API for web servers(uWSGI, Twisted, Gunicorn) to connect and talk to web frameworks like Django, flask, Pyramid. In this article i will explain simple "hello world" app.
Posted On 05 May 2017 By MicroPyramid
Understand self and __init__ method in python Class?
Before understanding the "self" and "__init__" methods in python class, it's very helpful if we have the idea of what is a class and object.
Object :
object is one of instances of the class. which can perform the functionalities which are defined in the class.
self :
self represents the instance of the class. By using the "self" keyword we can access the attributes and methods of the class in python.