Skip to content
Advertisement

Syntax error calling Python from C with fork-execv

I want to call a Python script as a child process from a C program using fork and execv. I have tested it calling bin/ls and it works:

JavaScript

So I changed the C code to call the Create_Buffer() function in this Python file:

JavaScript

The Python script has two functions; I want to call Create_Buffer(), so I changed my C file to:

JavaScript

But I get a syntax error when I run it:

I am the parent

I am the child

File “string”, line 1

/usr/bin/python

SyntaxError: invalid syntax

Next I changed it slightly, but I got a different error (described below):

JavaScript

And this time it invoked the Python command line instead of calling the program:

I am the parent

I am the child

Python 3.8.0 (default, Feb 25 2021, 22:10:10)

[GCC 8.4.0] on linux

Type “help”, “copyright”, “credits” or “license” for more information.

[ Python command prompt ]

The errors seem to implicate the shebang line at the top of the Python file, but I get the same errors whether I use #!/usr/bin/python, #!/usr/bin/python3 or #!/usr/bin/env python3, or leave the shebang line out.

So my question is: how do I specify the arguments for fork-execv when I want to call a program in a Python .py file? I’m open to using any of the other exec* family, except that I want to use the absolute path, as above, rather than adding to Python PATH, so I don’t want to use exec calls with “p” in the name.

I have researched extensively but I haven’t found any examples that show the syntax to call a specific program within a Python file and pass arguments to the program. I have seen examples calling a Python file without specifying a program within the file and without passing arguments, but I need to call the function by name.

Compile the C program with:

JavaScript

I’m using Python 3.8 on Ubuntu 18.04.

Thanks for any help with this.

Advertisement

Answer

I think this is what you want:

JavaScript

The -m option tells it to load the NLTK_Python_Libs module. Then -c tells it to execute a function from that module. You can’t combine the script pathname with the function name to execute the way you did.

There’s no need to use /bin/bash at all. Just execute python directly.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement