mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
20 lines
406 B
Python
20 lines
406 B
Python
print "\nTesting PyKDE module imports\n"
|
|
try:
|
|
import PyKDE4.pykdeconfig
|
|
except:
|
|
print "Can't find PyKDE4.pykdeconfig.py - please check installation"
|
|
raise
|
|
|
|
pykdecfg = PyKDE4.pykdeconfig.Configuration ()
|
|
|
|
print "Modules built:"
|
|
print " ",pykdecfg.pykde_modules
|
|
print
|
|
print "Importing:"
|
|
print
|
|
|
|
for mod in pykdecfg.pykde_modules.split():
|
|
print mod
|
|
exec ("import PyKDE4." + mod)
|
|
|
|
print
|