Metadata-Version: 2.1
Name: pyHooke
Version: 0.2.0
Summary: Open source plagiarism checker
Home-page: http://github.com/oekshido/hooke
Author: oekshido
Author-email: oekshido@gmail.com
License: Apache-2.0
Description: # Hooke
        Written in python, and based on quite a few requirements
          
        It is yet to work properly
        
        ## Installation
        ```
        pip install pyHooke # Stable PyPi
        pip install git+https://github.com/oekshido/Hooke # Latest
        ```
        Due to the inital installation, it may be required to install nltk datasets manually
        
        ## Usage
        To run a simple textual check:
        ```python
        from Hooke import Hooke
        
        hk = Hooke() #Inits
        hk.Textual(input="test/test.txt") #Runs the fast, textual comparison
        hk.Shingled(input="test/test.txt") #Runs the nltk and shingle comparison
        ```
        
        ## Contributing
        Just pull request, with a brief explanation of the changes.
        
Keywords: plagiarism nlp plag scan levenshtein
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Linguistic
Description-Content-Type: text/markdown
