Home | Trees | Indices | Help |
|
---|
|
Provides an abstract class for loading EDICT formatted dictionaries.
One column will be provided for the headword, one for the reading (in EDICT that is the Kana) and one for the translation.
To Do (Fix): Optimize insert, use transaction which disables autocommit and cosider passing data all at once, requiring proper handling of row indices.
|
|||
TableGenerator Generates the dictionary entries. |
|
|||
|
|||
|
|||
str |
|
||
file |
|
||
str |
|
||
|
|||
|
|||
bool |
|
||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
COLUMNS =
Columns that will be built |
|||
PRIMARY_KEYS = [] Primary keys of the created table |
|||
INDEX_KEYS =
Index keys (not unique) of the created table |
|||
COLUMN_TYPES =
Column types for created table |
|||
FULLTEXT_COLUMNS =
Column names which shall be fulltext searchable. |
|||
FILE_NAMES = None Names of file containing the edict formated dictionary. |
|||
ENCODING =
Encoding of the dictionary file. |
|||
ENTRY_REGEX = None Regular Expression matching a dictionary entry. |
|||
IGNORE_LINES = 0 Number of starting lines to ignore. |
|||
FILTER = None Filter to apply to the read entry before writing to table. |
|||
Inherited from |
|
|||
Inherited from |
|
Constructs the TableBuilder.
|
Returns the entry generator. Needs to be implemented by child classes.
|
Function extracting the name of contained file from the zipped archive using the file name. Reimplement and adapt to own needs.
|
Returns a handle to the give file. The file can be either normal content, zip, tar, .tar.gz, tar.bz2
|
Returns a SQL statement for creating a virtual table using FTS3 for SQLite.
|
Builds a FTS3 table construct for supporting full text search under SQLite.
|
Tests if the SQLite FTS3 extension is supported on the build system.
|
Build the table provided by the TableBuilder. A search index is created to allow for fulltext searching.
|
Removes the table provided by the TableBuilder from the database.
|
|
COLUMN_TYPESColumn types for created table
|
ENTRY_REGEXRegular Expression matching a dictionary entry. Needs to be overwritten if not strictly follows the EDICT format.
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue May 19 22:38:20 2009 | http://epydoc.sourceforge.net |