wand.version — Version data

You can find the current version in the command line interface:

$ python -m wand.version
0.2.4
$ python -m wand.version --verbose
Wand 0.2.4
ImageMagick 6.7.7-6 2012-06-03 Q16 http://www.imagemagick.org

New in version 0.2.0: The command line interface.

New in version 0.2.4: The --verbose/-v option which also prints ImageMagick library version for CLI.

wand.version.VERSION = '0.2.4'

(basestring) The version string e.g. '0.1.2'.

Changed in version 0.1.9: Becomes string. (It was tuple before.)

wand.version.VERSION_INFO = (0, 2, 4)

(tuple) The version tuple e.g. (0, 1, 2).

Changed in version 0.1.9: Becomes tuple. (It was string before.)

wand.version.MAGICK_VERSION = None

(basestring) The version string of the linked ImageMagick library. The exactly same string to the result of GetMagickVersion() function.

Example:

'ImageMagick 6.7.7-6 2012-06-03 Q16 http://www.imagemagick.org'

New in version 0.2.1.

wand.version.MAGICK_VERSION_INFO = None

(tuple) The version tuple e.g. (6, 7, 7, 6) of MAGICK_VERSION.

New in version 0.2.1.

wand.version.MAGICK_VERSION_NUMBER = None

(numbers.Integral) The version number of the linked ImageMagick library.

New in version 0.2.1.

wand.version.MAGICK_RELEASE_DATE = None

(basestring) The date string e.g. '2012-06-03' of MAGICK_RELEASE_DATE_STRING. This value is the exactly same string to the result of GetMagickReleaseDate() function.

New in version 0.2.1.

wand.version.MAGICK_RELEASE_DATE_STRING = None

(datetime.date) The release date of the linked ImageMagick library. The same to the result of GetMagickReleaseDate() function.

New in version 0.2.1.

Related Topics

This Page