Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
algolia-csv
Advanced tools
It's a CLI and library to easily upload CSV files to Algolia in an efficient manner without limitations.
Cool features:
npm install -g algolia-csv
You must have a file in which the first row contains the name of all the fields.
algolia-upload $APP_ID $API_KEY $indexName $file|$url [-d $delimiter] [-b $batchSizer] [--clear-index] [--parse-arrays=$column] [--array-delimiter=$delimiter] [--geo-columns=$latCol,$longCol]
Mandatory parameters are the aplication id, a key with write rights, the target index name and the input CSV (locally or accessible with http/https).
Other parameters:
-d
let you set the delimiter used in your file. This should be set in quotes. Default is ','.-b
let you set the batch size. Default is 10000.--clear-index
forces the index to be cleared before uploading the new data.--parse-arrays=column
let you specify if a column value should be split before uploading the data.
More than one column can be set using this parameter multiple times. Value will be split with --array-delimiter
.--array-delimiter
let you specify the delimiter used to split the values of columns defined with --parse-arrays
. Default is ','.--geo-columns=latCol,longCol
let you specify two columns that are to be used for creating the special algolia attribute _geoloc
.npm install --save algolia-csv
var algoliaCsvTools = require('algolia-csv');
algoliaCsvTools.upload({
appId: '',
apiKey: '',
indexName: '',
inputFile: '',
batchSize: 1000,
delimiter: ',',
clearIndex: false,
parseArrays: ['column'],
arrayDelimiter: '|',
geoColumns: {lat: 'latCol', 'lng': 'longColumn'}
});
FAQs
Algolia CSV toolbox CLI
We found that algolia-csv demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.