Flask app using MVC

  What is MVC? The Model-View-Controller (MVC) is an architectural pattern that separates an application into three main logical components: the model, the view, and the controller. Each of these components is built to handle specific development aspects of an application. MVC is one of the most frequently used industry-standard web development frameworks` to create... Continue Reading →

Django vowel count Api

Introduction: Hi, there in this post I am gonna show you how we can build basic API in Django which can .calculate count of vowels from your text file that you can upload here. In this post, you will learn various things such as Django basic, request method and integration front-end with backend using python.... Continue Reading →

Flask basic python

Introduction: Flask is a micro web framework written in python. It is well known as a lightweight framework for python web development because it is run on a stand-alone file whereas Django has multiple files for each operation such as URLs, views, and setting. How to install flask using pip3 pip3 install flask What you... Continue Reading →

Web Scraping with BeautifulSoup

Introduction: Web scraping, web harvesting, or web data extraction is data scraping used for extracting data from websites using its HTML structure, In this post, I will explain basic fundaments of web scraping using python and also explore it by a live demonstration with two python libraries Beautifulsoup and requests respectively. What you will learn... Continue Reading →

what is variable in python ?

Generally, a variable is an empty box where we can store some value. let's assume x = "hello" , where x is a variable having "hello" data. In python programming variable plays an important role in storing data and reuse them in multiple positions. Rule for assign name  to a variable we name a variable... Continue Reading →

Blog at WordPress.com.

Up ↑

Design a site like this with WordPress.com
Get started