Skip to content

Updated Readme file #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ This python program will read the names of contacts availabe in 'contacts.csv' f

## To run the project :
1. Firstly update the contact list of 'contacts.csv' file ( the contact name should be same as it is saved in mobile)
2. Update the msg variable with your new msg availabe in 'WhatsApp.py' file
2. Run WhatsApp.py
2. To update CSV file. Please update through your whole Path name. like (c:\user..............). If after doing that its throowing your an error named "Unicode error". Just replace the file path from "\" to "\\" everywhere.(c:\\user\\......)
3. Update the msg variable with your new msg availabe in 'WhatsApp.py' file
4. Run WhatsApp.py
>$ python WhatsApp.py

## After running the code:
Expand Down
2 changes: 1 addition & 1 deletion WhatsApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
for row in csv_reader:
contacts.append(row[0])

driver=webdriver.Chrome() # Selenium chromedriver path
driver=webdriver.Chrome("") # Selenium chromedriver path
driver.get("https://web.whatsapp.com/")

while True:
Expand Down