Skip to content

Commit

Permalink
Whatsall library basic functionality completed
Browse files Browse the repository at this point in the history
  • Loading branch information
diveshlunker committed Apr 14, 2020
1 parent 8a3b254 commit 61740be
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
Binary file removed dist/whatsall-0.0.1.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.0.2.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.0.3.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.0.4.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.0.5.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.1.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.2.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.3.tar.gz
Binary file not shown.
Binary file removed dist/whatsall-0.4.tar.gz
Binary file not shown.
10 changes: 5 additions & 5 deletions whatsall/whatsall.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@
driver=""
c=1

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
import os

def requirements_check(l):
global c
try:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
import os
import sys
import subprocess
import urllib
from pathlib import Path
return(1)
except:
print("Install all the required libraries using 'pip install -r requirements.txt'")
return(0)

def driver_check(s):
import os
my_file = os.path.exists(s)
if my_file:
return True
Expand Down

0 comments on commit 61740be

Please sign in to comment.