Plagiarism Tool for Source Code
Project description
You can find the detailed documentation here: https://www.egr.msu.edu/coinlab/blankjul/pyplagiarism/
An example of using pyplagiarism is provided below. This uses directly the API. In the future, we are planning to provide a command line tool in addition.
from pyplagiarism import plagiarism a = """ def calculate(): x = 6 y = 5 return x + y """ b = """ def calculate(): return 5 + 6 """ c = """ def calculate(): x = 6 y = 5 return x + y """ data = {"a": a, "b": b, "c": c} plagiarism(data, visualize_as_html=False, diff_of_files=False)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyplagiarism-0.1.2.tar.gz
(10.5 kB
view hashes)