Skip to content

Commit b240437

Browse files
committed
Setup for test run cron
1 parent b1618b6 commit b240437

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

check.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,26 +173,27 @@ def write_to_spreadsheet(follow_change, profile):
173173
def main():
174174
# Login and download follower/following data
175175
cl = login_user()
176+
get_dates()
176177
followers, following = download_list(cl)
177178

178179
# Compare data
179-
compare_data(cl, followers, following)
180-
181-
182-
if __name__ == "__main__":
183-
cl = login_user()
184-
get_dates()
185-
186-
followers, following = read_data(today_date)
187-
188180
follow_change = compare_data(cl, followers, following)
189181
profile = get_profile_info(cl)
190182

191183
write_to_spreadsheet(follow_change, profile)
192184

193185

194-
186+
if __name__ == "__main__":
187+
main()
188+
# cl = login_user()
189+
# get_dates()
190+
191+
# followers, following = read_data(today_date)
192+
193+
# follow_change = compare_data(cl, followers, following)
194+
# profile = get_profile_info(cl)
195195

196+
# write_to_spreadsheet(follow_change, profile)
196197

197198
# cl = login_user()
198199
# download_list(cl)

0 commit comments

Comments
 (0)