Hi,
Is it possible to write DLL's in Python for applications that only
provide C++ interfaces? Example: NotePad++ is extendible by writing C++
DLL's which can call the NotePad++ interfaces.
I wonder if those DLL's also can be written in Python, which in the end
calls the C++ interfaces of N
Diez B. Roggisch wrote:
Geert Vancompernolle schrieb:
Hi,
I have the following path construction:
./src/__init__.py
/main.py
/modules/__init__.py
/application.py
/ui/__init__.py
/mainwindow/__init__.py
/mainwindow.py
Now I want to call the
Hi,
I have the following path construction:
./src/__init__.py
/main.py
/modules/__init__.py
/application.py
/ui/__init__.py
/mainwindow/__init__.py
/mainwindow.py
Now I want to call the method 'MainWindow' in the module 'mainwindow',
from the mo
I know it's been a long while since this thread has been handled, but
maybe this is a "final" solution to your problem (if not yet resolved):
http://www.py2exe.org/index.cgi/SingleFileExecutable
Especially the last setup.py file results in only one exe which contains
*all* the necessary stuff