Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
The Curvenote helper library for working in Jupyter Notebooks with Python kernels
## Installation
~$ python -m pip install curvenote
stash
save a dict or pandas dataframe in a cell output without diaplying the data
from curvenote import stash
stash('myvars', myvars)
AppState
a traitlet based class to help manage state in ipywidgets ui's
from curvenote import AppState, with_state
state = AppState()
# register a widget in state
wave_1_amp = FloatSlider(1.0, min=0.1, max=5.0, step=0.1, description="1 - Amp")
state.register_stateful_widget(wave_1_amp, "wave_1_amp", Float(1.0))
# register any trailet as a propery
state.register_stateful_property("my_dict", Dict(dict(A="hello", B="world", C=1)))
# observe the entire state
def my_update_fn(state):
some_calc_function(state.wave_1_amp, state.my_dict)
state.observe(with_state(my_update_fn))
# observe a single registered widget
def wave_1_observer(evt):
pass
state.register_widget_observer("wave_1_amp", wave_1_observer)
# observe a single trait
def trait_observer(evt):
pass
state.register_widget_observer("my_dict", trait_observer)
# display state changes for debugging
from IPython.display import display
display(state.outlet)
FAQs
Helper library from Curvenote for data science in Jupyter notebooks
We found that curvenote demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.