Tagged Questions

19
votes
3answers
3k views

Instantiating a python class in C#

I've written a class in python that I want to wrap into a .net assembly via IronPython and instantiate in a C# application. I've migrated the class to IronPython, created a library assembly and ...
0
votes
2answers
56 views

How can I call a python instance using php?

I have a PHP program, and a Python program. You can think that the Python program is like a robot or machine. Typically, it will use a database, do some analysis and return result for you. It is a ...
0
votes
1answer
75 views

Python Java Cross communication Servers

+-------------------+ +-------------------+ | Wowza | | Django | |-------------------| |-------------------| ...
0
votes
3answers
483 views

Why does the Python/C API crash on PyRun_SimpleFile?

I've been experimenting with embedding different scripting languages in a C++ application, currently I'm trying Stackless Python 3.1. I've tried several tutorials and examples, what few I can find, to ...