From 8e185eed09f896993212b0215a92784eb0143ae7 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 20 Sep 2010 18:49:50 +0900 Subject: [PATCH] Added/updated some doc files. Bumped version slightly. --- NEWS | 2 ++ README.txt | 18 +++++++++++------- setup.py | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 NEWS diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..a8b0043 --- /dev/null +++ b/NEWS @@ -0,0 +1,2 @@ +Version 0.3: KANJIDIC2 parser working. +Version 0.2: JMdict parser working. diff --git a/README.txt b/README.txt index 1f02c47..0f2b5f2 100644 --- a/README.txt +++ b/README.txt @@ -3,13 +3,9 @@ Copyright 2010 by Paul Goins Released under the two-clause OSI-approved BSD license (see COPYING.txt) -This library allows conversion of JMdict (or JMdict.gz) into an SQLite -database. All "data" within JMdict (that is, everything except -comments) should be preserved in the SQLite format. - -A converter for KANJIDIC2 is also in this package, but it is not -currently supported or recommended. I will be rewriting it when time -allows. +This library allows conversion of JMdict and KANJIDIC2 into SQLite +databases. All "data" within the original files (that is, everything +except comments) should be preserved in the SQLite format. Documentation is lacking right now, but a few notes: @@ -23,6 +19,14 @@ Details about the SQL schema: jmdict.png or jmdict.dia: graph of the database layout +Running the KANJIDIC2 conversion tool: + + python -m jblite.jmdict + +No schema info yet, but it's far simpler than JMdict, so it shouldn't +be so hard to figure out. + + License of output: JMdict is property of The Electronic Dictionary Research and Development Group, and both JMdict and the database generated by this program fall under the license specified here: diff --git a/setup.py b/setup.py index 7b56e6b..2e2fd22 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup setup(name='jblite', - version='0.3', + version='0.3.1', description='J-Ben SQLite parsing scripts', author='Paul Goins', author_email='general@vultaire.net', -- 2.11.4.GIT