Python Tutorial
Python is a verstile programming language that has gained a lot of attention and popularity. Using Python, you do things like develop web applications, desktop applications, task automation, artificial intelligence (AI), big data, data analytics, machine learning (ML), and many other things.
Python is really becoming as the leader in data science and data analytics. With so many open source libraries to choose from (Pandas, scikit-learn, NumPy, Matplotlib), learning data analysis in Python just got so much easier.
Automate Salesforce With Python (Part 3) | Create, Update, Delete, Upsert Records
In part 3 of the simple-salesforce tutorial series, we are going to learn how to create, delete, update, and upsert records. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import json import...
Automate Salesforce With Python (Part 2) | Query Records (SOQL and SOSL)
In part 2 of the simple-salesforce tutorial series, we are going to learn how to query records by passing SOQL and SOSL statements. Buy Me a Coffee? Your support is much appreciated! PayPal Me: https://www.paypal.me/jiejenn/5 Venmo: @Jie-Jenn Source Code: import json...
Automate Salesforce With Python (Part 1) | Getting Started with Simple Salesforce library
In part 1 of the simple-salesforce tutorial series, we are going to learn how to use simple-salesforce Python library to work with Salesforce. Simple-Salesforce is a lightweight Python library designed to provide an easy solution to work with Salesforce REST API. This...
How to extract text from a PDF file using Python
In this tutorial, we are going to learn how to extract text from a PDF file to a Text file using Python. Before we dive into tutorial, you will need to install PyPDF2 library (pip install PyPDF2). Buy Me a Coffee? Your support is much appreciated! PayPal Me:...
How to split a PDF file using Python
In this tutorial, I am going to show you how to split a PDF file and save each page as its own PDF using Python. Before we dive into tutorial, you will need to install PyPDF2 library (pip install PyPDF2). Buy Me a Coffee? Your support is much appreciated! PayPal Me:...
How to extract PDF pages and save as a separate PDF file using Python
In this tutorial, I will be showing you how to extract specific pages (or split specific pages) from a PDF file and save those pages as a separate PDF using Python. Before we dive into tutorial, you will need to install PyPDF2 library (pip install PyPDF2). Buy Me a...
How to implement image drag and drop feature | PyQt5 Tutorial
In this tutorial, we are going to learn how to implement image drag and drop feature in PyQt5. The image drga and drop feature is when you drag and image from your PC to a PyQt application, the application will detect the incoming signal and inserting the image. Buy...
How to download photos from Google Photos in Python
In this tutorial, we are going to learn how to download photos or videos to your PC from your Google Photos account using Google Photos API and few other libraries in Python. From my older videos, I went over how to use Google Photos API (upload media files, get...
How to attach menu items to a push button | PyQt5 Tutorial
In this tutorial, we are going to learn how to add menu items to a push button with PyQt5 in Python. A menu button, which in some styles will produce a small triangle to the right of the button's text. Adding menu to a push button a great alternative to create a...
How to merge multiple PDF files using Python
In this tutorial, we are going to learn how to merge PDF files using #PyPDF2 in Python. Portable Document Format (PDF) is probably the most widely used file format when it comes to creating document today. By default, most PCs don't come with PDF files merge/combine...
