Metadata-Version: 1.0
Name: pyter
Version: 0.1.1
Summary: Simple ffuzzy matching library using Translation Error Rate algorithm
Home-page: https://github.com/aflc/pyter
Author: Hiroyuki Tanaka
Author-email: aflc0x@gmail.com
License: UNKNOWN
Description: =====
        pyter
        =====
        
        pyter is a simple ffuzzy matching library using Translation Error Rate algorithm.
        
        Currentry under development state.
        
        ============
        Installation
        ============
        ::
          
          pip install pyter
        
        or checkout the repository::
        
          git clone git://github.com/aflc/pyter.git
          cd pyter
          pip install -e .
        
        
        =====
        Usage
        =====
        
        ------------------------------
        In Python code(Python2.x case)
        ------------------------------
        import
        
        >>> import pyter
        
        get TER score
        
        >>> ref = u'SAUDI ARABIA denied THIS WEEK information published in the AMERICAN new york times'
        >>> hyp = u'THIS WEEK THE SAUDIS denied information published in the new york times'
        >>> '%.3f' % pyter.ter(ref, hyp)
        '0.308'
        
        If you want to use a charactor based matching, disable wordmatch option
        
        >>> ref = u"Pythonは、より素早く、効果的にシステムとの統合が可能なプログラミング言語です。"
        >>> hyp = u"Pythonは、より迅速に動作するとより効果的にシステムを統合できるプログラミング言語です。"
        >>> '%.3f' % pyter.ter(ref, hyp, wordmatch=False)
        '0.357'
        >>> '%.3f' % pyter.ter(ref, hyp) ## maybe you don't want it
        '1.000'
        
        If you want to detect matching place
        
        >>> pyter.align('A B C D E F', 'E F A C D B')  ## wordmatch option is True by default.
        [(0, 4, 1), (2, 10, 1), (4, 6, 3), (8, 0, 3)]
        
        This format is the same as Python's difflib.SequenceMatcher.
        
        ----------------------
        Command line interface
        ----------------------
        Please type::
        
          python -m pyter.ter --help
        
        
        ===========
        ReleaseNote
        ===========
        
        v0.1.1
          Minor fix, and register to PyPi
        v0.1
          Initial release
        
        =======
        License
        =======
        
        It is released under the MIT license.
        
            Copyright (c) 2011 Hiroyuki Tanaka
            
            Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
            
            The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
            
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing
