Skip to content Skip to sidebar Skip to footer

Checking Suds Version In Python

how to check the version of suds installed in python, i look over in the net but i cannot find one. i try this one. in running python manage.py shell >>> import suds >&

Solution 1:

>>>> import suds>>>> print suds.__version__
0.4.1

Tada.

Edit: A more generic question was asked about this, and here's a kind-of-hacky script that checks for common names for the version constant.

Post a Comment for "Checking Suds Version In Python"