
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Ccsv
A pure-C CSV parser.
== Installation
gem install ccsv
== Usage
require 'rubygems' require 'ccsv'
Ccsv.foreach("data.csv") do |line| # Do something with the line array end
Ccsv.foreach("/etc/passwd",":") do |line| puts line[0] end
== Advanced usage
Get users from passwd file, with UIDs between 1000 and 1010 and between 2000 and 2010. Works with numbers only! Third argument is column index, used for filtering, then one or more intervals.
Ccsv.foreach("/etc/passwd",":",2,[1000..1010],[2000..2010]) do |line| puts line[0] end
== Contacts
Forks, pull-requests and other contacts via guthub: http://github.com/evan/ccsv/
== License
Copyright 2012-2014 Sergey Zhumatiy
Copyright 2007-2012 Cloudburst, LLC. Licensed under the AFL 3. See the included LICENSE file.
FAQs
Unknown package
We found that ccsv demonstrated a not healthy version release cadence and project activity because the last version was released 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
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.