Author name: aipython

What is Solidity

Solidity is a programming language to write code for Ethereum based blockchain applications. The code is popularly known as smart-contract and the application is referred as Dapps or Decentralized Apps. About Solidity is High Level, Statically typed, Object-oriented programming language inspired from C++, JavaScript and Python. It’s one of the recently developed programming languages, which is in it’s nascent stage (as of Jan, 2022) having […]

What is Solidity Read More »

Format and view json file in Notepad++ editor

format json file using notepad++

JSON stands for JavaScript Object Notation. It is a text format (to exchange information) and not a programming language. All modern programming language knows about JSON. In this section, you will learn a quick introduction of JSON, what it is, how to use them, and most importantly, how to view the JSON data in a much cleaner way using open source Notepad++ text editor.

Format and view json file in Notepad++ editor Read More »

Deploy Python app on the Heroku cloud for free

Deploy python app on heroku

Do you want to deploy a Python app on the Heroku cloud for free? Are you interested in learning the step by step process to transfer any app (or script) from your pc/laptop and deploy it on the cloud platform? You are at the right place, my friend. Although, this is one of the application types that you have learnt and it’s time to think about various other types of applications that you can build

Deploy Python app on the Heroku cloud for free Read More »

Desktop app in Python for checking covid19 vaccine availability

desktop app- vaccine availability tracker

Learn to create a Desktop app in Python to check any available slot in your location (based on the Pincode) on a given date. A step-by-step method to build the app and learn a lot of things on the way. you will learn Tkinter along the way as it is pretty easy. GUI components that are present in this application are Label, Entry box, Button, Textbox, Radio button, Checkbox and Frame

Desktop app in Python for checking covid19 vaccine availability Read More »

Python bot to track vaccine slot and send notification on Telegram

Automate telegram with Python

Python script to fetch the data from the cowin portal using REST API, and if it finds any available slot then immediately trigger a customized message on the Telegram. This way, you will be worry-free from always visiting the cowin portal and perform a search to find the slot on a specific day at a certain Pincode. working code

Python bot to track vaccine slot and send notification on Telegram Read More »

Getting started with Jupyter Notebook for Python

jupyter notebook for python

Jupyter notebook is an open-source, lightweight and browser-based IDE. It is a kind of web app that allows to write and execute Python code in a browser (Chrome, Safari and Firefox). The notebook extends the console-based approach to interactive computing in a qualitatively new direction, providing a web-based application suitable for capturing the whole computation

Getting started with Jupyter Notebook for Python Read More »

Matplotlib in Python

data visualization matplotlib

Matplotlib in Python is one of the most popular and powerful libraries for data visualization. It offers varieties of pre-built functions that can handle plotting data in pretty well. It offers a wide range of plotting options such as Scatter plot, Bar chart, Pie chart, XY plot, stacked plot, 3D plot and several others. It is a third-party library which needs to be installed separately. Matplotlib can be used

Matplotlib in Python Read More »

Python projects – Hottest and coldest place on earth

hottest_coldest_earth_python

In this project, you will learn to fetch the temperature data of all the places available at timeanddate website. This website regularly updates the temperature obtained from all the place on the Earth. In this project we have used selenium webdriver for chrome to fetch the data available at timeanddate website. When you browse the website, you will

Python projects – Hottest and coldest place on earth Read More »

Python project – weather info via API

weather api python

In this Python project, you will learn to write a python app that will collect weather information such as current temperature, pressure, humidity, wind speed, weather description and many others, of any place on the earth, using OpenWeatherMap API. This project is going to be very short and simple. You need to invest 30 min to understand everything. You can find

Python project – weather info via API Read More »

Python projects – COVID19 news and stats

covid19 coronavirus python

The entire world is fighting against the very recently began Pandemic, which is COVID-19 or Coronavirus. Every day we hear about the effect of this threat as well as various statistics from the internet. In this Python code, I have put all the effort to scrapes data from the world’s top trusted sources such as WHO (World Health Organization), John-Hopkins and Indian Government.

Python projects – COVID19 news and stats Read More »

Python project – News headline in email

news scraping with python

Have you heard of Google News, which collects the news headlines from the various trusted sources? Google uses a Machine Learning algorithm to capture various instances from a pool of resources. Before I start, let me make you clear that the project that is being discussed here is not a Machine Learning technique. In this web scraping with Python code

Python project – News headline in email Read More »

Python project – price compare eCommerce

price compare python

In this Web scraping with Python project, the script searches for a specified product via URL (weblink) and find out the price at that moment. This is particularly useful when you want to monitor the price of the specific item (or items) from multiple eCommerce platforms. Here, in this program, we have targeted three major eCommerce website (Flipkart

Python project – price compare eCommerce Read More »

Python project – realtime stock price

python web scraping stock price

This project describes a Python code, which fetches the current stock price for multiple listed companies. This script first reads the excel sheet to get the list of all companies for which CMP (Current Market Price) has to be calculated and then fire up the browser to open a website which has this information. The automation script enters the name of each stock, one by one,

Python project – realtime stock price Read More »

Python break, pass and continue

python break

Python break facilitates the early exit from a loop. Control structure provides certain loops such as Python for loop, while loop, which helps in executing a block of code as many times as required. As a programmer, you can choose any looping structure which serves the purpose. On many occasions, you don’t want the loop to continue executing till the end but it

Python break, pass and continue Read More »

Python if else

python if else

Python if-else statement is a part of control structures (sometimes also known as Python flow control). Python if statement helps in making decisions in the program. This is probably the simplest yet most frequently used in Python for decision making. Python’s if-else statement works by evaluating a condition and subsequently making the decision. If a condition is met then execute a certain portion of the code

Python if else Read More »

Python literal_eval

literal_eval in Python

The literal_eval safely evaluate an expression node or a string containing a Python literal or container display. The string or node (a file) provided may only consist of the following Python literal structures: strings, bytes, numbers, tuples, lists, dicts, sets, booleans, and None. Python literal_eval is a function defined in “ast” class of built-in class library. The “ast” expands to Abstract Syntax Tree.

Python literal_eval Read More »

Scroll to Top