Detect-It-Easy/db/Binary/source_text.python.1.sg
2026-05-25 21:03:46 +03:00

17 lines
No EOL
400 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("source", "Python");
function detect() {
var sText = Binary.getHeaderString();
if ((/import\s/.test(sText)) && (/class\s/.test(sText)) && (/self/.test(sText))) {
if (/\sdef\s/.test(sText)) {
bDetected = true;
}
}
sLang = "Python";
return result();
}