diff options
author | David Robillard <d@drobilla.net> | 2011-05-16 19:03:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-16 19:03:14 +0000 |
commit | 615fc67d16c642c2abb5114a1096db798cc6d759 (patch) | |
tree | d74723710bc1d74fa33ee78a03891c4ef7902b89 /bindings/python/lv2_list.py | |
parent | 0beb80fdfc298401b3d55a190984fda49142c330 (diff) | |
download | lilv-615fc67d16c642c2abb5114a1096db798cc6d759.tar.gz lilv-615fc67d16c642c2abb5114a1096db798cc6d759.tar.bz2 lilv-615fc67d16c642c2abb5114a1096db798cc6d759.zip |
Actually rename `swig' directory `bindings'...
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3268 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bindings/python/lv2_list.py')
-rwxr-xr-x | bindings/python/lv2_list.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bindings/python/lv2_list.py b/bindings/python/lv2_list.py new file mode 100755 index 0000000..babe1b4 --- /dev/null +++ b/bindings/python/lv2_list.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +import lilv + +world = lilv.World() +world.load_all() + +for i in world.get_all_plugins(): + print(i.get_uri()) |