This file is indexed.

/usr/share/pyshared/lilv.py is in python-lilv 0.5.0+dfsg0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.4
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.



from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_lilv', [dirname(__file__)])
        except ImportError:
            import _lilv
            return _lilv
        if fp is not None:
            try:
                _mod = imp.load_module('_lilv', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _lilv = swig_import_helper()
    del swig_import_helper
else:
    import _lilv
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0


LILV_NS_DOAP = _lilv.LILV_NS_DOAP
LILV_NS_FOAF = _lilv.LILV_NS_FOAF
LILV_NS_LILV = _lilv.LILV_NS_LILV
LILV_NS_LV2 = _lilv.LILV_NS_LV2
LILV_NS_OWL = _lilv.LILV_NS_OWL
LILV_NS_RDF = _lilv.LILV_NS_RDF
LILV_NS_RDFS = _lilv.LILV_NS_RDFS
LILV_NS_XSD = _lilv.LILV_NS_XSD
LILV_URI_AUDIO_PORT = _lilv.LILV_URI_AUDIO_PORT
LILV_URI_CONTROL_PORT = _lilv.LILV_URI_CONTROL_PORT
LILV_URI_EVENT_PORT = _lilv.LILV_URI_EVENT_PORT
LILV_URI_INPUT_PORT = _lilv.LILV_URI_INPUT_PORT
LILV_URI_MIDI_EVENT = _lilv.LILV_URI_MIDI_EVENT
LILV_URI_OUTPUT_PORT = _lilv.LILV_URI_OUTPUT_PORT
LILV_URI_PORT = _lilv.LILV_URI_PORT

def lilv_uri_to_path(*args):
  """lilv_uri_to_path(char uri) -> char"""
  return _lilv.lilv_uri_to_path(*args)

def lilv_new_uri(*args):
  """lilv_new_uri(LilvWorld world, char uri) -> LilvNode"""
  return _lilv.lilv_new_uri(*args)

def lilv_new_string(*args):
  """lilv_new_string(LilvWorld world, char str) -> LilvNode"""
  return _lilv.lilv_new_string(*args)

def lilv_new_int(*args):
  """lilv_new_int(LilvWorld world, int val) -> LilvNode"""
  return _lilv.lilv_new_int(*args)

def lilv_new_float(*args):
  """lilv_new_float(LilvWorld world, float val) -> LilvNode"""
  return _lilv.lilv_new_float(*args)

def lilv_new_bool(*args):
  """lilv_new_bool(LilvWorld world, bool val) -> LilvNode"""
  return _lilv.lilv_new_bool(*args)

def lilv_node_free(*args):
  """lilv_node_free(LilvNode val)"""
  return _lilv.lilv_node_free(*args)

def lilv_node_duplicate(*args):
  """lilv_node_duplicate(LilvNode val) -> LilvNode"""
  return _lilv.lilv_node_duplicate(*args)

def lilv_node_equals(*args):
  """lilv_node_equals(LilvNode value, LilvNode other) -> bool"""
  return _lilv.lilv_node_equals(*args)

def lilv_node_get_turtle_token(*args):
  """lilv_node_get_turtle_token(LilvNode value) -> char"""
  return _lilv.lilv_node_get_turtle_token(*args)

def lilv_node_is_uri(*args):
  """lilv_node_is_uri(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_uri(*args)

def lilv_node_as_uri(*args):
  """lilv_node_as_uri(LilvNode value) -> char"""
  return _lilv.lilv_node_as_uri(*args)

def lilv_node_is_blank(*args):
  """lilv_node_is_blank(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_blank(*args)

def lilv_node_as_blank(*args):
  """lilv_node_as_blank(LilvNode value) -> char"""
  return _lilv.lilv_node_as_blank(*args)

def lilv_node_is_literal(*args):
  """lilv_node_is_literal(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_literal(*args)

def lilv_node_is_string(*args):
  """lilv_node_is_string(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_string(*args)

def lilv_node_as_string(*args):
  """lilv_node_as_string(LilvNode value) -> char"""
  return _lilv.lilv_node_as_string(*args)

def lilv_node_is_float(*args):
  """lilv_node_is_float(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_float(*args)

def lilv_node_as_float(*args):
  """lilv_node_as_float(LilvNode value) -> float"""
  return _lilv.lilv_node_as_float(*args)

def lilv_node_is_int(*args):
  """lilv_node_is_int(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_int(*args)

def lilv_node_as_int(*args):
  """lilv_node_as_int(LilvNode value) -> int"""
  return _lilv.lilv_node_as_int(*args)

def lilv_node_is_bool(*args):
  """lilv_node_is_bool(LilvNode value) -> bool"""
  return _lilv.lilv_node_is_bool(*args)

def lilv_node_as_bool(*args):
  """lilv_node_as_bool(LilvNode value) -> bool"""
  return _lilv.lilv_node_as_bool(*args)

def lilv_plugin_classes_free(*args):
  """lilv_plugin_classes_free(LilvPluginClasses collection)"""
  return _lilv.lilv_plugin_classes_free(*args)

def lilv_plugin_classes_size(*args):
  """lilv_plugin_classes_size(LilvPluginClasses collection) -> unsigned int"""
  return _lilv.lilv_plugin_classes_size(*args)

def lilv_plugin_classes_begin(*args):
  """lilv_plugin_classes_begin(LilvPluginClasses collection) -> LilvIter"""
  return _lilv.lilv_plugin_classes_begin(*args)

def lilv_plugin_classes_get(*args):
  """lilv_plugin_classes_get(LilvPluginClasses collection, LilvIter i) -> LilvPluginClass"""
  return _lilv.lilv_plugin_classes_get(*args)

def lilv_plugin_classes_next(*args):
  """lilv_plugin_classes_next(LilvPluginClasses collection, LilvIter i) -> LilvIter"""
  return _lilv.lilv_plugin_classes_next(*args)

def lilv_plugin_classes_is_end(*args):
  """lilv_plugin_classes_is_end(LilvPluginClasses collection, LilvIter i) -> bool"""
  return _lilv.lilv_plugin_classes_is_end(*args)

def lilv_plugin_classes_get_by_uri(*args):
  """lilv_plugin_classes_get_by_uri(LilvPluginClasses classes, LilvNode uri) -> LilvPluginClass"""
  return _lilv.lilv_plugin_classes_get_by_uri(*args)

def lilv_scale_points_free(*args):
  """lilv_scale_points_free(LilvScalePoints collection)"""
  return _lilv.lilv_scale_points_free(*args)

def lilv_scale_points_size(*args):
  """lilv_scale_points_size(LilvScalePoints collection) -> unsigned int"""
  return _lilv.lilv_scale_points_size(*args)

def lilv_scale_points_begin(*args):
  """lilv_scale_points_begin(LilvScalePoints collection) -> LilvIter"""
  return _lilv.lilv_scale_points_begin(*args)

def lilv_scale_points_get(*args):
  """lilv_scale_points_get(LilvScalePoints collection, LilvIter i) -> LilvScalePoint"""
  return _lilv.lilv_scale_points_get(*args)

def lilv_scale_points_next(*args):
  """lilv_scale_points_next(LilvScalePoints collection, LilvIter i) -> LilvIter"""
  return _lilv.lilv_scale_points_next(*args)

def lilv_scale_points_is_end(*args):
  """lilv_scale_points_is_end(LilvScalePoints collection, LilvIter i) -> bool"""
  return _lilv.lilv_scale_points_is_end(*args)

def lilv_uis_free(*args):
  """lilv_uis_free(LilvUIs collection)"""
  return _lilv.lilv_uis_free(*args)

def lilv_uis_size(*args):
  """lilv_uis_size(LilvUIs collection) -> unsigned int"""
  return _lilv.lilv_uis_size(*args)

def lilv_uis_begin(*args):
  """lilv_uis_begin(LilvUIs collection) -> LilvIter"""
  return _lilv.lilv_uis_begin(*args)

def lilv_uis_get(*args):
  """lilv_uis_get(LilvUIs collection, LilvIter i) -> LilvUI"""
  return _lilv.lilv_uis_get(*args)

def lilv_uis_next(*args):
  """lilv_uis_next(LilvUIs collection, LilvIter i) -> LilvIter"""
  return _lilv.lilv_uis_next(*args)

def lilv_uis_is_end(*args):
  """lilv_uis_is_end(LilvUIs collection, LilvIter i) -> bool"""
  return _lilv.lilv_uis_is_end(*args)

def lilv_uis_get_by_uri(*args):
  """lilv_uis_get_by_uri(LilvUIs uis, LilvNode uri) -> LilvUI"""
  return _lilv.lilv_uis_get_by_uri(*args)

def lilv_nodes_free(*args):
  """lilv_nodes_free(LilvNodes collection)"""
  return _lilv.lilv_nodes_free(*args)

def lilv_nodes_size(*args):
  """lilv_nodes_size(LilvNodes collection) -> unsigned int"""
  return _lilv.lilv_nodes_size(*args)

def lilv_nodes_begin(*args):
  """lilv_nodes_begin(LilvNodes collection) -> LilvIter"""
  return _lilv.lilv_nodes_begin(*args)

def lilv_nodes_get(*args):
  """lilv_nodes_get(LilvNodes collection, LilvIter i) -> LilvNode"""
  return _lilv.lilv_nodes_get(*args)

def lilv_nodes_next(*args):
  """lilv_nodes_next(LilvNodes collection, LilvIter i) -> LilvIter"""
  return _lilv.lilv_nodes_next(*args)

def lilv_nodes_is_end(*args):
  """lilv_nodes_is_end(LilvNodes collection, LilvIter i) -> bool"""
  return _lilv.lilv_nodes_is_end(*args)

def lilv_nodes_get_first(*args):
  """lilv_nodes_get_first(LilvNodes collection) -> LilvNode"""
  return _lilv.lilv_nodes_get_first(*args)

def lilv_nodes_contains(*args):
  """lilv_nodes_contains(LilvNodes values, LilvNode value) -> bool"""
  return _lilv.lilv_nodes_contains(*args)

def lilv_plugins_size(*args):
  """lilv_plugins_size(LilvPlugins collection) -> unsigned int"""
  return _lilv.lilv_plugins_size(*args)

def lilv_plugins_begin(*args):
  """lilv_plugins_begin(LilvPlugins collection) -> LilvIter"""
  return _lilv.lilv_plugins_begin(*args)

def lilv_plugins_get(*args):
  """lilv_plugins_get(LilvPlugins collection, LilvIter i) -> LilvPlugin"""
  return _lilv.lilv_plugins_get(*args)

def lilv_plugins_next(*args):
  """lilv_plugins_next(LilvPlugins collection, LilvIter i) -> LilvIter"""
  return _lilv.lilv_plugins_next(*args)

def lilv_plugins_is_end(*args):
  """lilv_plugins_is_end(LilvPlugins collection, LilvIter i) -> bool"""
  return _lilv.lilv_plugins_is_end(*args)

def lilv_plugins_get_by_uri(*args):
  """lilv_plugins_get_by_uri(LilvPlugins plugins, LilvNode uri) -> LilvPlugin"""
  return _lilv.lilv_plugins_get_by_uri(*args)

def lilv_world_new():
  """lilv_world_new() -> LilvWorld"""
  return _lilv.lilv_world_new()
LILV_OPTION_FILTER_LANG = _lilv.LILV_OPTION_FILTER_LANG
LILV_OPTION_DYN_MANIFEST = _lilv.LILV_OPTION_DYN_MANIFEST

def lilv_world_set_option(*args):
  """lilv_world_set_option(LilvWorld world, char uri, LilvNode value)"""
  return _lilv.lilv_world_set_option(*args)

def lilv_world_free(*args):
  """lilv_world_free(LilvWorld world)"""
  return _lilv.lilv_world_free(*args)

def lilv_world_load_all(*args):
  """lilv_world_load_all(LilvWorld world)"""
  return _lilv.lilv_world_load_all(*args)

def lilv_world_load_bundle(*args):
  """lilv_world_load_bundle(LilvWorld world, LilvNode bundle_uri)"""
  return _lilv.lilv_world_load_bundle(*args)

def lilv_world_get_plugin_class(*args):
  """lilv_world_get_plugin_class(LilvWorld world) -> LilvPluginClass"""
  return _lilv.lilv_world_get_plugin_class(*args)

def lilv_world_get_plugin_classes(*args):
  """lilv_world_get_plugin_classes(LilvWorld world) -> LilvPluginClasses"""
  return _lilv.lilv_world_get_plugin_classes(*args)

def lilv_world_get_all_plugins(*args):
  """lilv_world_get_all_plugins(LilvWorld world) -> LilvPlugins"""
  return _lilv.lilv_world_get_all_plugins(*args)

def lilv_world_find_nodes(*args):
  """
    lilv_world_find_nodes(LilvWorld world, LilvNode subject, LilvNode predicate, 
        LilvNode object) -> LilvNodes
    """
  return _lilv.lilv_world_find_nodes(*args)

def lilv_plugin_verify(*args):
  """lilv_plugin_verify(LilvPlugin plugin) -> bool"""
  return _lilv.lilv_plugin_verify(*args)

def lilv_plugin_get_uri(*args):
  """lilv_plugin_get_uri(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_uri(*args)

def lilv_plugin_get_bundle_uri(*args):
  """lilv_plugin_get_bundle_uri(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_bundle_uri(*args)

def lilv_plugin_get_data_uris(*args):
  """lilv_plugin_get_data_uris(LilvPlugin plugin) -> LilvNodes"""
  return _lilv.lilv_plugin_get_data_uris(*args)

def lilv_plugin_get_library_uri(*args):
  """lilv_plugin_get_library_uri(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_library_uri(*args)

def lilv_plugin_get_name(*args):
  """lilv_plugin_get_name(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_name(*args)

def lilv_plugin_get_class(*args):
  """lilv_plugin_get_class(LilvPlugin plugin) -> LilvPluginClass"""
  return _lilv.lilv_plugin_get_class(*args)

def lilv_plugin_get_value(*args):
  """lilv_plugin_get_value(LilvPlugin p, LilvNode predicate) -> LilvNodes"""
  return _lilv.lilv_plugin_get_value(*args)

def lilv_plugin_has_feature(*args):
  """lilv_plugin_has_feature(LilvPlugin p, LilvNode feature_uri) -> bool"""
  return _lilv.lilv_plugin_has_feature(*args)

def lilv_plugin_get_supported_features(*args):
  """lilv_plugin_get_supported_features(LilvPlugin p) -> LilvNodes"""
  return _lilv.lilv_plugin_get_supported_features(*args)

def lilv_plugin_get_required_features(*args):
  """lilv_plugin_get_required_features(LilvPlugin p) -> LilvNodes"""
  return _lilv.lilv_plugin_get_required_features(*args)

def lilv_plugin_get_optional_features(*args):
  """lilv_plugin_get_optional_features(LilvPlugin p) -> LilvNodes"""
  return _lilv.lilv_plugin_get_optional_features(*args)

def lilv_plugin_get_num_ports(*args):
  """lilv_plugin_get_num_ports(LilvPlugin p) -> uint32_t"""
  return _lilv.lilv_plugin_get_num_ports(*args)

def lilv_plugin_get_port_ranges_float(*args):
  """lilv_plugin_get_port_ranges_float(LilvPlugin p, float min_values, float max_values, float def_values)"""
  return _lilv.lilv_plugin_get_port_ranges_float(*args)

def lilv_plugin_get_num_ports_of_class(*args):
  """lilv_plugin_get_num_ports_of_class(LilvPlugin p, LilvNode class_1, v(...) *args) -> uint32_t"""
  return _lilv.lilv_plugin_get_num_ports_of_class(*args)

def lilv_plugin_has_latency(*args):
  """lilv_plugin_has_latency(LilvPlugin p) -> bool"""
  return _lilv.lilv_plugin_has_latency(*args)

def lilv_plugin_get_latency_port_index(*args):
  """lilv_plugin_get_latency_port_index(LilvPlugin p) -> uint32_t"""
  return _lilv.lilv_plugin_get_latency_port_index(*args)

def lilv_plugin_get_port_by_index(*args):
  """lilv_plugin_get_port_by_index(LilvPlugin plugin, uint32_t index) -> LilvPort"""
  return _lilv.lilv_plugin_get_port_by_index(*args)

def lilv_plugin_get_port_by_symbol(*args):
  """lilv_plugin_get_port_by_symbol(LilvPlugin plugin, LilvNode symbol) -> LilvPort"""
  return _lilv.lilv_plugin_get_port_by_symbol(*args)

def lilv_plugin_get_author_name(*args):
  """lilv_plugin_get_author_name(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_author_name(*args)

def lilv_plugin_get_author_email(*args):
  """lilv_plugin_get_author_email(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_author_email(*args)

def lilv_plugin_get_author_homepage(*args):
  """lilv_plugin_get_author_homepage(LilvPlugin plugin) -> LilvNode"""
  return _lilv.lilv_plugin_get_author_homepage(*args)

def lilv_plugin_is_replaced(*args):
  """lilv_plugin_is_replaced(LilvPlugin plugin) -> bool"""
  return _lilv.lilv_plugin_is_replaced(*args)

def lilv_plugin_write_description(*args):
  """
    lilv_plugin_write_description(LilvWorld world, LilvPlugin plugin, LilvNode base_uri, 
        FILE plugin_file)
    """
  return _lilv.lilv_plugin_write_description(*args)

def lilv_plugin_write_manifest_entry(*args):
  """
    lilv_plugin_write_manifest_entry(LilvWorld world, LilvPlugin plugin, LilvNode base_uri, 
        FILE manifest_file, char plugin_file_path)
    """
  return _lilv.lilv_plugin_write_manifest_entry(*args)

def lilv_port_get_value(*args):
  """lilv_port_get_value(LilvPlugin plugin, LilvPort port, LilvNode predicate) -> LilvNodes"""
  return _lilv.lilv_port_get_value(*args)

def lilv_port_get_properties(*args):
  """lilv_port_get_properties(LilvPlugin plugin, LilvPort port) -> LilvNodes"""
  return _lilv.lilv_port_get_properties(*args)

def lilv_port_has_property(*args):
  """lilv_port_has_property(LilvPlugin p, LilvPort port, LilvNode property_uri) -> bool"""
  return _lilv.lilv_port_has_property(*args)

def lilv_port_supports_event(*args):
  """lilv_port_supports_event(LilvPlugin p, LilvPort port, LilvNode event_uri) -> bool"""
  return _lilv.lilv_port_supports_event(*args)

def lilv_port_get_symbol(*args):
  """lilv_port_get_symbol(LilvPlugin plugin, LilvPort port) -> LilvNode"""
  return _lilv.lilv_port_get_symbol(*args)

def lilv_port_get_name(*args):
  """lilv_port_get_name(LilvPlugin plugin, LilvPort port) -> LilvNode"""
  return _lilv.lilv_port_get_name(*args)

def lilv_port_get_classes(*args):
  """lilv_port_get_classes(LilvPlugin plugin, LilvPort port) -> LilvNodes"""
  return _lilv.lilv_port_get_classes(*args)

def lilv_port_is_a(*args):
  """lilv_port_is_a(LilvPlugin plugin, LilvPort port, LilvNode port_class) -> bool"""
  return _lilv.lilv_port_is_a(*args)

def lilv_port_get_range(*args):
  """
    lilv_port_get_range(LilvPlugin plugin, LilvPort port, LilvNode deflt, LilvNode min, 
        LilvNode max)
    """
  return _lilv.lilv_port_get_range(*args)

def lilv_port_get_scale_points(*args):
  """lilv_port_get_scale_points(LilvPlugin plugin, LilvPort port) -> LilvScalePoints"""
  return _lilv.lilv_port_get_scale_points(*args)

def lilv_scale_point_get_label(*args):
  """lilv_scale_point_get_label(LilvScalePoint point) -> LilvNode"""
  return _lilv.lilv_scale_point_get_label(*args)

def lilv_scale_point_get_value(*args):
  """lilv_scale_point_get_value(LilvScalePoint point) -> LilvNode"""
  return _lilv.lilv_scale_point_get_value(*args)

def lilv_plugin_class_get_parent_uri(*args):
  """lilv_plugin_class_get_parent_uri(LilvPluginClass plugin_class) -> LilvNode"""
  return _lilv.lilv_plugin_class_get_parent_uri(*args)

def lilv_plugin_class_get_uri(*args):
  """lilv_plugin_class_get_uri(LilvPluginClass plugin_class) -> LilvNode"""
  return _lilv.lilv_plugin_class_get_uri(*args)

def lilv_plugin_class_get_label(*args):
  """lilv_plugin_class_get_label(LilvPluginClass plugin_class) -> LilvNode"""
  return _lilv.lilv_plugin_class_get_label(*args)

def lilv_plugin_class_get_children(*args):
  """lilv_plugin_class_get_children(LilvPluginClass plugin_class) -> LilvPluginClasses"""
  return _lilv.lilv_plugin_class_get_children(*args)
class LilvInstanceImpl(_object):
    """Proxy of C++ LilvInstanceImpl class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, LilvInstanceImpl, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, LilvInstanceImpl, name)
    __repr__ = _swig_repr
    __swig_setmethods__["lv2_descriptor"] = _lilv.LilvInstanceImpl_lv2_descriptor_set
    __swig_getmethods__["lv2_descriptor"] = _lilv.LilvInstanceImpl_lv2_descriptor_get
    if _newclass:lv2_descriptor = _swig_property(_lilv.LilvInstanceImpl_lv2_descriptor_get, _lilv.LilvInstanceImpl_lv2_descriptor_set)
    __swig_setmethods__["lv2_handle"] = _lilv.LilvInstanceImpl_lv2_handle_set
    __swig_getmethods__["lv2_handle"] = _lilv.LilvInstanceImpl_lv2_handle_get
    if _newclass:lv2_handle = _swig_property(_lilv.LilvInstanceImpl_lv2_handle_get, _lilv.LilvInstanceImpl_lv2_handle_set)
    __swig_setmethods__["pimpl"] = _lilv.LilvInstanceImpl_pimpl_set
    __swig_getmethods__["pimpl"] = _lilv.LilvInstanceImpl_pimpl_get
    if _newclass:pimpl = _swig_property(_lilv.LilvInstanceImpl_pimpl_get, _lilv.LilvInstanceImpl_pimpl_set)
    def __init__(self): 
        """__init__(self) -> LilvInstanceImpl"""
        this = _lilv.new_LilvInstanceImpl()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _lilv.delete_LilvInstanceImpl
    __del__ = lambda self : None;
LilvInstanceImpl_swigregister = _lilv.LilvInstanceImpl_swigregister
LilvInstanceImpl_swigregister(LilvInstanceImpl)


def lilv_plugin_instantiate(*args):
  """lilv_plugin_instantiate(LilvPlugin plugin, double sample_rate, LV2_Feature features) -> LilvInstance"""
  return _lilv.lilv_plugin_instantiate(*args)

def lilv_instance_free(*args):
  """lilv_instance_free(LilvInstance instance)"""
  return _lilv.lilv_instance_free(*args)

def lilv_instance_get_uri(*args):
  """lilv_instance_get_uri(LilvInstance instance) -> char"""
  return _lilv.lilv_instance_get_uri(*args)

def lilv_instance_connect_port(*args):
  """lilv_instance_connect_port(LilvInstance instance, uint32_t port_index, void data_location)"""
  return _lilv.lilv_instance_connect_port(*args)

def lilv_instance_activate(*args):
  """lilv_instance_activate(LilvInstance instance)"""
  return _lilv.lilv_instance_activate(*args)

def lilv_instance_run(*args):
  """lilv_instance_run(LilvInstance instance, uint32_t sample_count)"""
  return _lilv.lilv_instance_run(*args)

def lilv_instance_deactivate(*args):
  """lilv_instance_deactivate(LilvInstance instance)"""
  return _lilv.lilv_instance_deactivate(*args)

def lilv_instance_get_extension_data(*args):
  """lilv_instance_get_extension_data(LilvInstance instance, char uri) -> void"""
  return _lilv.lilv_instance_get_extension_data(*args)

def lilv_instance_get_descriptor(*args):
  """lilv_instance_get_descriptor(LilvInstance instance) -> LV2_Descriptor"""
  return _lilv.lilv_instance_get_descriptor(*args)

def lilv_instance_get_handle(*args):
  """lilv_instance_get_handle(LilvInstance instance) -> LV2_Handle"""
  return _lilv.lilv_instance_get_handle(*args)

def lilv_plugin_get_uis(*args):
  """lilv_plugin_get_uis(LilvPlugin plugin) -> LilvUIs"""
  return _lilv.lilv_plugin_get_uis(*args)

def lilv_ui_get_uri(*args):
  """lilv_ui_get_uri(LilvUI ui) -> LilvNode"""
  return _lilv.lilv_ui_get_uri(*args)

def lilv_ui_get_classes(*args):
  """lilv_ui_get_classes(LilvUI ui) -> LilvNodes"""
  return _lilv.lilv_ui_get_classes(*args)

def lilv_ui_is_a(*args):
  """lilv_ui_is_a(LilvUI ui, LilvNode class_uri) -> bool"""
  return _lilv.lilv_ui_is_a(*args)

def lilv_ui_is_supported(*args):
  """
    lilv_ui_is_supported(LilvUI ui, LilvUISupportedFunc supported_func, LilvNode container_type, 
        LilvNode ui_type) -> unsigned int
    """
  return _lilv.lilv_ui_is_supported(*args)

def lilv_ui_get_bundle_uri(*args):
  """lilv_ui_get_bundle_uri(LilvUI ui) -> LilvNode"""
  return _lilv.lilv_ui_get_bundle_uri(*args)

def lilv_ui_get_binary_uri(*args):
  """lilv_ui_get_binary_uri(LilvUI ui) -> LilvNode"""
  return _lilv.lilv_ui_get_binary_uri(*args)

def uri_to_path(*args):
  """uri_to_path(char uri) -> char"""
  return _lilv.uri_to_path(*args)
class Node(_object):
    """Proxy of C++ Lilv::Node class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Node, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Node, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(self, LilvNode node) -> Node
        __init__(self, Node copy) -> Node
        """
        this = _lilv.new_Node(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _lilv.delete_Node
    __del__ = lambda self : None;
    def equals(self, *args):
        """equals(self, Node other) -> bool"""
        return _lilv.Node_equals(self, *args)

    def __eq__(self, *args):
        """__eq__(self, Node other) -> bool"""
        return _lilv.Node___eq__(self, *args)

    def get_turtle_token(self):
        """get_turtle_token(self) -> char"""
        return _lilv.Node_get_turtle_token(self)

    def is_uri(self):
        """is_uri(self) -> bool"""
        return _lilv.Node_is_uri(self)

    def as_uri(self):
        """as_uri(self) -> char"""
        return _lilv.Node_as_uri(self)

    def is_blank(self):
        """is_blank(self) -> bool"""
        return _lilv.Node_is_blank(self)

    def as_blank(self):
        """as_blank(self) -> char"""
        return _lilv.Node_as_blank(self)

    def is_literal(self):
        """is_literal(self) -> bool"""
        return _lilv.Node_is_literal(self)

    def is_string(self):
        """is_string(self) -> bool"""
        return _lilv.Node_is_string(self)

    def as_string(self):
        """as_string(self) -> char"""
        return _lilv.Node_as_string(self)

    def is_float(self):
        """is_float(self) -> bool"""
        return _lilv.Node_is_float(self)

    def as_float(self):
        """as_float(self) -> float"""
        return _lilv.Node_as_float(self)

    def is_int(self):
        """is_int(self) -> bool"""
        return _lilv.Node_is_int(self)

    def as_int(self):
        """as_int(self) -> int"""
        return _lilv.Node_as_int(self)

    def is_bool(self):
        """is_bool(self) -> bool"""
        return _lilv.Node_is_bool(self)

    def as_bool(self):
        """as_bool(self) -> bool"""
        return _lilv.Node_as_bool(self)

    __swig_setmethods__["me"] = _lilv.Node_me_set
    __swig_getmethods__["me"] = _lilv.Node_me_get
    if _newclass:me = _swig_property(_lilv.Node_me_get, _lilv.Node_me_set)
    def __str__(self):
    	return self.get_turtle_token()

Node_swigregister = _lilv.Node_swigregister
Node_swigregister(Node)

class ScalePoint(_object):
    """Proxy of C++ Lilv::ScalePoint class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, ScalePoint, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, ScalePoint, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvScalePoint c_obj) -> ScalePoint"""
        this = _lilv.new_ScalePoint(*args)
        try: self.this.append(this)
        except: self.this = this
    def get_label(self):
        """get_label(self) -> LilvNode"""
        return _lilv.ScalePoint_get_label(self)

    def get_value(self):
        """get_value(self) -> LilvNode"""
        return _lilv.ScalePoint_get_value(self)

    __swig_setmethods__["me"] = _lilv.ScalePoint_me_set
    __swig_getmethods__["me"] = _lilv.ScalePoint_me_get
    if _newclass:me = _swig_property(_lilv.ScalePoint_me_get, _lilv.ScalePoint_me_set)
    __swig_destroy__ = _lilv.delete_ScalePoint
    __del__ = lambda self : None;
ScalePoint_swigregister = _lilv.ScalePoint_swigregister
ScalePoint_swigregister(ScalePoint)

class PluginClass(_object):
    """Proxy of C++ Lilv::PluginClass class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, PluginClass, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, PluginClass, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvPluginClass c_obj) -> PluginClass"""
        this = _lilv.new_PluginClass(*args)
        try: self.this.append(this)
        except: self.this = this
    def get_parent_uri(self):
        """get_parent_uri(self) -> Node"""
        return _lilv.PluginClass_get_parent_uri(self)

    def get_uri(self):
        """get_uri(self) -> Node"""
        return _lilv.PluginClass_get_uri(self)

    def get_label(self):
        """get_label(self) -> Node"""
        return _lilv.PluginClass_get_label(self)

    def get_children(self):
        """get_children(self) -> LilvPluginClasses"""
        return _lilv.PluginClass_get_children(self)

    __swig_setmethods__["me"] = _lilv.PluginClass_me_set
    __swig_getmethods__["me"] = _lilv.PluginClass_me_get
    if _newclass:me = _swig_property(_lilv.PluginClass_me_get, _lilv.PluginClass_me_set)
    __swig_destroy__ = _lilv.delete_PluginClass
    __del__ = lambda self : None;
PluginClass_swigregister = _lilv.PluginClass_swigregister
PluginClass_swigregister(PluginClass)

class PluginClasses(_object):
    """Proxy of C++ Lilv::PluginClasses class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, PluginClasses, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, PluginClasses, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvPluginClasses c_obj) -> PluginClasses"""
        this = _lilv.new_PluginClasses(*args)
        try: self.this.append(this)
        except: self.this = this
    def size(self):
        """size(self) -> unsigned int"""
        return _lilv.PluginClasses_size(self)

    def get(self, *args):
        """get(self, LilvIter i) -> PluginClass"""
        return _lilv.PluginClasses_get(self, *args)

    def begin(self):
        """begin(self) -> LilvIter"""
        return _lilv.PluginClasses_begin(self)

    def next(self, *args):
        """next(self, LilvIter i) -> LilvIter"""
        return _lilv.PluginClasses_next(self, *args)

    def is_end(self, *args):
        """is_end(self, LilvIter i) -> bool"""
        return _lilv.PluginClasses_is_end(self, *args)

    __swig_setmethods__["me"] = _lilv.PluginClasses_me_set
    __swig_getmethods__["me"] = _lilv.PluginClasses_me_get
    if _newclass:me = _swig_property(_lilv.PluginClasses_me_get, _lilv.PluginClasses_me_set)
    def get_by_uri(self, *args):
        """get_by_uri(self, LilvNode uri) -> PluginClass"""
        return _lilv.PluginClasses_get_by_uri(self, *args)

    __swig_destroy__ = _lilv.delete_PluginClasses
    __del__ = lambda self : None;
PluginClasses_swigregister = _lilv.PluginClasses_swigregister
PluginClasses_swigregister(PluginClasses)

class ScalePoints(_object):
    """Proxy of C++ Lilv::ScalePoints class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, ScalePoints, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, ScalePoints, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvScalePoints c_obj) -> ScalePoints"""
        this = _lilv.new_ScalePoints(*args)
        try: self.this.append(this)
        except: self.this = this
    def size(self):
        """size(self) -> unsigned int"""
        return _lilv.ScalePoints_size(self)

    def get(self, *args):
        """get(self, LilvIter i) -> ScalePoint"""
        return _lilv.ScalePoints_get(self, *args)

    def begin(self):
        """begin(self) -> LilvIter"""
        return _lilv.ScalePoints_begin(self)

    def next(self, *args):
        """next(self, LilvIter i) -> LilvIter"""
        return _lilv.ScalePoints_next(self, *args)

    def is_end(self, *args):
        """is_end(self, LilvIter i) -> bool"""
        return _lilv.ScalePoints_is_end(self, *args)

    __swig_setmethods__["me"] = _lilv.ScalePoints_me_set
    __swig_getmethods__["me"] = _lilv.ScalePoints_me_get
    if _newclass:me = _swig_property(_lilv.ScalePoints_me_get, _lilv.ScalePoints_me_set)
    __swig_destroy__ = _lilv.delete_ScalePoints
    __del__ = lambda self : None;
ScalePoints_swigregister = _lilv.ScalePoints_swigregister
ScalePoints_swigregister(ScalePoints)

class Nodes(_object):
    """Proxy of C++ Lilv::Nodes class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Nodes, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Nodes, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvNodes c_obj) -> Nodes"""
        this = _lilv.new_Nodes(*args)
        try: self.this.append(this)
        except: self.this = this
    def size(self):
        """size(self) -> unsigned int"""
        return _lilv.Nodes_size(self)

    def get(self, *args):
        """get(self, LilvIter i) -> Node"""
        return _lilv.Nodes_get(self, *args)

    def begin(self):
        """begin(self) -> LilvIter"""
        return _lilv.Nodes_begin(self)

    def next(self, *args):
        """next(self, LilvIter i) -> LilvIter"""
        return _lilv.Nodes_next(self, *args)

    def is_end(self, *args):
        """is_end(self, LilvIter i) -> bool"""
        return _lilv.Nodes_is_end(self, *args)

    __swig_setmethods__["me"] = _lilv.Nodes_me_set
    __swig_getmethods__["me"] = _lilv.Nodes_me_get
    if _newclass:me = _swig_property(_lilv.Nodes_me_get, _lilv.Nodes_me_set)
    def contains(self, *args):
        """contains(self, Node node) -> bool"""
        return _lilv.Nodes_contains(self, *args)

    __swig_destroy__ = _lilv.delete_Nodes
    __del__ = lambda self : None;
Nodes_swigregister = _lilv.Nodes_swigregister
Nodes_swigregister(Nodes)

class Port(_object):
    """Proxy of C++ Lilv::Port class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Port, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Port, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvPlugin p, LilvPort c_obj) -> Port"""
        this = _lilv.new_Port(*args)
        try: self.this.append(this)
        except: self.this = this
    def get_value(self, *args):
        """get_value(self, LilvNode predicate) -> LilvNodes"""
        return _lilv.Port_get_value(self, *args)

    def get_properties(self):
        """get_properties(self) -> LilvNodes"""
        return _lilv.Port_get_properties(self)

    def has_property(self, *args):
        """has_property(self, LilvNode property_uri) -> bool"""
        return _lilv.Port_has_property(self, *args)

    def supports_event(self, *args):
        """supports_event(self, LilvNode event_uri) -> bool"""
        return _lilv.Port_supports_event(self, *args)

    def get_symbol(self):
        """get_symbol(self) -> LilvNode"""
        return _lilv.Port_get_symbol(self)

    def get_name(self):
        """get_name(self) -> LilvNode"""
        return _lilv.Port_get_name(self)

    def get_classes(self):
        """get_classes(self) -> LilvNodes"""
        return _lilv.Port_get_classes(self)

    def is_a(self, *args):
        """is_a(self, LilvNode port_class) -> bool"""
        return _lilv.Port_is_a(self, *args)

    def get_scale_points(self):
        """get_scale_points(self) -> LilvScalePoints"""
        return _lilv.Port_get_scale_points(self)

    __swig_setmethods__["parent"] = _lilv.Port_parent_set
    __swig_getmethods__["parent"] = _lilv.Port_parent_get
    if _newclass:parent = _swig_property(_lilv.Port_parent_get, _lilv.Port_parent_set)
    __swig_setmethods__["me"] = _lilv.Port_me_set
    __swig_getmethods__["me"] = _lilv.Port_me_get
    if _newclass:me = _swig_property(_lilv.Port_me_get, _lilv.Port_me_set)
    __swig_destroy__ = _lilv.delete_Port
    __del__ = lambda self : None;
Port_swigregister = _lilv.Port_swigregister
Port_swigregister(Port)

class Plugin(_object):
    """Proxy of C++ Lilv::Plugin class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Plugin, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Plugin, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvPlugin c_obj) -> Plugin"""
        this = _lilv.new_Plugin(*args)
        try: self.this.append(this)
        except: self.this = this
    def verify(self):
        """verify(self) -> bool"""
        return _lilv.Plugin_verify(self)

    def get_uri(self):
        """get_uri(self) -> Node"""
        return _lilv.Plugin_get_uri(self)

    def get_bundle_uri(self):
        """get_bundle_uri(self) -> Node"""
        return _lilv.Plugin_get_bundle_uri(self)

    def get_data_uris(self):
        """get_data_uris(self) -> Nodes"""
        return _lilv.Plugin_get_data_uris(self)

    def get_library_uri(self):
        """get_library_uri(self) -> Node"""
        return _lilv.Plugin_get_library_uri(self)

    def get_name(self):
        """get_name(self) -> Node"""
        return _lilv.Plugin_get_name(self)

    def get_class(self):
        """get_class(self) -> PluginClass"""
        return _lilv.Plugin_get_class(self)

    def get_value(self, *args):
        """get_value(self, Node pred) -> Nodes"""
        return _lilv.Plugin_get_value(self, *args)

    def has_feature(self, *args):
        """has_feature(self, Node feature_uri) -> bool"""
        return _lilv.Plugin_has_feature(self, *args)

    def get_supported_features(self):
        """get_supported_features(self) -> Nodes"""
        return _lilv.Plugin_get_supported_features(self)

    def get_required_features(self):
        """get_required_features(self) -> Nodes"""
        return _lilv.Plugin_get_required_features(self)

    def get_optional_features(self):
        """get_optional_features(self) -> Nodes"""
        return _lilv.Plugin_get_optional_features(self)

    def get_num_ports(self):
        """get_num_ports(self) -> unsigned int"""
        return _lilv.Plugin_get_num_ports(self)

    def has_latency(self):
        """has_latency(self) -> bool"""
        return _lilv.Plugin_has_latency(self)

    def get_latency_port_index(self):
        """get_latency_port_index(self) -> unsigned int"""
        return _lilv.Plugin_get_latency_port_index(self)

    def get_author_name(self):
        """get_author_name(self) -> Node"""
        return _lilv.Plugin_get_author_name(self)

    def get_author_email(self):
        """get_author_email(self) -> Node"""
        return _lilv.Plugin_get_author_email(self)

    def get_author_homepage(self):
        """get_author_homepage(self) -> Node"""
        return _lilv.Plugin_get_author_homepage(self)

    def is_replaced(self):
        """is_replaced(self) -> bool"""
        return _lilv.Plugin_is_replaced(self)

    def get_port_by_index(self, *args):
        """get_port_by_index(self, unsigned int index) -> Port"""
        return _lilv.Plugin_get_port_by_index(self, *args)

    def get_port_by_symbol(self, *args):
        """get_port_by_symbol(self, LilvNode symbol) -> Port"""
        return _lilv.Plugin_get_port_by_symbol(self, *args)

    def get_port_ranges_float(self, *args):
        """get_port_ranges_float(self, float min_values, float max_values, float def_values)"""
        return _lilv.Plugin_get_port_ranges_float(self, *args)

    def get_num_ports_of_class(self, *args):
        """get_num_ports_of_class(self, LilvNode class_1, LilvNode class_2) -> unsigned int"""
        return _lilv.Plugin_get_num_ports_of_class(self, *args)

    __swig_setmethods__["me"] = _lilv.Plugin_me_set
    __swig_getmethods__["me"] = _lilv.Plugin_me_get
    if _newclass:me = _swig_property(_lilv.Plugin_me_get, _lilv.Plugin_me_set)
    __swig_destroy__ = _lilv.delete_Plugin
    __del__ = lambda self : None;
Plugin_swigregister = _lilv.Plugin_swigregister
Plugin_swigregister(Plugin)

class Plugins(_object):
    """Proxy of C++ Lilv::Plugins class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Plugins, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Plugins, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, LilvPlugins c_obj) -> Plugins"""
        this = _lilv.new_Plugins(*args)
        try: self.this.append(this)
        except: self.this = this
    def size(self):
        """size(self) -> unsigned int"""
        return _lilv.Plugins_size(self)

    def get(self, *args):
        """get(self, LilvIter i) -> Plugin"""
        return _lilv.Plugins_get(self, *args)

    def begin(self):
        """begin(self) -> LilvIter"""
        return _lilv.Plugins_begin(self)

    def next(self, *args):
        """next(self, LilvIter i) -> LilvIter"""
        return _lilv.Plugins_next(self, *args)

    def is_end(self, *args):
        """is_end(self, LilvIter i) -> bool"""
        return _lilv.Plugins_is_end(self, *args)

    __swig_setmethods__["me"] = _lilv.Plugins_me_set
    __swig_getmethods__["me"] = _lilv.Plugins_me_get
    if _newclass:me = _swig_property(_lilv.Plugins_me_get, _lilv.Plugins_me_set)
    def get_by_uri(self, *args):
        """get_by_uri(self, LilvNode uri) -> Plugin"""
        return _lilv.Plugins_get_by_uri(self, *args)

    def __iter__(self):
    	class Iterator(object):
    		def __init__(self, plugins):
    			self.plugins = plugins
    			self.iter    = plugins.begin()
                    
    		def next(self):
    			self.iter = self.plugins.next(self.iter)
    			if not self.plugins.is_end(self.iter):
    				return self.plugins.get(self.iter)
    			else:
    				raise StopIteration

    	return Iterator(self)

    __swig_destroy__ = _lilv.delete_Plugins
    __del__ = lambda self : None;
Plugins_swigregister = _lilv.Plugins_swigregister
Plugins_swigregister(Plugins)

class Instance(_object):
    """Proxy of C++ Lilv::Instance class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, Instance, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, Instance, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """__init__(self, Plugin plugin, double sample_rate) -> Instance"""
        this = _lilv.new_Instance(*args)
        try: self.this.append(this)
        except: self.this = this
    def connect_port(self, *args):
        """connect_port(self, unsigned int port_index, void data_location)"""
        return _lilv.Instance_connect_port(self, *args)

    def activate(self):
        """activate(self)"""
        return _lilv.Instance_activate(self)

    def run(self, *args):
        """run(self, unsigned int sample_count)"""
        return _lilv.Instance_run(self, *args)

    def deactivate(self):
        """deactivate(self)"""
        return _lilv.Instance_deactivate(self)

    def get_descriptor(self):
        """get_descriptor(self) -> LV2_Descriptor"""
        return _lilv.Instance_get_descriptor(self)

    __swig_setmethods__["me"] = _lilv.Instance_me_set
    __swig_getmethods__["me"] = _lilv.Instance_me_get
    if _newclass:me = _swig_property(_lilv.Instance_me_get, _lilv.Instance_me_set)
    __swig_destroy__ = _lilv.delete_Instance
    __del__ = lambda self : None;
Instance_swigregister = _lilv.Instance_swigregister
Instance_swigregister(Instance)

class World(_object):
    """Proxy of C++ Lilv::World class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, World, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, World, name)
    __repr__ = _swig_repr
    def __init__(self): 
        """__init__(self) -> World"""
        this = _lilv.new_World()
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _lilv.delete_World
    __del__ = lambda self : None;
    def new_uri(self, *args):
        """new_uri(self, char uri) -> LilvNode"""
        return _lilv.World_new_uri(self, *args)

    def new_string(self, *args):
        """new_string(self, char str) -> LilvNode"""
        return _lilv.World_new_string(self, *args)

    def new_int(self, *args):
        """new_int(self, int val) -> LilvNode"""
        return _lilv.World_new_int(self, *args)

    def new_float(self, *args):
        """new_float(self, float val) -> LilvNode"""
        return _lilv.World_new_float(self, *args)

    def new_bool(self, *args):
        """new_bool(self, bool val) -> LilvNode"""
        return _lilv.World_new_bool(self, *args)

    def find_nodes(self, *args):
        """find_nodes(self, LilvNode subject, LilvNode predicate, LilvNode object) -> Nodes"""
        return _lilv.World_find_nodes(self, *args)

    def set_option(self, *args):
        """set_option(self, char uri, LilvNode value)"""
        return _lilv.World_set_option(self, *args)

    def load_all(self):
        """load_all(self)"""
        return _lilv.World_load_all(self)

    def load_bundle(self, *args):
        """load_bundle(self, LilvNode bundle_uri)"""
        return _lilv.World_load_bundle(self, *args)

    def get_plugin_class(self):
        """get_plugin_class(self) -> LilvPluginClass"""
        return _lilv.World_get_plugin_class(self)

    def get_plugin_classes(self):
        """get_plugin_classes(self) -> LilvPluginClasses"""
        return _lilv.World_get_plugin_classes(self)

    def get_all_plugins(self):
        """get_all_plugins(self) -> Plugins"""
        return _lilv.World_get_all_plugins(self)

    __swig_setmethods__["me"] = _lilv.World_me_set
    __swig_getmethods__["me"] = _lilv.World_me_get
    if _newclass:me = _swig_property(_lilv.World_me_get, _lilv.World_me_set)
World_swigregister = _lilv.World_swigregister
World_swigregister(World)

# This file is compatible with both classic and new-style classes.