Subject Re: [firebird-python] Kinterbasdb doesn't work after creation of exe with Py2exe/PyInstaller
Author Alexandr N Zamaraev
Jorge wrote:
> until the call the kinderbasdb module where I get the message:
> No Module named typeconv_24plus
> is there a way to solve this or is a problem in kinterbasdb?
Add module typeconv_24plus to included modiles.
My includes for exampl:
[code]
# -*- coding: utf-8 -*-
#file: setup.py
...

def build():
...
includes = [
'kinterbasdb.typeconv_24plus',
'encodings', 'encodings.latin_1',
'encodings.cp1251', 'encodings.cp866', 'encodings.koi8_r',
'encodings.utf_8', 'encodings.utf_16',
'encodings.utf_16_be', 'encodings.utf_16_le',
]
...
setup(
options=dict(py2exe=dict(
includes = includes,
...
)),
...
)
[/code]