i would like to pass values from python to a c++ program for an encryption from inside a python program and then return the value from there to the python program . how to do it?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Extending and Embedding the Python Interpreter

link|improve this answer
feedback

If you want to use some existing Unix-style command line utility that reads from stdin and writes to stdout, you can use subprocess.Popen by using Popen.communicate():

import subprocess

p = subprocess.Popen(["/your/app"], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
output = p.communicate(input)[0]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.