From ff154f96fdc45209376123ac252febc5f35a6052 Mon Sep 17 00:00:00 2001 From: Scobiform Date: Wed, 17 Apr 2024 19:01:14 +0200 Subject: [PATCH] #1 limit --- start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index 79d6050..69dbd17 100644 --- a/start.py +++ b/start.py @@ -70,8 +70,8 @@ async def home(): user = mastodon.account_verify_credentials() # Fetch followers and followings - followers = mastodon.account_followers(user['id']) - followings = mastodon.account_following(user['id']) + followers = mastodon.account_followers(user['id'], limit=500) + followings = mastodon.account_following(user['id'], limit=500) # Generate graph data graph = await get_graph(await generate_graph_data(user, followers, followings))