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

wannabeparser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wannabeparser

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= wannabeparser

== Description

Library for parsing xml files to ruby hash. Xml is being parsed by input, to support large files. Specified function is fired for every parsed object.

== Usage

First, define class like this:

require 'wannabeparser'

class TwitterParser include WannaBeParser # dear wannabeparser!

tag 'status' # Select all "status" objects for me

element 'created_at' => :date # and please, save "created_at" element contents as :date in resulting object

process lambda { |o| # and do this every time you got complete object
	date = Date.parse(o[:date])
	puts "#{o['user']['name']}: #{o['text']} @ #{Date::MONTHNAMES[date.month]}, #{date.day}"
}

end

Now, you can start parsing process doing this:

tweets_count = TwitterParser::parse(File.join( File.dirname(FILE) , 'twitter.xml')) # specifying xml file path as argument

tweets_count will contain number of parsed "status" objects.

== Installation

gem sources -a http://gemcutter.org gem install wannabeparser

FAQs

Package last updated on 21 Nov 2009

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