Skip to content

Commit

Permalink
space out posts
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvalal committed Oct 1, 2023
1 parent c297da0 commit c8d21c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paperbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ def main():
stat_entries = get_arxiv_feed("stat.ME")
for entry in stat_entries:
create_post(text=entry)
time.sleep(random.randint(1, 5))
time.sleep(random.randint(10, 120))
# metrics
em_entries = get_arxiv_feed("econ.EM")
for entry in em_entries:
create_post(text=entry)
time.sleep(random.randint(1, 5))
time.sleep(random.randint(10, 120))
# ml - #toomuchcontent
# ml_entries = get_arxiv_feed("stat.ML")
# for entry in ml_entries:
Expand Down

0 comments on commit c8d21c1

Please sign in to comment.