Category Python

Step by step guide to Encrypt and decrypt in Python

In this article, we will learn about encryption and decryption and their implementation in python. We will talk about why they are needed and a little bit about the basics. What is cryptography? Cryptography is the process of the conversion… Continue Reading →

IMPLEMENTATION OF GOOGLE OAUTH 2.0 LOGIN FOR PYTHON FLASK WEB SERVER APPLICATIONS

You have seen the login button on almost all the websites to manage the access of resources and keep the content secure from unauthorized access. So almost all the websites provide a login option before you can view any content… Continue Reading →

How to land into IT company and get a Software Engineer job

If you are here it means you have an interest in computer science or want to land in an IT company. If you have done your education in computer science then this journey might be easy for you but if… Continue Reading →

Run SFDX CLI or Salesforce CLI inside Docker Image with python

If you want to run the SFDX command inside the docker container then you have to install the SFDX CLI inside docker for that you need to install a couple of dependencies so there are two easy ways to do… Continue Reading →

Error (‘01000’, [01000] [unixODBC][Driver Manager]Can’t open lib ‘ODBC Driver 17 for SQL Server’ : file not found (0) (SQLDriverConnect)) in Mac

If you get the Error (‘01000’, [01000] [unixODBC][Driver Manager]Can’t open lib ‘ODBC Driver 17 for SQL Server’ : file not found (0) (SQLDriverConnect)) in Mac then run the below command to fix the issue. brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release brew update… Continue Reading →

How to uninstall all the installed packages in python

To uninstall all the packages in your python virtual environment, run the below command. It will first fetch the list of all the installed packages using pip freeze and then will pass this list to the pip uninstall command. pip… Continue Reading →

Copy files from one s3 bucket to another S3 bucket

Today, we are going to discuss the implementation of copying files from one S3 bucket to another S3 bucket, and both the S3 bucket has different credentials. We will go step by step to implement this and then will explain… Continue Reading →

Change the size of plot in matplotlib or seaborn python in Jupyter notebook

When you are working on the Jupyter notebook and using seaborn or matplotlib for plotting the curves, you will see that many times your plot is overlapping and you want to change the size of the plot. You can use… Continue Reading →

Connect with Postgres in python

In this article, you will learn how to connect with the Postgres database in python programming language. We are going to write the sample code for each step and then will explain that piece of code. In Python, it is… Continue Reading →

How to format output on the console in python program

In this article, we will learn how we can change the format of output display on the console in the python print command. You can use the below code snippet to achieve this. We are going to use the colour… Continue Reading →

« Older posts

© 2024 My Beliefs

Write us at [email protected]