-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathactivity.py
33 lines (25 loc) · 874 Bytes
/
activity.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
To check if your implementation is correct run test.py
*NOTE: Don't change the method names, as that's what's used in the tester.
but, feel free to add anything else to test and debug your code.
"""
def extract_feed():
"""
Return an array of all the post objects on the feed page.
"""
return []
def extract_emails():
"""
Return an array of all the emails on the discover page.
"""
return []
def username_exists(username):
"""
username - The username to check if exists, without @ (ex: username="davidteather")
This function will return True if the provided username already exists, and false if it doesn't
"""
return False
if __name__ == "__main__":
# Optional: You can call your methods here if you want to test them without running the tester
# print(extract_feed())
pass