Re: Where can I find libtiff binary for 64-bit windows - for use in conjunction with Python package libtiff

2019-09-06 Thread Dobedani
Thanks for the answer. That site provides wheels for installing the Python libtiff package - great if "pip install libtiff" does not work out well. Besides that package, you'll need to have a 64-bits DLL on your system for it to work. That's the DLL I'm looking for. --

Where can I find libtiff binary for 64-bit windows - for use in conjunction with Python package libtiff

2019-09-06 Thread Dobedani
Hi there! I'm using Python package libtiff on Windows (version 0.4.2) - see also https://github.com/pearu/pylibtiff. For this package to work well, it requires you to have a libtiff.dll in your PATH. For 32-bits I got my DLL here: http://gnuwin32.sourceforge.net/packages/tiff.htm (version

New to Jython - how to install setuptools?

2010-12-03 Thread Dobedani
Hi folks, I'm new to Jython - not to Python. The good thing about Python is that there are many packages available which can be installed easily by means of setuptools. Today I installed Jython, because I'm thinking of integrating some Python code into a web application which will be hosted on a

Invoking non-static methods of a non-Python object instance

2008-07-15 Thread Dobedani
without such extra extensions. I look forward to your ideas! Kind regards, Dobedani -- http://mail.python.org/mailman/listinfo/python-list

Plain old SAX and minidom useable? But how then?

2007-08-01 Thread Dobedani
even know how to use those. TIA Kind regards, Dobedani -- http://mail.python.org/mailman/listinfo/python-list

Re: Plain old SAX and minidom useable? But how then?

2007-08-01 Thread Dobedani
= doc.getElementsByTagName(Environment) for elem in elems: name = elem.getElementsByTagName(Name)[0]; if getText(name.childNodes) == workspace: ... with getText as defined on the webpage referenced above. Kind regards, Dobedani http://www.python.org/doc/2.4/lib/dom-example.html On Aug 1, 2