Skip to content

Commit b86726b

Browse files
Changes
1 parent 8c662ff commit b86726b

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Python/zoom_automation/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,12 @@ pip install pandas
3333
python3 main.py
3434
```
3535
- The program will run and automatically joins the meeting at the scheduled time
36+
37+
## Use Case
38+
Enter Timings,meedtingid,meetingpswd in schedule.csv
39+
![Screenshot 2020-10-29 224216](https://user-images.githubusercontent.com/59971890/97608318-32efd000-1a38-11eb-8f41-2ae1b2d4cb69.png)
40+
41+
Run the program as stated above and zoom window will open up
42+
![zoomwindow](https://user-images.githubusercontent.com/59971890/97608594-8eba5900-1a38-11eb-89ea-abc99cf73a05.png)
43+
44+
The meeting will start and end according to the specifications gievn by you.

Python/zoom_automation/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ def sign_in(meet_id, password, duration):
6161
now = datetime.now().strftime("%H:%M")
6262
if now in str(df['timings']):
6363

64-
row = df.loc[df['timings'] == now]
65-
meet_id = str(row.iloc[0,1])
64+
row = df.loc[df['timings'] == now]
65+
meet_id = str(row.iloc[0,1])
6666
meet_paasword = str(row.iloc[0,2])
6767
duration = str(row.iloc[0,3])
6868

69-
69+
# calling sign_in funstion and passing requires parameters
7070
sign_in(meet_id, meet_paasword, duration)
7171
time.sleep(40)
7272
print('Signed in, Meeting Started')

0 commit comments

Comments
 (0)