Metadata-Version: 2.1 Name: pyHooke Version: 0.2.1 Summary: Open source plagiarism checker Home-page: http://github.com/oekshido/hooke Author: oekshido Author-email: oekshido@gmail.com License: Apache-2.0 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 Requires-Dist: fuzzysearch Requires-Dist: tika Requires-Dist: wget Requires-Dist: BeautifulSoup4 Requires-Dist: nltk Requires-Dist: textract Requires-Dist: Google-Search-API # 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 import Hooke Hooke.Textual(input="test/test.txt") #Runs the fast, textual comparison Hooke.Shingled(input="test/test.txt") #Runs the nltk and shingle comparison ``` ## Contributing Just pull request, with a brief explanation of the changes.