Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
A decorator used to throttle calls of regular functions and asyncio coroutines.
This package provides decorators which can be used to throttle calls of regular Python functions and asyncio coroutines.
Use pip package installer for Python:
python -m pip install --upgrade call-throttle
Make sure you have Python 3.7 or later installed.
Here is a basic example for how to use the throttle
decorator with functions and coroutines:
import time
import asyncio
from datetime import timedelta
from call_throttle import throttle
@throttle(calls=1, period=timedelta(seconds=1))
def func():
time.sleep(1)
@throttle(calls=1, period=timedelta(seconds=2))
async def coro():
await asyncio.sleep(1)
If passing raise_on_throttle=True
to @throttle(...)
, then a call_throttle.ThrottleException
is raised when a decorated function or coroutine is called more times than the defined calls
limit within the specified time period
.
This is a free software licensed under the terms of the MIT License.
FAQs
A decorator used to throttle calls of regular functions and asyncio coroutines.
We found that call-throttle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.