diff options
author | David Robillard <d@drobilla.net> | 2008-07-30 21:16:51 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-30 21:16:51 +0000 |
commit | 2cd12ad217c63068c0e33cd70e80ee6344af3216 (patch) | |
tree | 03ce118eec13f707e888219f5b078ed896445f5f /swig/python/lv2_list.py | |
parent | 69557918d1492853483be5aa904652edf094384f (diff) | |
download | lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.tar.gz lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.tar.bz2 lilv-2cd12ad217c63068c0e33cd70e80ee6344af3216.zip |
Move stuff for various binding languages to own directories.
git-svn-id: http://svn.drobilla.net/lad/slv2@1315 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'swig/python/lv2_list.py')
-rwxr-xr-x | swig/python/lv2_list.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/swig/python/lv2_list.py b/swig/python/lv2_list.py new file mode 100755 index 0000000..685b62b --- /dev/null +++ b/swig/python/lv2_list.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +import slv2; + +w = slv2.World() +w.load_all() + +for p in w.get_all_plugins(): + print p.uri(), "-", p.name() |