I’m trying to filter out if a JSON response has objects, and do something if it has.
My Problem is that even if it has objects, it won’t trigger the break.
Here is my code:
JavaScript
x
19
19
1
from tempmail import TempMail
2
import time
3
import pyperclip
4
5
email = TempMail()
6
7
email.generate_random_email_address()
8
9
print(email.login + '@' + email.domain)
10
11
pyperclip.copy(email.login + '@' + email.domain)
12
13
while True:
14
if print(email.get_list_of_emails()) is None:
15
print(email.get_list_of_emails())
16
time.sleep(5)
17
elif ['id'] in print(email.get_list_of_emails()):
18
break
19
Advertisement
Answer
print(email.get_list_of_emails())
return None
. This is why you never get the break
. Try to remove the print
Try to change the code to something like the below (it will give you better visibility)
JavaScript
1
12
12
1
while True:
2
data = email.get_list_of_emails()
3
if data is None:
4
print('data is None - going to sleep..')
5
time.sleep(5)
6
else:
7
print('we have data!')
8
print(data)
9
if ['id'] in data:
10
print('got it!')
11
break
12