Metadata-Version: 2.1
Name: py-cpp-executor
Version: 0.3
Description-Content-Type: text/markdown

# Lightweight c++ executor in python

### Requires C++ compiler (g++ or other)

## Usage
```python
# PARAMS

# REQUIRED
# fullFileName str

# OPTIONALLY
# compiler str (default is g++)
# compilerParams str

import py_cpp_executor as executor

executor.execute("test.cpp")

executor.execute("test.c", compiler="gcc", compilerParams="-s -Og")
```
