🦾 codex_py2cpp 🤖
OpenAI Codex Python to C++ Code Generator
Your Python Code is too slow? 🐌
You want to speed it up but forgot how to code in C++? ⌨
Convert your Python script to C++ Code using OpenAI Codex.
How it works
Reads a Python file and creates an input prompt which is then fed to OpenAI Codex to generate corresponding C++ code. The generated
code is getting compiled using g++ and if compilation is successful the executable is saved.
To generate your own files you need to get access to the Codex API (https://openai.com/blog/openai-codex/).
Installation
git clone https://github.com/alxschwrz/codex_py2cpp.git
cd codex_py2cpp
pip3 install -r requirements.txt
Run example
Reads the file "simpleScript.py", and feeds the corresponding input prompt to OpenAI Codex. Compilable solutions
are stored in the form of .cpp and .exe files.
python3 python2cppconverter.py
If the generated C++ code got compiled, test it with