sanjeed5 commited on
Commit
7778d50
·
1 Parent(s): be1a10c

Ignore downloaded_task_files directory and update .gitignore

Browse files
.gitignore CHANGED
@@ -1,2 +1,3 @@
1
  .env
2
  __pycache__/
 
 
1
  .env
2
  __pycache__/
3
+ downloaded_task_files/
downloaded_task_files/1f975693-876d-457b-a649-393859e79bf3.mp3 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:200f767e732b49efef5c05d128903ee4d2c34e66fdce7f5593ac123b2e637673
3
- size 280868
 
 
 
 
downloaded_task_files/7bd855d8-463d-4ed5-93ca-5fe35145f733.xlsx DELETED
Binary file (5.29 kB)
 
downloaded_task_files/99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3.mp3 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b218c951c1f888f0bbe6f46c080f57afc7c9348fffc7ba4da35749ff1e2ac40f
3
- size 179304
 
 
 
 
downloaded_task_files/cca530fc-4052-43b2-b130-b30968d8aa44.png DELETED
Binary file (63.1 kB)
 
downloaded_task_files/f918266a-b3e0-4914-865d-4faa564f1aef.py DELETED
@@ -1,35 +0,0 @@
1
- from random import randint
2
- import time
3
-
4
- class UhOh(Exception):
5
- pass
6
-
7
- class Hmm:
8
- def __init__(self):
9
- self.value = randint(-100, 100)
10
-
11
- def Yeah(self):
12
- if self.value == 0:
13
- return True
14
- else:
15
- raise UhOh()
16
-
17
- def Okay():
18
- while True:
19
- yield Hmm()
20
-
21
- def keep_trying(go, first_try=True):
22
- maybe = next(go)
23
- try:
24
- if maybe.Yeah():
25
- return maybe.value
26
- except UhOh:
27
- if first_try:
28
- print("Working...")
29
- print("Please wait patiently...")
30
- time.sleep(0.1)
31
- return keep_trying(go, first_try=False)
32
-
33
- if __name__ == "__main__":
34
- go = Okay()
35
- print(f"{keep_trying(go)}")