Metadata-Version: 2.1
Name: blanksort
Version: 0.0.3
Summary: The Python package for the BlankSort keyword extraction algorithm.
Home-page: https://github.com/KentoNishi/BlankSort-Prerelease
Author: KentoNishi
Author-email: kento24gs@outlook.com
License: UNKNOWN
Description: # [BlankSort](https://pypi.org/project/blanksort/)
        The Python package for the BlankSort keyword extraction algorithm.
        
        ## Installation
        Use the following command to install from TestPyPI:
        ```shell
        pip install --upgrade blanksort
        ```
        
        ## Usage
        
        BlankSort can be imported like any other Python package:
        ```python
        import blanksort
        ```
        After importing, you can create a `BlankSort` object.
        ```python
        algo = blanksort.BlankSort()
        ```
        Alternatively, you can use the following code to create the `BlankSort` object.
        ```python
        from BlankSort import *
        algo = BlankSort()
        ```
        The `BlankSort` constructor accepts the following arguments:
        
        * binary_path [**optional**]
            * The path to the binary folder that contains `blanksort.database` and `stopwords-en.txt`. If not specified, the default binary files will be downloaded.
        * preloadVectors [**optional keyword argument**]
            * A boolean (default `False`) that specifies if word vectors should be pre-loaded into memory.
        * preloadVectors [**optional keyword argument**]
            * A boolean (default `False`) that specifies if word vectors generated on-the-fly should be saved to `blanksort.database`.
        
        ### Example 
        ```python
        import blanksort
        algo = blanksort.BlankSort()
        keywords = algo.rank("[input text]")
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: Free for non-commercial use
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
