Posts

Showing posts with the label API

how to send auto message on skype using python on one click

Image
 Guys, as requested by my subscribers, I tried to share some basic Python code for sending a Skype auto-message with a single click. Before running the Python script, you have to install Python and some basic libraries. Hope you know the basics of Python programming.  Apart from this, we are introducing the step that how you Convert the same Python Script to .exe File and share the same with your SALE person so that He/She can easily send the bulk message to the clients instead of one to one. Step 1. Install the python  Step 2. # # Install the required libraries using CMD or window power shell         pip install skpy        pip install -U -q pandas Step 3. Execute the below Python code. #!/usr/bin/env python # coding: utf-8 import pandas as pd import getpass import tkinter as tk from skpy import Skype, SkypeChats # Create a tkinter GUI window window = tk.Tk() window.title("Skype Message Sender") window.geom...

How to send API data from Python to Google Sheets

Image
This article will help you understand how to automate Google Sheets and minimize manual work using Python API . I used the Google App script in my previous article to accomplish the same thing, but in response to user requests, I'm bringing up this subject now. I hope you have a basic understanding of the Python language and Google Sheets. The setup and prerequisites are listed below. Prerequisites Python 3.10.7 or greater Pip package management tool A Google Account A Google Cloud project               4.1  In the Google Cloud console, go to Menu menu > IAM & Admin > Create a Project .                            4.2  In the Project Name you have enter a descriptive name for your project               4.3  Click Create Next Step Enable the API Now Authorize credentials for a desktop application...

How to download files using Wget and python

Image
In this session, I'll attempt to cover Wget and use python to fetch the data with help of Command line which enhances your capacity for flawless performance in interview questions and practical tests. If you are interested in DevOps and Python Engineer; I will recommend that you read this article carefully. Wget  Is a program  Download files from the internet  Used TCP Protocal  Support HTTP, HTTPS, FTP, FTPS  Why Wget? It is a network command line tool that you can download the file from the server . Most used in RestAPI and deal with unstable network or slow network connections. Wget will continue to attempt until the file is downloaded. Installation and basic commands I am used to window 10 OS and will show you every command step by step via window terminal. First we need to import the wget library by use of pip install wget command. Command python -m wget [options] <URL. options  -o –output FILE|DIR output filename or directory Run the below command ...