Skip to content

Jayakrishna112/PyCPPExecuter

Repository files navigation

PyCPPExecuter : An Python C++ Code Executer

PyCPPExecuter is a module used for Compiling and Executing the C/C++ code and also alows you to convert the code into the Assembly Code and to the Object File, also helps in checking the syntax of the the code. PyCPPExecuter is a robust for Executing the C/C++ code.

PyCPPExecuter is open source software relised by Jaya Krishna Marni

Full documentation and examples available at : https://jayakrishna112.github.io/docs.PyCPPExecuter/

Important links

Example Usage

>>>from PyCPPExecuter import CPPExecuter
>>>executer = CPPExecuter()
>>>code = """#include<iostream>
int main(){
    std::cout << "Hello World!";
    return 0;
}
"""
>>>executer.compile(code = code)
>>>executer.execute()

About

A Python module to compile and execcute C/C++ Code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages