Compare commits
No commits in common. "162ce084472c40804f7528f0f47c20f7008fd343" and "327180d1060ee9dbc70df293a1169e51f3c7710f" have entirely different histories.
162ce08447
...
327180d106
@ -44,3 +44,5 @@ for path, image in resized_images:
|
||||
current_image_number += 1
|
||||
if current_col == cols:
|
||||
current_col = 0
|
||||
|
||||
new_image.show()
|
||||
|
@ -63,7 +63,7 @@ def dump():
|
||||
users.sort()
|
||||
for user in users:
|
||||
mention_text = f"@{user}"
|
||||
line = f"{user} is {all_content.count(mention_text)} times mentioned on devRant(developer community)."
|
||||
line = f"{user} is {all_content.count(mention_text)} times mentioned on devRant(developer comminity)."
|
||||
printr(line)
|
||||
print(line)
|
||||
print("```")
|
||||
|
@ -32,7 +32,7 @@ async def get_recent_rants(start_from=1, page_size=10):
|
||||
def get_rants():
|
||||
return dr.get_rants("recent", page_size, start_from)["rants"]
|
||||
|
||||
rants = asyncio.wait_for(loop.run_in_executor(None,get_rants), 15)
|
||||
rants = asyncio.wait_for(loop.run_in_executor(get_rants), 5)
|
||||
|
||||
page += 1
|
||||
for rant in rants:
|
||||
|
Loading…
Reference in New Issue
Block a user