Metadata-Version: 2.1
Name: linguaf
Version: 0.0.8b0
Summary: Python package for calculating famous measures in computational linguistics
Home-page: https://github.com/Perevalov/LinguaF
Author: Aleksandr Perevalov
Author-email: perevalovproduction@gmail.com
License: MIT
Description: # LinguaF
        
        **LinguaF provides an easy access for researchers and developers to methods of quantitative language analysis, such as: readability, complexity, diversity, and other descriptive statistics.**
        
        ## Usage
        
        ```python
        documents = [
            "Pain and suffering are always inevitable for a large intelligence and a deep heart. The really great men must, I think, have great sadness on earth.",
            "To go wrong in one's own way is better than to go right in someone else's.",
            "The darker the night, the brighter the stars, The deeper the grief, the closer is God!"
        ]
        ```
        
        ### Descriptive Statistics
        
        ```python
        from linguaf import descriptive_statistics as ds
        
        
        ds.words_per_sentence(documents)
        # Output: 15
        ```
        
        ### Lexical Complexity
        
        ```python
        from linguaf import lexical_complexity as lc
        
        
        lc.mean_dependency_distance(documents)
        # Output: 2.307306255835668
        ```
        
        ### Lexical Diversity
        
        ```python
        from linguaf import lexical_diversity as ld
        
        
        ld.log_type_token_ratio(documents)
        # Output: 94.03574963462502
        ```
        
        ### Readability
        
        ```python
        from linguaf import readability as r
        
        
        r.flesch_kincaid_grade(documents)
        # Output: 4.813333333333336
        ```
        
        ## Install
        
        ### Via PIP
        
        ```bash
        pip install linguaf
        ```
        
        ### Latest version from GitHub
        
        ```bash
        git clone https://github.com/Perevalov/LinguaF.git
        cd LinguaF
        pip install .
        ```
        
        ## Language Support
        
        At the moment, library supports English and Russian languages for all the methods.
        
        ## Open API
        
        TBD
        
        ## Citation
        
        TBD
        
Keywords: language features computational linguistics quantitative text analysis
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
