-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython_packages(imports).py
More file actions
28 lines (23 loc) · 950 Bytes
/
Python_packages(imports).py
File metadata and controls
28 lines (23 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import json #which is a default module in Python package
import random
import math
import tkinter #framing
import turtle #framing
import pyperclip
import smtplib #helps sending mails
import datetime #Helps to cath hold the date& time to execute specific action
import requests # helps to call the api requests
from bs4 import BeautifulSoup #for web scraping
#to Create AWS services using API
import boto3
https://boto3.amazonaws.com/v1/documentation/api/latest/index.html
#Helps to utility of CPU & mem
import psutil
https://psutil.readthedocs.io/en/latest/
import selenium #web testing
from selenium import webdriver #for chrome webscrapng
from selenium.webdriver.common.by import By #importing by key for locating element
from flask import Flask #Helps to web framework
from flask import Flask, render_template #for rendering html file to flask server
pyperclip :(Helps to copy the info to clipboard).
https://pypi.org/project/pyperclip/