
Research
/Security News
Compromised npm Packages in the AsyncAPI Namespace Deliver Miasma Botnet Loader
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.
turbocalcng
Advanced tools
Affected versions:
Fast numerical computation library for Python.
concurrent.futuresAll operations work on plain Python lists — no external dependencies required.
pip install turbocalcng
from turbocalcng import stats, linalg, calculus
# Statistics
data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print(stats.mean(data)) # 5.5
print(stats.stdev(data)) # ~3.03
print(stats.percentile(data, 75)) # 7.75
# Linear algebra
a = [[1, 2], [3, 4]]
b = [[5, 6], [7, 8]]
print(linalg.matmul(a, b)) # [[19, 22], [43, 50]]
print(linalg.det(a)) # -2.0
print(linalg.inverse(a)) # [[-2.0, 1.0], [1.5, -0.5]]
# Calculus
import math
print(calculus.derivative(math.sin, 0)) # ~1.0
print(calculus.integrate(lambda x: x**2, 0, 1)) # ~0.333
pip install build twine
python -m build
twine upload dist/*
FAQs
Fast numerical computation library for Python
The pypi package turbocalcng receives a total of 0 weekly downloads. As such, turbocalcng popularity was classified as not popular.
We found that turbocalcng 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.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.