I have built an online compiler web application using django which has to compile&run languages like - C - C++ - Java - Python - C# The command I use in my project are.
subprocess.Popen("Javac filename.java",stdin = PIPE , stdout =PIPE, shell=true)
subprocess.Popen("gcc filename.c",stdin = PIPE , stdout =PIPE, shell=true)
…
Top comments (0)