
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
streaming
is a Python library for working with streams of data.
Streams are iterables that have operators defined.
In [1]: s = Stream(range(8))
In [2]: list(s + 10)
Out[2]: [10, 11, 12, 13, 14, 15, 16, 17]
Operations can be done sample by sample by using an instance of Stream
, or on blocks of samples by using an instance of BlockStream
.
Switching from one to the other is easy,
In [3]: s = Stream(range(100000))
Out[3]: <streaming.stream.Stream at 0x7fc479462518>
In [4]: s.blocks(8192)
Out[4]: <streaming.stream.BlockStream at 0x7fc479462908>
This library was written for a signal processing tool.
The latest release can be found on PyPI and installed with pip install streaming
.
Otherwise, you can clone this repository and install with pip install
or pip install -e
when you want an editable install.
The test suite can be run with
python setup.py test
or
py.test
The latest version of the documentation can be found at http://fridh.github.io/streaming/.
The BSD 2-Clause License applies to the code.
FAQs
Streaming data with Python
We found that streaming 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.