This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import argparse | |
import csv | |
from os.path import isfile | |
from simplewa import SimpleWhatsapp | |
from sys import exit | |
from jinja2 import Template | |
from typing import Union | |
from time import sleep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.common.exceptions import WebDriverException | |
from selenium.webdriver.support.ui import WebDriverWait, Select | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver import ChromeOptions | |
from urllib.parse import quote_plus | |
from os.path import exists, isfile | |
from time import sleep |
NewerOlder