Skip to content

Instantly share code, notes, and snippets.

View hesantech's full-sized avatar
🎯
Focusing

Mahesan hesantech

🎯
Focusing
View GitHub Profile
@hesantech
hesantech / knocker.py
Created November 11, 2018 15:50 — forked from xr09/knocker.py
import csv
import datetime
import subprocess
import logging
from concurrent.futures import ThreadPoolExecutor
WORKERS_FILE = 'workers.csv'
@hesantech
hesantech / bobp-python.md
Created November 11, 2018 17:19 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@hesantech
hesantech / whatsapp.py
Created December 10, 2018 12:44 — forked from deepak3081996/whatsapp.py
send whatsapp messages using python
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.