Metadata-Version: 1.0
Name: pyfst
Version: 0.1.2
Summary: Cython wrapper of the OpenFst library.
Home-page: http://github.com/vchahun/pyfst
Author: Victor Chahuneau
Author-email: UNKNOWN
License: UNKNOWN
Description: 
        pyfst
        =====
        
        A Cython wrapper of the OpenFst_ library.
        
        Requires OpenFst 1.3
        
        .. _OpenFst: http://www.openfst.org
        
        Example usage::
        
            from fst import SimpleFst
        
            t = SimpleFst()
        
            t.add_arc(0, 1, 'a', 'A', 0.5)
            t.add_arc(0, 1, 'b', 'B', 1.5)
            t.add_arc(1, 2, 'c', 'C', 2.5)
        
            t[2].final = 3.5
        
            t.shortest_path() # 2 -(a:A/0.5)-> 1 -(c:C/2.5)-> 0/3.5 
        
        
Platform: UNKNOWN
Classifier: Topic :: Text Processing :: Linguistic
