Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@dbl-works/csv-unique-values
Advanced tools
A script to get unique values from columns in any CSV file.
Our use case is to run this script to populate in-app dropdowns with all possible values, but there's plenty more you can do with it, for example if you want to remove duplicates from a list of e-mails or phone numbers, …
Pull in this repository locally, then run
Usage: node index.js [options]
Options:
-v, --version output the version number
-i, --input <file> input CSV file
-d, --delimiter <delimiter> delimiter used in the CSV (default: ",")
-c, --columns <columns> columns to extract, comma-separated
you can get unique values per unique values from another column by
chaining them together using `::`
(default: all columns)
-o, --output <directory> output destination, will create a file per column
--no-sort don't sort unique values
-h, --help display help for command
If we publish this to NPM, it'd be
npx @dbl-works/csv-unique-values [options]
For an example input file team.csv
Name, Country, Region
Joe, US, NA
Joelle, US, NA
John, CA, NA
Johan, DE, EU
Johanna, DE, EU
and running
npx @dbl-works/csv-unique-values --input team.csv --keys country --output ~/Desktop/team-country
will generate country.json
with contents
[
"CA",
"DE",
"US"
]
To get all countries per region you can run:
npx @dbl-works/csv-unique-values --input team.csv --keys region::country --output ~/Desktop/team-country
and you will get:
{
"NA": [
"CA",
"US",
],
"EU": [
"DE"
]
}
FAQs
Get unique values from a CSV file
We found that @dbl-works/csv-unique-values demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.