Python Python script to create GitHub issues In this article, we have developed a Python script to create GitHub issues and added features like adding a comment, label and others. We have used GitHub API for this.
Python Python script to control keyboard In this article, we have developed a Python script to control keyboard by stimulate pressing any key combination and stimulate typing.
Python Python script to control cursor In this article, we have explored how to develop a Python script to control cursor and stimulate actions like clicking, scrolling, click and drag.
Python Sending file/ attachment in Gmail using Python In this article, we have explained the idea of using Python to send file/ attachment in Gmail with a complete Python implementation example.
Python Python script to scroll on a webpage In this article, we will develop a Python script to scroll on a webpage and stimulate real usage behavior. We will use Selenium and ChromeDriver.
Python Python Script to Open Webpage and Login In this article, we will be going over all the steps to prepare you to be able to open a webpage and log in using Python and some third-party applications.
Python Python script to send email in Gmail In this article, we have explained the idea of using Python to send email in Gmail with a complete Python implementation example.
Python Python script to read and write JSON file In this article, we have explained the idea of reading and writing JSON file in Python with a complete Python implementation example.
Python Scalar Variable Types in Python In this article, we will be discussing what scalar variable types are and how to use them correctly in Python. These are some basic and very important datatypes.
Python Different ways to merge dictionaries in Python In this article, we have explored Different ways to merge dictionaries in Python.
Python Factory Pattern in Python In this article, we have explained the idea of Factory Pattern in Python with a complete Python implementation example.
Python List vs Tuple vs Dictionary in Python In this article, we have explored the differences between List, Tuple and Dictionary in Python.
Python Integer (Int Variable) in Python In this article, we have explored Integer (Int Variable) in Python in depth along with complete Python code examples.
Python Python Function Arguments In this article, Python Function Arguments are explored in detail with examples including Positional argument, keyword argument, default argument and variable length argument.
Python Array in Python In this article, one can understand the most awaiting information of arrays in Python, their usage, types, advantages, and many others.
Python ChainMap in Python In this article, we will explore the ChainMap container which is available in the collections module in Python.
Python Random module in Python In this article, we have explored the Random module in Python in depth and explored the different functions like seed, getrandbits, randrange, choice and much more with Python code examples.
Python Rename Conda Environment (2 commands) In this article, we have demonstrated commands using which you can rename a Conda environment. It is not directly possible to rename a conda environment but there are work-arounds.
Python Clone Conda Environment (3 techniques) In this article, we have presented commands to clone a Conda environment that is to create a duplicate conda environment with a new name. There are multiple options like using clone command, update command or copy files directly.
Python Delete Conda Environment (7 commands) In this article, we have explained and presented 7 commands to delete a Conda environment permanently. We can delete a conda environment either by name or by path.
Python Different ways to terminate a program in Python In this article, we are going to explore different ways in which we can terminate and exit a python program.
Python Ways to pause a Python Program In this article, we have explored different techniques to pause the execution of a Python Program for a specific time. There are 9 such techniques including os.pause, asyncio and much more.
Python Working with CSV files in Python In this article, we have presented how to work with CSV files (Comma Separated Values) in Python like reading CSV files and processing the information stored in it. We have presented the ideas with Python code examples with output.
Python Get current stock price in Python In this article, we have covered how to get the current stock price in Python from Yahoo Finance using two Python libraries, Beautiful Soup, and the Requests library.
Software Engineering Get CO2 emission data using Carbon Intensity API In this article, we have explored how to get CO2 emission data for a specified time period and for specific location. For this, we have used Carbon Intensity API and have implemented the code in Python.