How To Read And Display JSON using Python

In this tutorial, you’ll learn how to read and display JSON using Python. Let’s use Flask Python web framework and see how to read and display JSON data while reading from an API. Start by creating a project folder called python-app. Install Flask and Requests using pip. Requests library will be used for making the API call. pip insall flask pip install requests Create a file called hello.py inside python-app folder and add the following code : [Read More]

Choosing the Right Python Framework in 2020: Django vs Flask

Image by Clker-Free-Vector-Images from Pixabay Python is one of the most powerful forms of code in the world right now, and as of 2020, it’s growing rapidly. Utilised by start-up companies and world-class companies like Google, Netflix, and Spotify, there seem to be no limits as to what these coding solutions can provide. However, when implementing Python coding into your own life, one of the biggest decisions you’ll be making is which [Read More]

Python Flask jQuery Ajax POST

I have already covered an introductory article on getting started with python web application development using Python Flask and MySQL. In this Python Flask jQuery AJAX tutorial, we’ll focus on the client side of the web application. We’ll see how to use jQuery AJAX along with Python Flask web application. Prior to getting started with this tutorial, make sure you have Python installed. You can check if it’s installed from the command prompt: [Read More]