Metadata-Version: 2.4
Name: pylumin
Version: 1.0
Summary: pylumin
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

Write C code right in Python.



2 functions included, no more needed:



```Python

import pylumin



pylumin.ide()

```

Open IDE with highlights



```Python
import pylumin

code = pylumin.ide()



pylumin.execute(code)
```

Auto execute after pressing Save \& Exit.



```Python
import pylumin

pylumin.execute('''

\#include <stdio.h>



int main() {

&#x20;   printf("Hello, World!\\n");

&#x20;   return 0;

}
```

In-line execute.

