DEV Community

yogendra maarisetty
yogendra maarisetty

Posted on

How to add all language compilers in my django project on cloud platforms like heroku

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)