Python Flask vs Django
According to the 2018 Python Developers Survey, Flask and Django rank as the top web frameworks among Python developers.When contemplating which framework to adopt for your next web application...
View ArticlePython Flask Rest API
Python Flask is a popular microframework utilized for web application development. In this article, we’ll delve deep into how to harness the power of Flask-RESTful to craft RESTful APIs...
View ArticlePython Flask Websocket
The module Flask-SocketIO provides access to low-latency two-way client-server communication for Python Flask apps. Any of the SocketIO approved client libraries in Python, C++ , Java and Swift, or...
View ArticlePython Flask Framework
Flask is a web application (WSGI) framework. It is intended to start quickly and easily, with the ability to develop complex apps. It started as a simple wrapper around tools and jinja became one of...
View ArticlePython switch case
Python’s unique approach to the switch-case statementWhile many other programming languages, like Java, offer built-in switch-case syntax, Python takes a different approach. Although Python doesn’t...
View ArticlePython Flask Docker
We’re going to create a Python Flask application in docker. You learn how to use Docker on your local computer and how to run and create docker images.What is docker?Docker is a software container...
View Article