I am running openssl command to create a self signed certificate inside Python script.
Facing Unexpected "(" syntax error.
import os
os.system('openssl req -x509 -newkey rsa:4096 -sha256 -days 7300 -nodes -keyout istio_gw.key -out istio_gw.crt -subj "/CN=csd.nokia.com/O=Nokia" -extensions san -config <( echo "[req]"; echo"distinguished_name=req";)')