Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
106 views

Linear algebra on iPhone (python/numpy?)

This semester, I'm implementing a compressed-sensing algorithm as an iPhone app. To do this, I'll need some good matrix/linear algebra libraries. I'm a little new to both iOS and Python, and am ...
4
votes
1answer
391 views

Embedding IronPython in a WinForms app and interrupting execution

BACKGROUND I've successfully embedded IronPython in my WinForm apps using techniques like the one described here: ...
3
votes
1answer
621 views

Multiple independent embedded Python Interpreters on multiple operating system threads invoked from C/C++ program

Embedding Python interpreter in a C/C++ application is well documented. What is the best approach to run multiple python interpreter on multiple operating system threads (i.e. one interpreter on one ...
2
votes
1answer
667 views

embed python in matlab mex file on os x

I'm trying to embed Python into a MATLAB mex function on OS X. I've seen references that this can be done (eg here) but I can't find any OS X specific information. So far I can successfully build an ...
2
votes
2answers
555 views

Minimal Python build for my application's scripting needs?

what are your advices on building a very minimalistic version of Python(2.x) for my application's scripting needs. My main motive here is to keep the foot print (both memory and disk wise) as low as ...
1
vote
0answers
42 views

Issue with SFCB, the python-binding layer and python providers in ESX 4.0

We are writing SFCB providers in python, Since SFCB talks to only C++ providers we need to have an intermediate layer(cmpi-bindings, a python extension module) which can talk to SFCB and start the ...
1
vote
1answer
138 views

Embedding python + numpy code into C++ dll callback

I am new of python embedding. I am trying to embed python + numpy code inside a C++ callback function (inside a dll) the problem i am facing is the following. if i have: Py_Initialize(); // some ...
1
vote
1answer
90 views

Looking for non-Boost::Python C++ Python embedding framework

I have a project of mine, written in C++, that has now progressed to a stage where I require an embedded programming language. I've chosen Python for several reasons, and have been playing around with ...
1
vote
1answer
142 views

Extending embedded Python in C++ - Design to interact with C++ instances

There are several packages out there that help in automating the task of writing bindings between C\C++ and other languages. In my case, I'd like to bind Python, some options for such packages are: ...
1
vote
1answer
338 views

Embedding python in C, undefined symbol: PyExc_ImportError

I am trying to write a plug-in for Audacious Media Player that loads a python module. The python embedding code is from the python-2.6 source(embed/Demo). This compiles with the command line, gcc -o ...
0
votes
1answer
53 views

embedding python error on initialization

when im running C code to call python functions, there's error on Py_Initialize() The error is ImportError: No module named site. Ive tried to put Py_SetProgramName(argv[0]) but it doesnt work. The ...
0
votes
1answer
146 views

embedding python

Im trying to call python functions from C code, and i followed a sample from here I also have the correct include file directries, library directries, and linked the python32.lib (im using python 32) ...
0
votes
1answer
95 views

Embedding Python into Qt Applications

I would like to use Python in my Qt Application. #project.pro #... LIBS += -L/path_to_python32/libs/ -lpython32 INCLUDEPATH += /path_to_python32/include #... Build Issue undefined reference to ...
0
votes
1answer
70 views

Python print output while embedding Python in C\C++

Where does Python print to, if the print statement is in a python function, called from C\C++ in an embedded Python configuration?
0
votes
1answer
102 views

Complex data structures while embedding\extending Python with C++

Python documentation gives a nice introduction to Extending and Embedding Python with C\C++. However, in many cases there's a need to transfer complex data structures between the languages. What ...
0
votes
0answers
72 views

Extending\Embedding Python with C\C++ vs. using a serialization framework

Two approaches of working with Python and with C\C++ simultaneously are: Extending and Embedding Python with C\C++ Using a serialization framework to transfer events and data structures What are ...
0
votes
1answer
185 views

Embedded Python loads module but does not load that module's internal import statements

At long last(!) I've compiled Boost::Python and have gotten my XCode project to import a local module. This module starts with the line from xml.dom import minidom, but when it executes, I'm given ...
0
votes
1answer
187 views

pywin32 captive installation (avoid py*.dll getting installed in system32 directory)

I have python as an embedded scripting environment in my application. I supply the python bits (python26.dll, DLLs & Lib folders) with my application. All this to avoid asking users to install ...
0
votes
2answers
79 views

How to resolve bindings during execution with embedded Python?

I'm embedding Python into a C++ application. I plan to use PyEval_EvalCode to execute Python code, but instead of providing the locals and globals as dictionaries, I'm looking for a way to have my ...
0
votes
1answer
103 views

Looking for a smarter way to convert a Python list to a GList?

I'm really new to C -> Python interaction and am currently writing a small app in C which will read a file (using Python to parse it) and then using the parsed information to execute small Python ...
0
votes
2answers
125 views

Limiting the features of an embedded python instance

Is there a way to limit the abilities of python scripts running under an embedded interpretor? Specifically I wish to prevent the scripts from doing things like the following: Importing python ...