issues Search Results · repo:mjpieters/aiolimiter language:Python
Filter by
28 results
(918 ms)28 results
inmjpieters/aiolimiter (press backspace or delete to remove)Hi, thank you for project!
What about adding:
def capacity(self) - int:
Return capacity remaining in the limiter
self._leak()
return self._level
? I am still ...
ashrub-holvi
- 5
- Opened on May 6
- #311
I think it would read much better. Reason for is I have to read the doc string every time I come across AsyncLimiter
after not seeing it for a while.
michaeloliverx
- 1
- Opened on Jan 31, 2023
- #105
my first step: limiter = AsyncLimiter(1,1/0.5)
after 5s,I want to set qps=1,but it doesn t work
limiter.time_period = 1
Magic-chao
- Opened on Jan 11, 2023
- #98
I ve noticed that if I set the limiter as AsyncLimiter(180, 60), the code will try to send all the requests available
without a limit, but then it slows down. However at that point the request speed it ...
watchingdogs
- 1
- Opened on Sep 20, 2022
- #90
Basically what i m trying to do is
if limiter.has_capacity(): # when this hits capacity go to limiter2 and do the request #2 within the limit.
do request #1
elif limiter2.has_capacity():
do request ...
outgaze
- Opened on May 7, 2022
- #78
Hello!
The library is overall very good, and useful, thank you for it! I just have one problem, it being that the library
depends on importlib, which wouldn t be an issue, if I wouldn t be compiling my ...
Pirulax
- 10
- Opened on Apr 17, 2022
- #76
Someone found that when using httpx rate limited by aiolimiter with a large number of active tasks, httpx requests have
a hard time getting going. The more tasks are started, the longer the initial startup. ...
bug
mjpieters
- 7
- Opened on Mar 10, 2022
- #73
Unless I am doing something wrong, it wont work with that. My code looks like this:
async def fetch(something):
await get(something)
async with limiter:
await asyncio.gather(*[fetch(t) for t in ...
wedobetter
- 1
- Opened on Mar 4, 2022
- #69
The API I am trying against has a limit of 250 requests per minute. Whatever I try I get 429 responses, it doesnt seep
to sleep or slow down after 250 requests
async def main():
limiter = AsyncLimiter(250, ...
question
ev-agelos
- 3
- Opened on Dec 5, 2021
- #63
Azure pipelines dropped support for Python 3.6 on Mac, and 3.6 will only receive security updates until December this
year.
I ll drop support from the package so I can continue to use the Azure pipelines ...
mjpieters
- Opened on Oct 30, 2021
- #62

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.