home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / share / k3d / scripts / count_plugins.py < prev    next >
Text File  |  2008-07-28  |  145b  |  9 lines

  1. #python
  2.  
  3. import k3d
  4.  
  5. factories = k3d.plugin.factory.lookup()
  6.  
  7. k3d.ui().message("There are " + str(len(factories)) + " K-3D plugins installed.")
  8.  
  9.