feat: return more contributors (#95)

This commit is contained in:
Sebok Andras 2023-07-20 16:19:24 +02:00 committed by GitHub
parent 4e79b13679
commit dd535ae833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,7 +112,7 @@ class Releases:
keep: set = {'login', 'avatar_url', 'html_url', 'contributions'}
response = await self.httpx_client.get(f"https://api.github.com/repos/{repository}/contributors")
response = await self.httpx_client.get(f"https://api.github.com/repos/{repository}/contributors?per_page=100")
# Looping over each contributor, filtering each contributor so that
# keyfilter() returns a dictionary with only the key-value pairs that are in the "keep" set.