pycode_similar
pycode_similar copied to clipboard
A simple plagiarism detection tool for python code
Imported pycode_similar as python library: `import pycode_similar ` Have two files with python source code (_'t1.py'_ and _'t2.py'_ respectively): > from math import sqrt > x = float(input("x=")) > y...
When I input two files into pycode-similar, I got "0.6: ref a, candidate binary_search" for function comparison. From my understanding, I think 18 means the line that starts to be...
How can I use pycode_similar.py in pycharm ? I want to see the results in the pycharm terminal, how should I do it ?
what algorithm do you use? and and may I know the usefulness of the class FuncNodeCollector and FuncInfo(object), and how thats work? thnks AYH
Hi, I ran the following code in my jupyter-notebook. data[0] contains a string which is the path to a .py file. `import pycode_similar pycode_similar.detect([data[0], data[0]],diff_method=UnifiedDiff)` but I receive this error:...