Metadata-Version: 1.0
Name: aDict2
Version: 0.1.1
Summary: aDict dictionary format handling
Home-page: http://arseniiv.info/progr/adict
Author: arseniiv
Author-email: arseniiv@gmail.com
License: CC0
Description: =====
        aDict
        =====
        
        aDict provides interface to reading and writing aDict dictionary format.
        Typical usage::
        
            from adict import *                # data classes
            from adict.parser import Parser    # text to data
            from adict.printer import Printer  # data to text
            
            with open('some file') as f:
                a = Article('Python')
                a.classes.append('n')
                a.transcriptions.append('Л€paЙЄОёЙ™n')
                d1 = Definition('a kind of programming language')
                d2 = Definition('a kind of Snake')
                d2.links.append('hyperonym', 'Snake')
                a.content = [d1, d2]
                
                dictionary = Parser(f).parse()
                dictionary.articles.append(a)
            
            with open('some other file', 'w') as f:
                f.write(str(Printer(dictionary)))
        
        aDict format specification
        ==========================
        
        вЂ¦in English has not written yet. :)
        
        However, I think, this format is pretty simple to understand by trial and error or by looking on this implementation.
        
        
        Contributors
        ============
        
        Only me = arseniiv so far.
        
Keywords: dictionary text format
Platform: UNKNOWN
