├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── data ├── img │ └── example.gif └── pdf │ ├── pdf_tests │ ├── sample_txt.txt │ ├── sample_word.docx │ └── sample_word.pdf │ └── plagiarism │ ├── AI_Healthcare_Applications.pdf │ ├── AI_Healthcare_Benefits.txt │ ├── AI_Healthcare_Overview.docx │ └── AI_Modern_Healthcare.odt ├── requirements.txt ├── requirements_lint.txt ├── scripts ├── __init__.py ├── html_utils.py ├── html_writing.py ├── main.py ├── processing_files.py ├── similarity.py ├── template.html └── utils.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── scripts ├── __init__.py ├── test_html_utils.py ├── test_html_writing.py ├── test_main.py ├── test_processing_files.py ├── test_similarity.py └── test_utils.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include scripts/template.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /data/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/img/example.gif -------------------------------------------------------------------------------- /data/pdf/pdf_tests/sample_txt.txt: -------------------------------------------------------------------------------- 1 | sample text -------------------------------------------------------------------------------- /data/pdf/pdf_tests/sample_word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/pdf_tests/sample_word.docx -------------------------------------------------------------------------------- /data/pdf/pdf_tests/sample_word.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/pdf_tests/sample_word.pdf -------------------------------------------------------------------------------- /data/pdf/plagiarism/AI_Healthcare_Applications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/plagiarism/AI_Healthcare_Applications.pdf -------------------------------------------------------------------------------- /data/pdf/plagiarism/AI_Healthcare_Benefits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/plagiarism/AI_Healthcare_Benefits.txt -------------------------------------------------------------------------------- /data/pdf/plagiarism/AI_Healthcare_Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/plagiarism/AI_Healthcare_Overview.docx -------------------------------------------------------------------------------- /data/pdf/plagiarism/AI_Modern_Healthcare.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/data/pdf/plagiarism/AI_Modern_Healthcare.odt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_lint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/requirements_lint.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/html_utils.py -------------------------------------------------------------------------------- /scripts/html_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/html_writing.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/processing_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/processing_files.py -------------------------------------------------------------------------------- /scripts/similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/similarity.py -------------------------------------------------------------------------------- /scripts/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/template.html -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_html_utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_html_writing.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_processing_files.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_similarity.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wazzabeee/copy-spotter/HEAD/tests/scripts/test_utils.py --------------------------------------------------------------------------------