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

kanjidic2_parser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kanjidic2_parser

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Kanjidic2Parser

This gem makes parsing KANJIDIC2 easier. See example usage for details.

Installation

Add this line to your application's Gemfile:

gem 'kanjidic2_parser'

And then execute:

$ bundle

Or install it yourself as:

$ gem install kanjidic2_parser

And use it in your application:

require 'kanjidic2_parser'

Dependencies

This gem depends on nokogiri for XML parsing.

Usage

Example code:

require "nokogiri"

kanjidic2 = File.open("kanjidic2.xml") { |f| Nokogiri::XML(f) }

kanjidic2.css("character").each do |character|
	chr = Kanjidic2Parser.parse_chr(character)
	p chr
end

Example output: {"literal"=>"亜", "codepoint"=>{"ucs"=>"4e9c", "jis208"=>"16-01"}, "radical"=>{"classical"=>"7", "nelson_c"=>"1"}, "misc"=>{"grade"=>"8", "stroke_count"=>"7", "variant"=>{"jis208"=>"48-19"}, "freq"=>"1509", "rad_name"=>"", "jlpt"=>"1"}, "dic_number"=>{"nelson_c"=>"43", "nelson_n"=>"81", "halpern_njecd"=>"3540", "halpern_kkd"=>"4354", "halpern_kkld"=>"2204", "halpern_kkld_2ed"=>"2966", "heisig"=>"1809", "heisig6"=>"1950", "gakken"=>"1331", "oneill_names"=>"525", "oneill_kk"=>"1788", "moro"=>{"m_vol"=>"1", "m_page"=>"0525", "value"=>"272"}, "henshall"=>"997", "sh_kk"=>"1616", "sh_kk2"=>"1724", "jf_cards"=>"1032", "tutt_cards"=>"1092", "kanji_in_context"=>"1818", "kodansha_compact"=>"35", "maniette"=>"1827"}, "query_code"=>{"skip"=>"4-7-1", "sh_desc"=>"0a7.14", "four_corner"=>"1010.6", "deroo"=>"3273"}, "reading_meaning"=>{"rmgroup"=>{"reading"=>{"pinyin"=>"ya4", "korean_r"=>"a", "korean_h"=>"아", "vietnam"=>"Á", "ja_on"=>{"on_type"=>nil, "r_status"=>nil, "value"=>"ア"}, "ja_kun"=>{"r_status"=>nil, "value"=>"つ.ぐ"}}, "meaning"=>{"en"=>["Asia", "rank next", "come after", "-ous"], "fr"=>["Asie", "suivant", "sub-", "sous-"], "es"=>["pref. para indicar", "venir después de", "Asia"], "pt"=>["Ásia", "próxima", "o que vem depois", "-ous"]}}, "nanori"=>["や", "つぎ", "つぐ"]}}

The output resembles the DTD quite closely. Consult the DTD for details.

You can also parse the header:

require "nokogiri"

kanjidic2 = File.open("kanjidic2.xml") { |f| Nokogiri::XML(f) }

p Kanjidic2Parser.parse_header(kanjidic2)

Example output:

{"file_version"=>"4", "database_version"=>"2017-064", "date_of_creation"=>"2017-03-05"}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/pgorni/kanjidic2_parser.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 11 Mar 2017

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