dictdlib-2.0.4.1+nmu1/0000755000000000000000000000000010527357026011203 5ustar dictdlib-2.0.4.1+nmu1/dictdlib.txt0000644000000000000000000002220210230225457013511 0ustar Python Library Documentation: module dictdlib NAME dictdlib FILE /home/jgoerzen/tree/dictdlib/dictdlib.py DESCRIPTION # Dictionary creation library # Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA CLASSES DictDB DictReader DictWriter class DictDB | Methods defined here: | | __init__(self, basename, mode='read', quiet=0) | Initialize a DictDB object. | | Mode must be one of: | | read -- read-only access | | write -- write-only access, truncates existing files, does not work | with .dz. dict created if nonexistant. | | update -- read/write access, dict created if nonexistant. Does not | work with .dz. | | Read can read dict or dict.dz files. Write and update will NOT work | with dict.dz files. | | If quiet is nonzero, status messages | will be suppressed. | | _initindex(self) | Load the entire index off disk into memory. | | addentry(self, defstr, headwords) | Writes an entry. defstr holds the content of the definition. | headwords is a list specifying one or more words under which this | definition should be indexed. This function always adds \n | to the end of defstr. | | addindexentry(self, word, start, size) | Adds an entry to the index. word is the relevant word. | start is the starting position in the dictionary and size is the | size of the definition; both are integers. | | delindexentry(self, word, start=None, size=None) | Removes an entry from the index; word is the word to search for. | | start and size are optional. If they are specified, only index | entries matching the specified values will be removed. | | For instance, if word is "foo" and start and size are not specified, | all index entries for the word foo will be removed. If start and size | are specified, only those entries matching all criteria will be | removed. | | This function does not actually remove the data from the .dict file. | Therefore, information removed by this function will still | exist on-disk in the .dict file, but the dict server will just | not "see" it -- there will be no way to get to it anymore. | | Returns a count of the deleted entries. | | finish(self, dosort=1) | Called to finish the writing process. | **REQUIRED IF OPENED WITH 'update' OR 'write' MODES**. | This will write the index and close the files. | | dosort is optional and defaults to true. If set to false, | dictlib will not sort the index file. In this case, you | MUST manually sort it through "sort -df" before it can be used. | | getdef(self, word) | Given a definition name, returns a list of strings with all | matching definitions. This is an *exact* match, not a | case-insensitive one. Returns [] if word is not in the dictionary. | | getdeflist(self) | Returns a list of strings naming all definitions contained | in this dictionary. | | hasdef(self, word) | | setlonginfo(self, longinfo) | Sets the extended information for this database. If there was | already long info specified, we will use delindexentry() on it | first. | | setshortname(self, shortname) | Sets the shortname for this database. If there was already | a shortname specified, we will use delindexentry() on it first. | | seturl(self, url) | Sets the URL attribute of this database. If there was | already a URL specified, we will use delindexentry() on it | first. | | update(self, string) | Writes string out, if not quiet. | | ---------------------------------------------------------------------- | Data and non-method functions defined here: | | __doc__ = None | | __module__ = 'dictdlib' | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. class DictReader | This object provides compatibility with earlier versions | of dictdlib. It is now deprecated. | | Methods defined here: | | __init__(self, basename) | Initialize a DictReader object. Provide it with the basename. | | getdef(self, defname) | Given a definition name, returns a list of strings | with all matching definitions. | | getdeflist(self) | Returns a list of strings naming all definitions contained | in this dictionary. | | ---------------------------------------------------------------------- | Data and non-method functions defined here: | | __doc__ = 'This object provides compatibility with earlier versions\n ... | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. | | __module__ = 'dictdlib' | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. class DictWriter | This object provides compatibility with earlier versions | of dictdlib. It is now deprecated. | | Methods defined here: | | __init__(self, basename, url='unknown', shortname='unknown', longinfo='unknown', quiet=0) | Initialize a DictWriter object. Will create 'basename.dict' and | 'basename.index' files. url, shortname, and longinfo specify the | respective attributes of the database. If quiet is 1, | status messages are not printed. | | finish(self, dosort=1) | Called to finish the writing process. **REQUIRED**. | This will write the index and close the files. | | dosort is optional and defaults to true. If set to false, | dictlib will not sort the index file. In this case, you | MUST manually sort it through "sort -df" before it can be used. | | writeentry(self, defstr, headwords) | Writes an entry. defstr holds the content of the definition. | headwords is a list specifying one or more words under which this | definition should be indexed. This function always adds \n | to the end of defstr. | | ---------------------------------------------------------------------- | Data and non-method functions defined here: | | __doc__ = 'This object provides compatibility with earlier versions\n ... | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. | | __module__ = 'dictdlib' | str(object) -> string | | Return a nice string representation of the object. | If the argument is a string, the return value is the same object. FUNCTIONS b64_decode(str) Takes as input a string and returns an integer value of it decoded with the base64 algorithm used by dict indexes. b64_encode(val) Takes as input an integer val and returns a string of it encoded with the base64 algorithm used by dict indexes. sortfunc(x, y) Emulate sort -df. sortnormalize(x) Returns a value such that x is mapped to a format that sorts properly with standard comparison. DATA __file__ = './dictdlib.py' __name__ = 'dictdlib' b64_list = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345... info_headword = '00-database-info' short_headword = '00-database-short' url_headword = '00-database-url' validdict = {'\t': 1, ' ': 1, '0': 1, '1': 1, '2': 1, '3': 1, '4': 1, ... x = '\t' dictdlib-2.0.4.1+nmu1/COPYING0000644000000000000000000004311010230225457012226 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. dictdlib-2.0.4.1+nmu1/dictdlib.html0000644000000000000000000004530710230225457013651 0ustar Python: module dictdlib
 
 
dictdlib
index
/home/jgoerzen/tree/dictdlib/dictdlib.py

# Dictionary creation library
# Copyright (C) 2002 John Goerzen
# <jgoerzen@complete.org>
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

 
Modules
            
gzip
os
string
sys
 
Classes
            
DictDB
DictReader
DictWriter
 
class DictDB
       
   Methods defined here:
__init__(self, basename, mode='read', quiet=0)
Initialize a DictDB object.
 
Mode must be one of:
 
read -- read-only access
 
write -- write-only access, truncates existing files, does not work
with .dz.  dict created if nonexistant.
 
update -- read/write access, dict created if nonexistant.  Does not
work with .dz.
 
Read can read dict or dict.dz files.  Write and update will NOT work
with dict.dz files.
 
If quiet is nonzero, status messages
will be suppressed.
_initindex(self)
Load the entire index off disk into memory.
addentry(self, defstr, headwords)
Writes an entry.  defstr holds the content of the definition.
headwords is a list specifying one or more words under which this
definition should be indexed.  This function always adds \n
to the end of defstr.
addindexentry(self, word, start, size)
Adds an entry to the index.  word is the relevant word.
start is the starting position in the dictionary and size is the
size of the definition; both are integers.
delindexentry(self, word, start=None, size=None)
Removes an entry from the index; word is the word to search for.
 
start and size are optional.  If they are specified, only index
entries matching the specified values will be removed.
 
For instance, if word is "foo" and start and size are not specified,
all index entries for the word foo will be removed.  If start and size
are specified, only those entries matching all criteria will be
removed.
 
This function does not actually remove the data from the .dict file.
Therefore, information removed by this function will still
exist on-disk in the .dict file, but the dict server will just
not "see" it -- there will be no way to get to it anymore.
 
Returns a count of the deleted entries.
finish(self, dosort=1)
Called to finish the writing process.
**REQUIRED IF OPENED WITH 'update' OR 'write' MODES**.
This will write the index and close the files.
 
dosort is optional and defaults to true.  If set to false,
dictlib will not sort the index file.  In this case, you
MUST manually sort it through "sort -df" before it can be used.
getdef(self, word)
Given a definition name, returns a list of strings with all
matching definitions.  This is an *exact* match, not a
case-insensitive one.  Returns [] if word is not in the dictionary.
getdeflist(self)
Returns a list of strings naming all definitions contained
in this dictionary.
hasdef(self, word)
setlonginfo(self, longinfo)
Sets the extended information for this database.  If there was
already long info specified, we will use delindexentry() on it
first.
setshortname(self, shortname)
Sets the shortname for this database.  If there was already
a shortname specified, we will use delindexentry() on it first.
seturl(self, url)
Sets the URL attribute of this database.  If there was
already a URL specified, we will use delindexentry() on it
first.
update(self, string)
Writes string out, if not quiet.

Data and non-method functions defined here:
__doc__ = None
__module__ = 'dictdlib'
str(object) -> string
 
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
 
class DictReader
      This object provides compatibility with earlier versions
of dictdlib.  It is now deprecated.
 
   Methods defined here:
__init__(self, basename)
Initialize a DictReader object.  Provide it with the basename.
getdef(self, defname)
Given a definition name, returns a list of strings
with all matching definitions.
getdeflist(self)
Returns a list of strings naming all definitions contained
in this dictionary.

Data and non-method functions defined here:
__doc__ = 'This object provides compatibility with earlier versions\n of dictdlib. It is now deprecated.'
str(object) -> string
 
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
__module__ = 'dictdlib'
str(object) -> string
 
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
 
class DictWriter
      This object provides compatibility with earlier versions
of dictdlib.  It is now deprecated.
 
   Methods defined here:
__init__(self, basename, url='unknown', shortname='unknown', longinfo='unknown', quiet=0)
Initialize a DictWriter object.  Will create 'basename.dict' and
'basename.index' files.  url, shortname, and longinfo specify the
respective attributes of the database.  If quiet is 1,
status messages are not printed.
finish(self, dosort=1)
Called to finish the writing process.  **REQUIRED**.
This will write the index and close the files.
 
dosort is optional and defaults to true.  If set to false,
dictlib will not sort the index file.  In this case, you
MUST manually sort it through "sort -df" before it can be used.
writeentry(self, defstr, headwords)
Writes an entry.  defstr holds the content of the definition.
headwords is a list specifying one or more words under which this
definition should be indexed.  This function always adds \n
to the end of defstr.

Data and non-method functions defined here:
__doc__ = 'This object provides compatibility with earlier versions\n of dictdlib. It is now deprecated.'
str(object) -> string
 
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
__module__ = 'dictdlib'
str(object) -> string
 
Return a nice string representation of the object.
If the argument is a string, the return value is the same object.
 
Functions
            
b64_decode(str)
Takes as input a string and returns an integer value of it decoded
with the base64 algorithm used by dict indexes.
b64_encode(val)
Takes as input an integer val and returns a string of it encoded
with the base64 algorithm used by dict indexes.
sortfunc(x, y)
Emulate sort -df.
sortnormalize(x)
Returns a value such that x is mapped to a format that sorts properly
with standard comparison.
 
Data
             __file__ = './dictdlib.pyc'
__name__ = 'dictdlib'
b64_list = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
info_headword = '00-database-info'
short_headword = '00-database-short'
url_headword = '00-database-url'
validdict = {'\t': 1, ' ': 1, '0': 1, '1': 1, '2': 1, '3': 1, '4': 1, '5': 1, '6': 1, '7': 1, ...}
x = '\t'
dictdlib-2.0.4.1+nmu1/ChangeLog0000644000000000000000000000703110230225457012747 0ustar 2002-06-11 15:07 jgoerzen * setup.py, debian/changelog: Updated for 2.0.2 2002-06-11 15:06 jgoerzen * dictdlib.py: More comprehensive fix! 2002-06-11 15:06 jgoerzen * dictdlib.py: Fixed a couple of bugs: * getdef() returns [] if the word is not matched * 'update' tried to open with 'w+b' if the file cannot be opened with 'r+b' 2002-05-23 16:23 jgoerzen * dictdlib.py, debian/changelog: Bug fix. 2002-05-02 15:07 jgoerzen * debian/changelog: Updated. 2002-05-02 14:47 jgoerzen * dictdlib.py: Fixed another getdef() bug 2002-05-02 14:45 jgoerzen * dictdlib.py: Fixed a bug with getdef 2002-05-02 14:43 jgoerzen * dictdlib.py: Fixed some bugs. 2002-05-02 14:16 jgoerzen * dictdlib.html, dictdlib.txt, setup.py, debian/changelog: Bumped version numbers Updated docs. Prep for testing now. 2002-05-02 14:16 jgoerzen * dictdlib.py: Corrected some docs 2002-05-02 14:12 jgoerzen * dictdlib.html, dictdlib.py, dictdlib.txt: Updated docs 2002-05-02 14:06 jgoerzen * dictdlib.py: Fixed syntax errors 2002-05-02 14:05 jgoerzen * dictdlib.py: Finished rewrite 2002-05-02 13:16 jgoerzen * dictdlib.py: Beginning of conversion to unified interface. 2002-04-19 20:19 jgoerzen * dictdlib.html, dictdlib.py, dictdlib.txt, debian/changelog: Added DictReader. 2002-04-19 20:19 jgoerzen * ChangeLog: Updated. 2002-04-19 16:26 jgoerzen * dictdlib.py: Another try. 2002-04-19 16:25 jgoerzen * dictdlib.py: Updated sort algorithm 2002-04-19 15:32 jgoerzen * ChangeLog: Updated. 2002-04-19 15:32 jgoerzen * debian/changelog: Updated for 1.0.3 2002-04-19 15:31 jgoerzen * dictdlib.py: Argh, docs for sort(1) were wrong. More adjustments to make it match. Turns out that sort(1) *DOES* consider a tab. 2002-04-19 13:07 jgoerzen * ChangeLog: Updated. 2002-04-19 13:07 jgoerzen * dictdlib.py: Typo fix. 2002-04-19 13:05 jgoerzen * dictdlib.html, dictdlib.txt: Reflected new sort algorithm. 2002-04-19 13:05 jgoerzen * dictdlib.py, debian/changelog: Moved to a new sorting algorithm. 2002-04-19 12:47 jgoerzen * dictdlib.py: More display tweaking. 2002-04-19 12:46 jgoerzen * dictdlib.py: Fixed a display bug. 2002-04-19 12:39 jgoerzen * dictdlib.html, dictdlib.py, dictdlib.txt: Updated for 1.0.2 2002-04-19 12:14 jgoerzen * dictdlib.py: Fixed a bug in sortfunc. 2002-04-19 12:11 jgoerzen * dictdlib.py, setup.py, debian/changelog: Updated, bug fixes. 2002-04-19 12:05 jgoerzen * dictdlib.py: Updated. 2002-04-19 12:00 jgoerzen * ChangeLog: Prepare for 1.0.1 2002-04-19 12:00 jgoerzen * setup.py, debian/changelog: Fixed a braino in finish() 2002-04-19 12:00 jgoerzen * dictdlib.py: Fixed a braino. 2002-04-19 11:38 jgoerzen * ChangeLog: [no log message] 2002-04-19 11:38 jgoerzen * debian/changelog: Updated. 2002-04-19 11:32 jgoerzen * setup.py, debian/changelog, debian/rules: Fixes from import error. 2002-04-19 11:31 jgoerzen * ChangeLog: Updated. 2002-04-19 11:31 jgoerzen * dictdlib.html, dictdlib.txt, debian/changelog, debian/control, debian/copyright, debian/docs: Updated for this package. 2002-04-19 11:27 jgoerzen * debian/: changelog, control, copyright, docs, examples, rules: Import from dictclient 2002-04-19 11:26 jgoerzen * COPYING, ChangeLog, Makefile, setup.py: Added files in preparation for distribution 2002-04-19 11:21 jgoerzen * dictdlib.py: Updated. 2002-04-19 11:07 jgoerzen * dictdlib.py: Updated. 2002-04-19 10:20 jgoerzen * dictdlib.py: Initial revision 2002-04-19 10:20 jgoerzen * dictdlib.py: Initial add dictdlib-2.0.4.1+nmu1/debian/0000755000000000000000000000000012302375727012426 5ustar dictdlib-2.0.4.1+nmu1/debian/docs0000644000000000000000000000004510230225457013270 0ustar ChangeLog dictdlib.html dictdlib.txt dictdlib-2.0.4.1+nmu1/debian/copyright0000644000000000000000000000206110230225457014350 0ustar This package was debianized by John Goerzen on Thu, 18 Apr 2002 06:58:31 -0500. It was downloaded from gopher://quux.org/1/devel/dictdlib Upstream Author(s): John Goerzen Copyright: Copyright (C) 2002 John Goerzen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Debian GNU/Linux may find the GNU General Public License, version 2, in /usr/share/common-licenses/GPL-2. dictdlib-2.0.4.1+nmu1/debian/changelog0000644000000000000000000000447012302375727014305 0ustar dictdlib (2.0.4.1+nmu1build1) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:47:03 +0000 dictdlib (2.0.4.1+nmu1) unstable; urgency=low * Non-maintainer upload. * Convert to dh_python2 (Closes: #616790). -- Luca Falavigna Mon, 27 May 2013 09:05:48 +0200 dictdlib (2.0.4.1) unstable; urgency=low * NMU. Rebuild to move files to /usr/share/pyshared. Closes: #490455. -- Matthias Klose Fri, 18 Jul 2008 15:57:20 +0000 dictdlib (2.0.4) unstable; urgency=high * Updated to the most recent Python policy. -- John Goerzen Fri, 17 Nov 2006 06:45:27 -0600 dictdlib (2.0.3) unstable; urgency=low * Updated for Python 2.3. -- John Goerzen Mon, 18 Aug 2003 16:00:39 -0500 dictdlib (2.0.2) unstable; urgency=low * Some bugfixes reported by -- John Goerzen Tue, 11 Jun 2002 15:06:52 -0500 dictdlib (2.0.1) unstable; urgency=low * Fixed a bug with setlonginfo. Closes: #146599, #146602. -- John Goerzen Thu, 23 May 2002 16:17:28 -0500 dictdlib (2.0.0) unstable; urgency=low * Rewrote interface; is now capable of updates. New DictDB class. * DictReader and DictWriter are now "compatibility" classes that are implemented in terms of DictDB. -- John Goerzen Thu, 2 May 2002 14:12:51 -0500 dictdlib (1.0.4) unstable; urgency=low * Added DictReader class. -- John Goerzen Fri, 19 Apr 2002 20:19:36 -0500 dictdlib (1.0.3) unstable; urgency=low * More adjustments to sort -- the docs for GNU's sort(1) were wrong, made our function bug-compatible. -- John Goerzen Fri, 19 Apr 2002 15:32:02 -0500 dictdlib (1.0.2) unstable; urgency=low * Fixed a bug with sorting. * New, faster sort algorithm. -- John Goerzen Fri, 19 Apr 2002 12:10:46 -0500 dictdlib (1.0.1) unstable; urgency=low * Fixed a braino in finish() -- John Goerzen Fri, 19 Apr 2002 12:00:23 -0500 dictdlib (1.0.0) unstable; urgency=low * Initial release. Closes: #143608. -- John Goerzen Thu, 18 Apr 2002 12:24:17 -0500 dictdlib-2.0.4.1+nmu1/debian/examples0000644000000000000000000000001310230225457014151 0ustar examples/* dictdlib-2.0.4.1+nmu1/debian/compat0000644000000000000000000000000210527355525013625 0ustar 5 dictdlib-2.0.4.1+nmu1/debian/control0000644000000000000000000000073312150603363014023 0ustar Source: dictdlib Section: interpreters Priority: optional Maintainer: John Goerzen Build-Depends: debhelper (>> 5.0.37.2), python-all-dev (>= 2.6.6-3~) Standards-Version: 3.5.2 Package: python-dictdlib Architecture: all Provides: ${python:Provides} Depends: ${python:Depends} Suggests: dictd Description: Python library for generating dictd dictionaries This library is useful if you want to write Python programs that generate dictd dictionaries. dictdlib-2.0.4.1+nmu1/debian/rules0000755000000000000000000000372612150602376013510 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Modified by John Goerzen # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This is the debhelper compatibility version to use. PYTHON=python PACKAGE=python-dictdlib ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) CFLAGS += -g endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. #$(PYTHON) setup.py configure touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(PYTHON) setup.py build #/usr/bin/docbook-to-man debian/pygopherd.sgml > pygopherd.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. -$(MAKE) clean -$(PYTHON) setup.py clean --all dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/pygopherd. #$(MAKE) install DESTDIR=$(CURDIR)/debian/pygopherd $(PYTHON) setup.py install --root=`pwd`/debian/$(PACKAGE) --no-compile --install-layout=deb # Build architecture-dependent files here. binary-arch: build install # We have nothing to do by default. # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot # dh_installdebconf dh_installdocs #dh_installexamples dh_installmenu # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime dh_installinit dh_installcron dh_installman dh_installinfo # dh_undocumented dh_installchangelogs dh_python2 dh_link dh_strip dh_compress dh_fixperms # dh_makeshlibs dh_installdeb # dh_perl dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure dictdlib-2.0.4.1+nmu1/debian/substvars0000644000000000000000000000007210527355053014401 0ustar python:Versions=>= 2.3 python:Provides=python2.4-dictdlib dictdlib-2.0.4.1+nmu1/setup.py0000644000000000000000000000237210230225457012712 0ustar #!/usr/bin/env python2.2 # $Id: setup.py,v 1.6 2002/06/11 20:07:12 jgoerzen Exp $ # Python API for generating dict files. # COPYRIGHT # # Copyright (C) 2002 John Goerzen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # END OF COPYRIGHT # from distutils.core import setup setup(name = "dictdlib", version = "2.0.2", description = "Python library for generating dictd files", author = "John Goerzen", author_email = 'jgoerzen@complete.org', url = 'gopher://quux.org/1/devel/dictdlib', py_modules = ['dictdlib'], license = "GPL version 2" ) dictdlib-2.0.4.1+nmu1/Makefile0000644000000000000000000000177210230225457012643 0ustar # Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA doc: PYTHONPATH=`pwd` pydoc2.2 dictdlib > dictdlib.txt PYTHONPATH=`pwd` pydoc2.2 -w dictdlib clean: -rm -f `find . -name "*~"` -rm -f `find . -name "*.pyc"` changelog: cvs2cl cvs commit ChangeLog rm ChangeLog.bak dictdlib-2.0.4.1+nmu1/dictdlib.py0000644000000000000000000003342710230225457013335 0ustar # Dictionary creation library # Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA import sys, string, gzip, os b64_list = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" url_headword = "00-database-url" short_headword = "00-database-short" info_headword = "00-database-info" def b64_encode(val): """Takes as input an integer val and returns a string of it encoded with the base64 algorithm used by dict indexes.""" startfound = 0 retval = "" for i in range(5, -1, -1): thispart = (val >> (6 * i)) & ((2 ** 6) - 1) if (not startfound) and (not thispart): # Both zero -- keep going. continue startfound = 1 retval += b64_list[thispart] if len(retval): return retval else: return b64_list[0] def b64_decode(str): """Takes as input a string and returns an integer value of it decoded with the base64 algorithm used by dict indexes.""" if not len(str): return 0 retval = 0 shiftval = 0 for i in range(len(str) - 1, -1, -1): val = b64_list.index(str[i]) retval = retval | (val << shiftval) shiftval += 6 return retval validdict = {} for x in string.ascii_letters + string.digits + " \t": validdict[x] = 1 def sortnormalize(x): """Returns a value such that x is mapped to a format that sorts properly with standard comparison.""" x2 = '' for i in range(len(x)): if validdict.has_key(x[i]): x2 += x[i] return x2.upper() + "\0" + x.upper() def sortfunc(x, y): """Emulate sort -df.""" xl = x.split("\0") yl = y.split("\0") ret = cmp(xl[0], yl[0]) if ret != 0: return ret return cmp(xl[1], yl[1]) class DictDB: def __init__(self, basename, mode = 'read', quiet = 0): #, url = 'unknown', shortname = 'unknown', # longinfo = 'unknown', quiet = 0): """Initialize a DictDB object. Mode must be one of: read -- read-only access write -- write-only access, truncates existing files, does not work with .dz. dict created if nonexistant. update -- read/write access, dict created if nonexistant. Does not work with .dz. Read can read dict or dict.dz files. Write and update will NOT work with dict.dz files. If quiet is nonzero, status messages will be suppressed.""" self.mode = mode self.quiet = quiet self.indexentries = {} self.count = 0 self.basename = basename self.indexfilename = self.basename + ".index" if os.path.isfile(self.basename + ".dict.dz"): self.dictfilename = self.basename + ".dict.dz" self.usecompression = 1 else: self.dictfilename = self.basename + ".dict" self.usecompression = 0 if mode == 'read': self.indexfile = open(self.indexfilename, "rt") if self.usecompression: self.dictfile = gzip.GzipFile(self.dictfilename, "rb") else: self.dictfile = open(self.dictfilename, "rb") self._initindex() elif mode == 'write': self.indexfile = open(self.indexfilename, "wt") if self.usecompression: raise ValueError, "'write' mode incompatible with .dz files" else: self.dictfile = open(self.dictfilename, "wb") elif mode == 'update': try: self.indexfile = open(self.indexfilename, "r+b") except IOError: self.indexfile = open(self.indexfilename, "w+b") if self.usecompression: # Open it read-only since we don't support mods. self.dictfile = gzip.GzipFile(self.dictfilename, "rb") else: try: self.dictfile = open(self.dictfilename, "r+b") except IOError: self.dictfile = open(self.dictfilename, "w+b") self._initindex() else: raise ValueError, "mode must be 'read', 'write', or 'update'" #self.writeentry(url_headword + "\n " + url, [url_headword]) #self.writeentry(short_headword + "\n " + shortname, # [short_headword]) #self.writeentry(info_headword + "\n" + longinfo, [info_headword]) def _initindex(self): """Load the entire index off disk into memory.""" self.indexfile.seek(0) for line in self.indexfile.xreadlines(): splits = line.rstrip().split("\t") if not self.indexentries.has_key(splits[0]): self.indexentries[splits[0]] = [] self.indexentries[splits[0]].append([b64_decode(splits[1]), b64_decode(splits[2])]) def addindexentry(self, word, start, size): """Adds an entry to the index. word is the relevant word. start is the starting position in the dictionary and size is the size of the definition; both are integers.""" if not self.indexentries.has_key(word): self.indexentries[word] = [] self.indexentries[word].append([start, size]) def delindexentry(self, word, start = None, size = None): """Removes an entry from the index; word is the word to search for. start and size are optional. If they are specified, only index entries matching the specified values will be removed. For instance, if word is "foo" and start and size are not specified, all index entries for the word foo will be removed. If start and size are specified, only those entries matching all criteria will be removed. This function does not actually remove the data from the .dict file. Therefore, information removed by this function will still exist on-disk in the .dict file, but the dict server will just not "see" it -- there will be no way to get to it anymore. Returns a count of the deleted entries.""" if not self.indexentries.has_key(word): return 0 retval = 0 entrylist = self.indexentries[word] for i in range(len(entrylist) - 1, -1, -1): # Go backwords so the del doesn't effect the index. if (start == None or start == entrylist[i][0]) and \ (size == None or size == entrylist[i][1]): del(entrylist[i]) retval += 1 if len(entrylist) == 0: # If we emptied it, del it completely del(self.indexentries[word]) return retval def update(self, string): """Writes string out, if not quiet.""" if not self.quiet: sys.stdout.write(string) sys.stdout.flush() def seturl(self, url): """Sets the URL attribute of this database. If there was already a URL specified, we will use delindexentry() on it first.""" self.delindexentry(url_headword) self.addentry(url_headword + "\n " + url, [url_headword]) def setshortname(self, shortname): """Sets the shortname for this database. If there was already a shortname specified, we will use delindexentry() on it first.""" self.delindexentry(short_headword) self.addentry(short_headword + "\n " + shortname, [short_headword]) def setlonginfo(self, longinfo): """Sets the extended information for this database. If there was already long info specified, we will use delindexentry() on it first.""" self.delindexentry(info_headword) self.addentry(info_headword + "\n" + longinfo, [info_headword]) def addentry(self, defstr, headwords): """Writes an entry. defstr holds the content of the definition. headwords is a list specifying one or more words under which this definition should be indexed. This function always adds \\n to the end of defstr.""" self.dictfile.seek(0, 2) # Seek to end of file start = self.dictfile.tell() defstr += "\n" self.dictfile.write(defstr) for word in headwords: self.addindexentry(word, start, len(defstr)) self.count += 1 if self.count % 1000 == 0: self.update("Processed %d records\r" % self.count) def finish(self, dosort = 1): """Called to finish the writing process. **REQUIRED IF OPENED WITH 'update' OR 'write' MODES**. This will write the index and close the files. dosort is optional and defaults to true. If set to false, dictlib will not sort the index file. In this case, you MUST manually sort it through "sort -df" before it can be used.""" self.update("Processed %d records.\n" % self.count) if dosort: self.update("Sorting index: converting") indexlist = [] for word, defs in self.indexentries.items(): for thisdef in defs: indexlist.append("%s\t%s\t%s" % (word, b64_encode(thisdef[0]), b64_encode(thisdef[1]))) self.update(" mapping") sortmap = {} for entry in indexlist: norm = sortnormalize(entry) if sortmap.has_key(norm): sortmap[norm].append(entry) sortmap[norm].sort(sortfunc) else: sortmap[norm] = [entry] self.update(" listing") normalizedentries = sortmap.keys() self.update(" sorting") normalizedentries.sort() self.update(" re-mapping") indexlist = [] for normentry in normalizedentries: for entry in sortmap[normentry]: indexlist.append(entry) self.update(", done.\n") self.update("Writing index...\n") self.indexfile.seek(0) for entry in indexlist: self.indexfile.write(entry + "\n") if self.mode == 'update': # In case things were deleted self.indexfile.truncate() self.indexfile.close() self.dictfile.close() self.update("Complete.\n") def getdeflist(self): """Returns a list of strings naming all definitions contained in this dictionary.""" return self.indexentries.keys() def hasdef(self, word): return self.indexentries.has_key(word) def getdef(self, word): """Given a definition name, returns a list of strings with all matching definitions. This is an *exact* match, not a case-insensitive one. Returns [] if word is not in the dictionary.""" retval = [] if not self.hasdef(word): return retval for start, length in self.indexentries[word]: self.dictfile.seek(start) retval.append(self.dictfile.read(length)) return retval class DictReader: """This object provides compatibility with earlier versions of dictdlib. It is now deprecated.""" def __init__(self, basename): """Initialize a DictReader object. Provide it with the basename.""" self.dictdb = DictDB(basename, 'read') def getdeflist(self): """Returns a list of strings naming all definitions contained in this dictionary.""" return self.dictdb.getdeflist() def getdef(self, defname): """Given a definition name, returns a list of strings with all matching definitions.""" return self.dictdb.getdef(defname) class DictWriter: """This object provides compatibility with earlier versions of dictdlib. It is now deprecated.""" def __init__(self, basename, url = 'unknown', shortname = 'unknown', longinfo = 'unknown', quiet = 0): """Initialize a DictWriter object. Will create 'basename.dict' and 'basename.index' files. url, shortname, and longinfo specify the respective attributes of the database. If quiet is 1, status messages are not printed.""" self.dictdb = DictDB(basename, 'write', quiet) self.dictdb.seturl(url) self.dictdb.setshortname(shortname) self.dictdb.setlonginfo(longinfo) def writeentry(self, defstr, headwords): """Writes an entry. defstr holds the content of the definition. headwords is a list specifying one or more words under which this definition should be indexed. This function always adds \\n to the end of defstr.""" self.dictdb.addentry(defstr, headwords) def finish(self, dosort = 1): """Called to finish the writing process. **REQUIRED**. This will write the index and close the files. dosort is optional and defaults to true. If set to false, dictlib will not sort the index file. In this case, you MUST manually sort it through "sort -df" before it can be used.""" self.dictdb.finish(dosort)