A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
import csv | |
import datetime | |
import subprocess | |
import logging | |
from concurrent.futures import ThreadPoolExecutor | |
WORKERS_FILE = 'workers.csv' |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.keys import Keys | |
def message(to,message=''): | |
"""this a simple function to send a whatsapp message to your friends | |
and group using python and selenium an automated tool to parse the HTML | |
content and to change the properties. |