DataSet File Format (DSFF)
Project description
DataSet File Format 
Store a dataset in XSLX-like format.
This library contains code for handling the DataSet File Format (DSFF) based on the XSLX format and for converting it to ARFF (for use with the Weka framework), CSV or a FilelessDataset structure (from the Packing Box).
pip install --user dsff
Usage
Creating a DSFF from a FilelessDataset
>>> import dsff
>>> with dsff.DSFF() as f:
f.write("/path/to/my-dataset") # folder of a FilelessDataset (containing data.csv, features.json and metadata.json)
f.to_arff() # creates ./my-dataset.arff
f.to_csv() # creates ./my-dataset.csv
f.to_db() # creates ./my-dataset.db (SQLite DB)
# while leaving the context, ./my-dataset.dsff is created
Creating a FilelessDataset from a DSFF
>>> import dsff
>>> with dsff.DSFF("/path/to/my-dataset.dsff") as f:
f.to_dataset() # creates ./[dsff-title] with data.csv, features.json and metadata.json
Related Projects
You may also like these:
- Awesome Executable Packing: A curated list of awesome resources related to executable packing.
- Bintropy: Analysis tool for estimating the likelihood that a binary contains compressed or encrypted bytes (inspired from this paper).
- Dataset of packed ELF files: Dataset of ELF samples packed with many different packers.
- Dataset of packed PE files: Dataset of PE samples packed with many different packers (fork of this repository).
- Docker Packing Box: Docker image gathering packers and tools for making datasets of packed executables.
- PEiD: Python implementation of the well-known Packed Executable iDentifier (PEiD).
- PyPackerDetect: Packing detection tool for PE files (fork of this repository).
- REMINDer: Packing detector using a simple heuristic (inspired from this paper).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dsff-1.2.0.tar.gz.
File metadata
- Download URL: dsff-1.2.0.tar.gz
- Upload date:
- Size: 183.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
465fc931915470ac04236d9d013fffd087a3d84d891a9028c3b72b143bb10b4b
|
|
| MD5 |
85c77564cfb3774610044a0d558360cf
|
|
| BLAKE2b-256 |
53705199fd991a8ada9fa85f6dd4613e91126dd399da43a3880cb57c8bb07bc6
|
File details
Details for the file dsff-1.2.0-py3-none-any.whl.
File metadata
- Download URL: dsff-1.2.0-py3-none-any.whl
- Upload date:
- Size: 39.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c158773f0b0f6c601c05979cec23de58db863e4d39b34dc9f4e52bf191ea03
|
|
| MD5 |
076984592d7b2ce4aef8718d29d28b11
|
|
| BLAKE2b-256 |
722f55deb8894204161ad9996d94a2e3a0dfcbea8b356d075bb2e5f3a7985880
|