Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ccsv

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ccsv

  • 1.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

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

print all logins

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

Package last updated on 29 Sep 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc