I need to pass the argument with variable name from PHP to PYTHON.
here is my requirement in coding.
$output = shell_exec('python3 ActorArrayMatcher_FS2.py var1 = val1 & var2 = val2 & ... & varN = valN ');
print_r($output);
and how to receive in python
import sys
print(sys.argv)
Please share the knowledge. Thanks in advance.