Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Charidotella is a toolbox to organise and visualise Event Stream (.es) recordings
Charidotella (https://en.wikipedia.org/wiki/Charidotella_sexpunctata) is a toolbox to organise and visualise Event Stream (.es) recordings.
It supports Python 3.9, 3.10, and 3.11.
Debian / Ubuntu
sudo apt install ffmpeg python3 python3-pip vlc
macOS
brew install ffmpeg python3
Windows
winget install python3 --scope machine
winget install ffmpeg --scope machine
Install the Python package (system-wide or in a virtual environment)
a. System-wide installation
- **Debian / Ubuntu**
```sh
sudo python3 -m pip install charidotella
```
- **macOS**
```sh
python3 -m pip install charidotella
```
- **Windows**
Run in an elevated Powershell (right-click > Run as Administrator)
```powershell
& 'C:\Program Files\Python311\python.exe' -m pip install charidotella
```
b. Installation in a virtual environment
- **Debian / Ubuntu**
```sh
python3 -m venv charidotella_venv
source charidotella_venv/bin/activate
pip install charidotella
```
- **macOS**
```sh
python3 -m venv charidotella_venv
source charidotella_venv/bin/activate
pip install charidotella
```
- **Windows**
Run in an elevated Powershell (right-click > Run as Administrator)
```powershell
& 'C:\Program Files\Python311\python.exe' -m venv charidotella_venv
charidotella_venv\Scripts\Activate.ps1
pip install charidotella
```
Create a directory my-wonderful-project with the following structure (the file names do not matter as long as their extension is .es)
my-wonderful-project
└── recordings
├── file_1.es
├── file_2.es
├── ...
└── file_n.es
Generate a configuration file
cd my-wonderful-project
charidotella init
The directory now has the following structure
my-wonderful-project
├── recordings
│ ├── file_1.es
│ ├── file_2.es
│ ├── ...
│ └── file_n.es
└── charidotella-configuration.toml
(Optional) Edit charidotella-configuration.toml
to change the jobs' parameters
Run the jobs
charidotella run
The directory now has the following structure
my-wonderful-project
├── recordings
│ ├── file_1.es
│ ├── file_2.es
│ ├── ...
│ └── file_n.es
├── renders
│ ├── file_1
│ │ ├── filtered-recording.es
│ │ ├── rendered-file-1.es
│ │ ├── ...
│ │ └── rendered-file-m.es
│ ├── file_2
│ ├── ...
│ └── file_n
└── charidotella-configuration.toml
(Optional) Edit charidotella-configuration.toml
and run charidotella run
again (job that have already been completed will be skipped unless --force
is used)
See charidotella --help
for a list of other options.
After code edits, run the formatters and linters.
isort .; black .; pyright .
FAQs
Charidotella is a toolbox to organise and visualise Event Stream (.es) recordings
We found that charidotella 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
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.