vgi-python 0.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. vgi/__init__.py +152 -0
  2. vgi/_duckdb.py +62 -0
  3. vgi/_storage_profile.py +132 -0
  4. vgi/_test_fixtures/__init__.py +20 -0
  5. vgi/_test_fixtures/accumulate/__init__.py +19 -0
  6. vgi/_test_fixtures/accumulate/worker.py +762 -0
  7. vgi/_test_fixtures/aggregate/__init__.py +62 -0
  8. vgi/_test_fixtures/aggregate/_common.py +21 -0
  9. vgi/_test_fixtures/aggregate/basic.py +232 -0
  10. vgi/_test_fixtures/aggregate/dynamic.py +409 -0
  11. vgi/_test_fixtures/aggregate/generic.py +86 -0
  12. vgi/_test_fixtures/aggregate/listagg.py +71 -0
  13. vgi/_test_fixtures/aggregate/percentile.py +107 -0
  14. vgi/_test_fixtures/aggregate/streaming.py +192 -0
  15. vgi/_test_fixtures/aggregate/varargs.py +75 -0
  16. vgi/_test_fixtures/aggregate/window.py +380 -0
  17. vgi/_test_fixtures/attach_options.py +308 -0
  18. vgi/_test_fixtures/bad_protocol.py +62 -0
  19. vgi/_test_fixtures/cancellable.py +336 -0
  20. vgi/_test_fixtures/catalog.py +813 -0
  21. vgi/_test_fixtures/http_server.py +394 -0
  22. vgi/_test_fixtures/nest_tensor.py +614 -0
  23. vgi/_test_fixtures/orchard_catalog.py +47 -0
  24. vgi/_test_fixtures/projection_repro/__init__.py +6 -0
  25. vgi/_test_fixtures/projection_repro/worker.py +454 -0
  26. vgi/_test_fixtures/scalar/__init__.py +116 -0
  27. vgi/_test_fixtures/scalar/_common.py +69 -0
  28. vgi/_test_fixtures/scalar/arithmetic.py +321 -0
  29. vgi/_test_fixtures/scalar/binary.py +120 -0
  30. vgi/_test_fixtures/scalar/formatting.py +176 -0
  31. vgi/_test_fixtures/scalar/geo.py +300 -0
  32. vgi/_test_fixtures/scalar/null_handling.py +107 -0
  33. vgi/_test_fixtures/scalar/random_demo.py +171 -0
  34. vgi/_test_fixtures/scalar/settings_secrets.py +102 -0
  35. vgi/_test_fixtures/scalar/type_info.py +219 -0
  36. vgi/_test_fixtures/schema_reconcile/__init__.py +29 -0
  37. vgi/_test_fixtures/schema_reconcile/worker.py +653 -0
  38. vgi/_test_fixtures/simple_writable.py +793 -0
  39. vgi/_test_fixtures/table/__init__.py +221 -0
  40. vgi/_test_fixtures/table/_common.py +162 -0
  41. vgi/_test_fixtures/table/batch_index.py +283 -0
  42. vgi/_test_fixtures/table/batch_index_broken.py +200 -0
  43. vgi/_test_fixtures/table/catalog_scans.py +162 -0
  44. vgi/_test_fixtures/table/filters.py +1005 -0
  45. vgi/_test_fixtures/table/late_materialization.py +249 -0
  46. vgi/_test_fixtures/table/make_series.py +273 -0
  47. vgi/_test_fixtures/table/misc.py +499 -0
  48. vgi/_test_fixtures/table/order_modes.py +164 -0
  49. vgi/_test_fixtures/table/pairs.py +437 -0
  50. vgi/_test_fixtures/table/partition_columns.py +472 -0
  51. vgi/_test_fixtures/table/partition_columns_broken.py +304 -0
  52. vgi/_test_fixtures/table/profiling_example.py +195 -0
  53. vgi/_test_fixtures/table/required_filters.py +234 -0
  54. vgi/_test_fixtures/table/sequence.py +710 -0
  55. vgi/_test_fixtures/table/settings.py +426 -0
  56. vgi/_test_fixtures/table/transaction_storage.py +162 -0
  57. vgi/_test_fixtures/table/tt_pushdown.py +191 -0
  58. vgi/_test_fixtures/table/versioned.py +230 -0
  59. vgi/_test_fixtures/table_in_out.py +1392 -0
  60. vgi/_test_fixtures/versioned.py +155 -0
  61. vgi/_test_fixtures/versioned_tables.py +595 -0
  62. vgi/_test_fixtures/worker.py +1631 -0
  63. vgi/_test_fixtures/writable/__init__.py +8 -0
  64. vgi/_test_fixtures/writable/generic.py +236 -0
  65. vgi/_test_fixtures/writable/table.py +149 -0
  66. vgi/_test_fixtures/writable/worker.py +1148 -0
  67. vgi/aggregate_function.py +607 -0
  68. vgi/argument_spec.py +472 -0
  69. vgi/arguments.py +1747 -0
  70. vgi/auth.py +55 -0
  71. vgi/catalog/__init__.py +88 -0
  72. vgi/catalog/attach_option.py +206 -0
  73. vgi/catalog/catalog_interface.py +2767 -0
  74. vgi/catalog/descriptors.py +870 -0
  75. vgi/catalog/duckdb_statistics.py +377 -0
  76. vgi/catalog/secret_type.py +96 -0
  77. vgi/catalog/setting.py +253 -0
  78. vgi/catalog/storage.py +372 -0
  79. vgi/client/__init__.py +67 -0
  80. vgi/client/catalog_mixin.py +1251 -0
  81. vgi/client/cli.py +582 -0
  82. vgi/client/cli_catalog.py +182 -0
  83. vgi/client/cli_schema.py +270 -0
  84. vgi/client/cli_table.py +907 -0
  85. vgi/client/cli_transaction.py +97 -0
  86. vgi/client/cli_utils.py +441 -0
  87. vgi/client/cli_view.py +303 -0
  88. vgi/client/client.py +2183 -0
  89. vgi/exceptions.py +205 -0
  90. vgi/function.py +245 -0
  91. vgi/function_storage.py +1636 -0
  92. vgi/function_storage_azure_sql.py +922 -0
  93. vgi/function_storage_cf_do.py +740 -0
  94. vgi/http/__init__.py +25 -0
  95. vgi/http/demo_storage.py +212 -0
  96. vgi/http/worker_page.py +1252 -0
  97. vgi/invocation.py +154 -0
  98. vgi/logging_config.py +93 -0
  99. vgi/meta_worker.py +661 -0
  100. vgi/metadata.py +1403 -0
  101. vgi/otel.py +406 -0
  102. vgi/protocol.py +2418 -0
  103. vgi/protocol_version.txt +1 -0
  104. vgi/py.typed +0 -0
  105. vgi/scalar_function.py +1211 -0
  106. vgi/schema_utils.py +234 -0
  107. vgi/secret_protocol.py +124 -0
  108. vgi/secret_service.py +238 -0
  109. vgi/serve.py +769 -0
  110. vgi/table_buffering_function.py +443 -0
  111. vgi/table_filter_pushdown.py +1528 -0
  112. vgi/table_function.py +1130 -0
  113. vgi/table_in_out_function.py +383 -0
  114. vgi/transactor/__init__.py +24 -0
  115. vgi/transactor/_duckdb_compat.py +27 -0
  116. vgi/transactor/client.py +137 -0
  117. vgi/transactor/protocol.py +149 -0
  118. vgi/transactor/server.py +740 -0
  119. vgi/worker.py +4761 -0
  120. vgi_python-0.8.0.dist-info/METADATA +735 -0
  121. vgi_python-0.8.0.dist-info/RECORD +124 -0
  122. vgi_python-0.8.0.dist-info/WHEEL +4 -0
  123. vgi_python-0.8.0.dist-info/entry_points.txt +5 -0
  124. vgi_python-0.8.0.dist-info/licenses/LICENSE +134 -0
@@ -0,0 +1,124 @@
1
+ vgi/__init__.py,sha256=RHimcHtz9s4swAt2q3qFTYBFGWSIpqi9ZXonaaqwuPk,3378
2
+ vgi/_duckdb.py,sha256=kfD4YiZTYDuoT7J8OrPelTvjkrxy52afhukcr0L7fF4,2068
3
+ vgi/_storage_profile.py,sha256=VkTsXojuE0tHEzurmteQSAiL1vI3CZSgYkL6D_h8GvE,5061
4
+ vgi/aggregate_function.py,sha256=0APTp76FCWHh6fwyN2nY900XamGwbmrAuFGIzSDlxlU,23493
5
+ vgi/argument_spec.py,sha256=yCT0NpxGJt8HFMetrB2wZirBL4mCVfovcwCs3WRq-Hs,16984
6
+ vgi/arguments.py,sha256=CHZNmIXi5I1u2UZjdF2wbIIotK0phRml7maC2SJjv8s,65624
7
+ vgi/auth.py,sha256=3HD2zM-Mt0Ie-_HT5RorpND1OusUw2CPROjPNs7rgbo,1478
8
+ vgi/exceptions.py,sha256=MuKozNbOEigmaC9VoMCq2HawzoucLm96AcNX01_E8Hw,7216
9
+ vgi/function.py,sha256=sp7raUIk6z3Eq_kG7BsOzZ4fdRYa30_XyPXmTI4Xk84,9399
10
+ vgi/function_storage.py,sha256=IXrIe6XHJcG6mW6ZgjmkKOBnKqBtjxirmXvHwVgTUe0,64967
11
+ vgi/function_storage_azure_sql.py,sha256=uyc2JJn_Fmdr7P0LpHflQaW2yejn8aVLRB_Y8BlLUfw,36140
12
+ vgi/function_storage_cf_do.py,sha256=14P8A-7nYi9mzJqaAVhplkNJP403KW9ItN33fZ_mjWQ,28526
13
+ vgi/invocation.py,sha256=dHGr684L5EGk_BExakMH036KKv3ZyPSdOChVkzQkWoI,5659
14
+ vgi/logging_config.py,sha256=zQdDuKL-bXwu0n6Pjyqga5SVIyQ25egL2xhV5hbv66k,3100
15
+ vgi/meta_worker.py,sha256=Z1T-kMgKy4-QmKUE4B7ly0_4ZDS48yhs34kP_4-Hgmk,29504
16
+ vgi/metadata.py,sha256=GB8pA-GN8bCluXIcem4bxz9r7drJIpP36cDZK3HRFrw,53931
17
+ vgi/otel.py,sha256=OaZ_xNiP77jeeJic0-_RCrj59_HFVb7LFcTojl8SV6k,15438
18
+ vgi/protocol.py,sha256=E5ZQwJuLRefc_9L51F46-yTGVZXiBoNb6mv08ywm7eA,94588
19
+ vgi/protocol_version.txt,sha256=WYVJhIUxBN9cNT4vaBoV_HkkdC-aLkaMKa8kjc5FzgM,6
20
+ vgi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ vgi/scalar_function.py,sha256=H2UFX2EuZ2BuREeOfdXnBTxBafakvjILjdW2oUraiRk,46990
22
+ vgi/schema_utils.py,sha256=2hrAMUK_zk_U4mlCj5jRyporZ4KKi7oqy2bbgjmYtRQ,7941
23
+ vgi/secret_protocol.py,sha256=dfF38TNx5s338YJIpOb4qrZ3x3vjam1ExrkdfA7uBJc,5657
24
+ vgi/secret_service.py,sha256=IMpToACRB3DUOOjFZUlsSPPIONq5DfCtAw_9svOeQd8,8894
25
+ vgi/serve.py,sha256=JdCLare_Gpkj6SOsz_iZ7MjkpgETXB4ONfP2KIi5ods,29020
26
+ vgi/table_buffering_function.py,sha256=1tGOiILPSwueHWaxjUz8AkXihlxJ6HMmJuv6q60-uK0,19341
27
+ vgi/table_filter_pushdown.py,sha256=RaS8k9ZSuPSrouq3jWk390ZX8xV6mLppoEFTmVJCP10,54838
28
+ vgi/table_function.py,sha256=1xAQ4J0qPI7lvgFegPZwbMrmRC3QV2jJpNNoBIPtXzU,46548
29
+ vgi/table_in_out_function.py,sha256=8VewyC4l3vYDzCC09ehGyUNOgEfYyJFUsC39nr-krOM,13480
30
+ vgi/worker.py,sha256=XNhFOM6OOFxzrfliS5z8bCZO-ocmO6bIb082Kx8XwzM,202194
31
+ vgi/_test_fixtures/__init__.py,sha256=xQq-QQLk8USQ6TZHsPiPcZldNNUdcJ2gToXMPGzScLI,444
32
+ vgi/_test_fixtures/attach_options.py,sha256=YtNk1krDdKLnNVtX9yGkgS8XyzdOI0oXtNDbAV73Phg,11091
33
+ vgi/_test_fixtures/bad_protocol.py,sha256=L8kxafWZ-4Sd73F6EpCRo1kWVC-09qzof6OYRXazS_8,2495
34
+ vgi/_test_fixtures/cancellable.py,sha256=hetTRLyT4kkazPNcxAdfzj0pYzEmegMksamJbR0w3Ho,12151
35
+ vgi/_test_fixtures/catalog.py,sha256=CL6E52_vKr_kgGckT0vQO65uUWBSP518Ulfl8nmSey8,28004
36
+ vgi/_test_fixtures/http_server.py,sha256=GevITVo61H1Y8K6zWUJj5guB5Y_H6QFfgVtfzRB0EAA,16095
37
+ vgi/_test_fixtures/nest_tensor.py,sha256=UjjW9UwipYG3ehQpZOm4hdzsafMyvVc0ZKJCrqiZTPU,24471
38
+ vgi/_test_fixtures/orchard_catalog.py,sha256=xMknth9FsVs8-y6vQyIZqDfUhJ-susjpMSzOOhaZyxM,1638
39
+ vgi/_test_fixtures/simple_writable.py,sha256=CGmDBUY8kthauEm8eJN2lV72cJ9_TRxOAQCwOHrJLiE,30188
40
+ vgi/_test_fixtures/table_in_out.py,sha256=4rYQph-MFGWRa2lKP5bv65ffBg49WFlxzpVe-tdI014,50628
41
+ vgi/_test_fixtures/versioned.py,sha256=Itm-x_Zt9WDwLGT4Dl4VzU5GtFF4HkcaJEqg9ErB8As,5784
42
+ vgi/_test_fixtures/versioned_tables.py,sha256=KRllGGRrwH8JUtqH-tLHT1JL09rKN-EcEYZVeQdbaLs,22112
43
+ vgi/_test_fixtures/worker.py,sha256=ni3XV3HocZFKDFjtM1rsfv8vQRuMDdJoxdp79JMClok,70534
44
+ vgi/_test_fixtures/accumulate/__init__.py,sha256=4hYT8jqRoVHSjV9TB7v0Z1CMJtdLuPaDWSz4J2fvMDs,868
45
+ vgi/_test_fixtures/accumulate/worker.py,sha256=yal9m-GjKNKUdLOLtwkCyFkeHVv_nnpUjh8amwueT48,30163
46
+ vgi/_test_fixtures/aggregate/__init__.py,sha256=tjCVKdCuHlIAZL7uDi-o_q82oMieXsAyoKExesr-7a0,2156
47
+ vgi/_test_fixtures/aggregate/_common.py,sha256=wYg8hqPfe_mbh4cxClnw-AyIa3gB-YDtuV9HbEyyI8c,565
48
+ vgi/_test_fixtures/aggregate/basic.py,sha256=HwAQg_IIgFXeTO3wMokHdI2n55ixNA7jt3w1YSDaKwY,8351
49
+ vgi/_test_fixtures/aggregate/dynamic.py,sha256=XSvRK0yHHpZFf-5F_qZFPuNP7LYwrg3SRXW7XbKG-XU,16588
50
+ vgi/_test_fixtures/aggregate/generic.py,sha256=YiR06ps7zZJzK8ey-5mH3I7SWMkdudXGazvTKk5myMk,3510
51
+ vgi/_test_fixtures/aggregate/listagg.py,sha256=uNmMd4NH3ijAOkxggp-KX0ey5-H-qrcQXkxoY29utD8,2650
52
+ vgi/_test_fixtures/aggregate/percentile.py,sha256=S2bm9_BVFrkgxFNoYT7Sz06KQGFDItTRZTQ-iuRqcys,4582
53
+ vgi/_test_fixtures/aggregate/streaming.py,sha256=yMY819ttLFUzE6ffFXTSdWtBfUcOjfhEYVMqtjUY-dY,7840
54
+ vgi/_test_fixtures/aggregate/varargs.py,sha256=Wi3mp5q-qHiZqzgqtqtL_0zSO-AR-8qbXssdLGAfEkM,2742
55
+ vgi/_test_fixtures/aggregate/window.py,sha256=AmIkUCAlDAFVo3tQHuVQTnexYCMJl4MC0gEvbEpcyQ0,13713
56
+ vgi/_test_fixtures/projection_repro/__init__.py,sha256=9CoNsJJbBlR1qqLrL76TkyEk6bNsRZgv_uluj8RTFwY,177
57
+ vgi/_test_fixtures/projection_repro/worker.py,sha256=ypW4fAVOn5FFnrQJCVl_s722SF-ZKiZ-aUEpPFhy7rQ,15598
58
+ vgi/_test_fixtures/scalar/__init__.py,sha256=-Wubk45DyIQDmkUepo-_NJ9mIGxU3zth5YT3ZDYFl2Q,3527
59
+ vgi/_test_fixtures/scalar/_common.py,sha256=rI2hJS-bq9wYGzDh73qy1abYktJLjvmN4mNlSEoxhtk,2664
60
+ vgi/_test_fixtures/scalar/arithmetic.py,sha256=Bl6KQ1iMhe3USIRlV7eRU957I4R6dTidb00VXGTwM7M,10538
61
+ vgi/_test_fixtures/scalar/binary.py,sha256=sfQR-RdNv4PP_9q77Zii3BCmI7RTz_OQQERFYp_9dTk,4121
62
+ vgi/_test_fixtures/scalar/formatting.py,sha256=Ingqu4q2xjdhRpM5pYv-a8J-oMkVPeOllaBUbN4nIH0,5342
63
+ vgi/_test_fixtures/scalar/geo.py,sha256=aciYyzXHauKphdr0Gm4KO_40_c-mnXPBEeHsfnpMULM,9480
64
+ vgi/_test_fixtures/scalar/null_handling.py,sha256=ED0kJ1XfWPCcv7TzmiJX7tI1GysEPlLULjMgAzrwYcI,3834
65
+ vgi/_test_fixtures/scalar/random_demo.py,sha256=83HMDfksBhk5BMoNc8ZK4E3fGyn-En4ETBVtIb-jeSE,5906
66
+ vgi/_test_fixtures/scalar/settings_secrets.py,sha256=SScGYAGlKFSSJgib3OCjpdQo0IeNTIefXXFXUQExVC8,3088
67
+ vgi/_test_fixtures/scalar/type_info.py,sha256=2WeTxakT-_tcWybPfkCrAHVAMOadFN3tb8E3_EmqIyw,6304
68
+ vgi/_test_fixtures/schema_reconcile/__init__.py,sha256=rCCtM5bd67-PTPeIYg9SCJaKUSglA6YeXsedQBEUlmA,1324
69
+ vgi/_test_fixtures/schema_reconcile/worker.py,sha256=qkGRdKvI2AKItenlribd3cvUfvWUwPbAc2WrW7_7Ijc,23570
70
+ vgi/_test_fixtures/table/__init__.py,sha256=SpXxZhe_k8wdBg6423xETdchiK-Dlz1JiKrF4CTSlCo,7125
71
+ vgi/_test_fixtures/table/_common.py,sha256=tO18gShWidcKcdHYn1FIEXDWzC2SwGsVMnA84r9Y3qs,5961
72
+ vgi/_test_fixtures/table/batch_index.py,sha256=P5ds0xgikuEQanSEWVWKMLbdvIzUeJraI-GuSoPdb6U,11641
73
+ vgi/_test_fixtures/table/batch_index_broken.py,sha256=kZOGrLL7ZW1rmwPmNEYRmiF_vqIfHsfXioq5vKPWHk0,7314
74
+ vgi/_test_fixtures/table/catalog_scans.py,sha256=5j1Sx02-HWK7bFurDu4e9HiS3Q9BmBukA3sAErH4GHE,5080
75
+ vgi/_test_fixtures/table/filters.py,sha256=CW6uNYsEELy7fNeBdMpvxE2hJRi9P2ymDeQtNMdUvtE,36499
76
+ vgi/_test_fixtures/table/late_materialization.py,sha256=0rZLJE2LrMKhdplJt2gUMuLKMRl6syUpGzzgB8ro24U,10164
77
+ vgi/_test_fixtures/table/make_series.py,sha256=XmEDtHg5ViHgMHfdd2gqgqfDQBsYbNK3Jj4BaFtbpGE,8312
78
+ vgi/_test_fixtures/table/misc.py,sha256=UolUsFurtdKPK8n3xLYyf_ZgLoJgrcIMNrEbbF601Ps,16089
79
+ vgi/_test_fixtures/table/order_modes.py,sha256=FU6CoHCK61VyDdFVbl_MnlgZKGINsDsTwDmv3uD8590,6214
80
+ vgi/_test_fixtures/table/pairs.py,sha256=LwC7RxvcX8KvNiSYYevuqyW_BTp8JyIFrZ7JPamMn1s,14497
81
+ vgi/_test_fixtures/table/partition_columns.py,sha256=WBo3dTgY2ZPqATSR8S2yHijgHdjBN6rkrPH28igwqAY,17271
82
+ vgi/_test_fixtures/table/partition_columns_broken.py,sha256=r4u2Kx5XfUtVeRc-1BRW-kVychJyrrYGdYYuvZnm1MM,11265
83
+ vgi/_test_fixtures/table/profiling_example.py,sha256=Rt3fgKxJhr7Q8QQRss2-OV13wh2mDXNZjnXW9sBMokQ,6754
84
+ vgi/_test_fixtures/table/required_filters.py,sha256=RqWVofNCZtaS5wS3TM4ycaZffCk_n0TFOl_B4hU04Vc,7156
85
+ vgi/_test_fixtures/table/sequence.py,sha256=ambRB_nvnRDJJ0Ugp1GwM4AT7lOXiCvJyV0OKO_cw2Y,24732
86
+ vgi/_test_fixtures/table/settings.py,sha256=YM2JV-Ve4hdm_NcLqsLJK2ySlU9wIisBidsZGmrGrEs,14309
87
+ vgi/_test_fixtures/table/transaction_storage.py,sha256=cGSaM25cE6brwbUJ0-mchocX0UfwOb7uscCATKLYeME,6086
88
+ vgi/_test_fixtures/table/tt_pushdown.py,sha256=r-NAHYZSLQvdx20wNt8UAArfAeunfzc-sMXzR2aN21I,7342
89
+ vgi/_test_fixtures/table/versioned.py,sha256=kO971OKtRLTq73rUGwbOiyGSdCG2lJixvY5p-YeqmYU,7867
90
+ vgi/_test_fixtures/writable/__init__.py,sha256=AxGIHXKvL6-4-T3rzdumpc6tnteXeAlswlglaxDYtmI,316
91
+ vgi/_test_fixtures/writable/generic.py,sha256=otZz_IgALgbwItETaUPQkE8ZqWa0AtFwMFKfvdUviT8,8832
92
+ vgi/_test_fixtures/writable/table.py,sha256=OMtGLogIrZc3Rsp6uWlKwoTOXcgNbsyRdspLm8K2Jk8,5626
93
+ vgi/_test_fixtures/writable/worker.py,sha256=nH8KSZqyKv1gqdKn-_OFVh3h02FbyE0NFQ2QIvzrHYo,42310
94
+ vgi/catalog/__init__.py,sha256=SCpeP2TtPfhWhwaqK5qGmmtHCM2z-EL66OoCkyefy7c,2064
95
+ vgi/catalog/attach_option.py,sha256=DJRBmElUchgnVZS9_kbk11aVFfOgh2euKsOF_y80eM4,6198
96
+ vgi/catalog/catalog_interface.py,sha256=ckwETgO-BM1kTX56m92W_HMw8wMJgB66dYpjvvqREE0,112049
97
+ vgi/catalog/descriptors.py,sha256=Cp4TltPmJM0JMb2XbtVnTb2faIFD0tASq0xJX7cLLxI,36834
98
+ vgi/catalog/duckdb_statistics.py,sha256=fARQupgq0fD46rDgxDXvdCFsgs-rvCOHhls7WXHmnFY,15615
99
+ vgi/catalog/secret_type.py,sha256=Bb1wBikpuqp8Sz23W9zsogjowojX9jekilmzlaIdiyE,3250
100
+ vgi/catalog/setting.py,sha256=gIgvnvH2ThWtKEKe9pbgu85-Se5TGCcrXnLgB0-ljn8,7445
101
+ vgi/catalog/storage.py,sha256=V31WD0YuER2RAgziAhiH4QGmlMFAyPqrGUbv4tT7dhA,11815
102
+ vgi/client/__init__.py,sha256=6LPHqlcNFy77apDNXUntgOVLhuXfpJyZd6TI7R7QfbY,2122
103
+ vgi/client/catalog_mixin.py,sha256=-S03np2fibstRpl_cZ3P0fWuJt_h6s9GQi5i90bS0C4,45280
104
+ vgi/client/cli.py,sha256=KfoqIiMXiUNAdYxRp-O6BOi3FA1IsesSBb_XeZGWFSo,22287
105
+ vgi/client/cli_catalog.py,sha256=5RWVKcKpceozQyXBHG25aXoQgJPCb72XE2WJv3HKTq8,6006
106
+ vgi/client/cli_schema.py,sha256=k2vNrLCn0jXSLR-u2vp3hPufo4OtxNWxNL3VLG7EDZU,9662
107
+ vgi/client/cli_table.py,sha256=RhcCv_5J33AjhFGD5TSVg_HHaroeSEx3qpivLeqbj64,31941
108
+ vgi/client/cli_transaction.py,sha256=TDW0ZrBy8XM_eYSkYk5ewEsnozfzDJOlopd66Fm7OOE,3142
109
+ vgi/client/cli_utils.py,sha256=65VbFYhncK0w6EUv7_5Zfxu309vFKuDM3mxQVMy7jYQ,14119
110
+ vgi/client/cli_view.py,sha256=IQSW-iy173AEnMxwDa4vEK0zXkovnaGx_a8GhIMnkWE,10482
111
+ vgi/client/client.py,sha256=rz1BRq0OgrxdmWIr8p51q7Eu_AmEfAGSuQIduYLv6ds,91993
112
+ vgi/http/__init__.py,sha256=hlOwOVcoZqmEKVGk7ganOdr5ryRSpEhLBF9sRD7BkYc,608
113
+ vgi/http/demo_storage.py,sha256=830s-H61thozC3eEuqdnwCpYFfvoJRq9vjyuXa5OURo,8769
114
+ vgi/http/worker_page.py,sha256=x95ye4L32X2IvDG2WbE20elyhRJy05cP3_2bIOiDyaA,54057
115
+ vgi/transactor/__init__.py,sha256=Y3pHIQc5f6xy771J259oUZlAegklcHlIlTuinL3ENPQ,764
116
+ vgi/transactor/_duckdb_compat.py,sha256=sXVZ9JLKAQyGR1BjWczSwdQEavtr-TcZPoVZZnTr3vQ,953
117
+ vgi/transactor/client.py,sha256=_UVgEP132b0j-HhQXegxbrMXCXfYmikOZnofswXXYtg,4480
118
+ vgi/transactor/protocol.py,sha256=ZNtHEtr6TZm4qCWo2BPfjewHEf5eMtIUYXQnAReGel0,4774
119
+ vgi/transactor/server.py,sha256=JRrVaUqAEVP9Xsok-fhe0fNBbU1dYe5L1cM38xt9OMM,31005
120
+ vgi_python-0.8.0.dist-info/METADATA,sha256=9jHlX5HYh5Zae1iiWM5gNoNhN5OfRiSxv-M5ADd5ASU,26033
121
+ vgi_python-0.8.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
122
+ vgi_python-0.8.0.dist-info/entry_points.txt,sha256=3Kz1vgodw3pOL_xjtSyDB55-ZRy-U2X-X_Bdr582x0Q,165
123
+ vgi_python-0.8.0.dist-info/licenses/LICENSE,sha256=pbJb4zZasP6n5ifEV81wFu017TarjydaYVmGbHcehtY,6103
124
+ vgi_python-0.8.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ vgi-client = vgi.client.cli:main
3
+ vgi-secret-serve = vgi.secret_service:main
4
+ vgi-serve = vgi.serve:main
5
+ vgi-transactor = vgi.transactor.server:main
@@ -0,0 +1,134 @@
1
+ Query Farm Source-Available License, Version 1.0
2
+
3
+ Copyright (c) 2025, 2026 Query Farm LLC. All rights reserved.
4
+
5
+ ## 1. Definitions
6
+
7
+ "Licensor" means Query Farm LLC (http://query.farm, hello@query.farm) and its
8
+ affiliates under common control.
9
+
10
+ "VGI" means the Vector Gateway Interface, the DuckDB extension technology developed
11
+ by the Licensor, also referred to by the Licensor as its "Hyperfederation" database
12
+ technology.
13
+
14
+ "Licensed Work" means VGI, including its source code, object code, and any
15
+ documentation distributed with it, in each version made available by the Licensor
16
+ under this License.
17
+
18
+ "You" (or "Your") means the individual or legal entity exercising rights under this
19
+ License, together with all affiliates under common control with that entity.
20
+
21
+ "Production Use" means any use of the Licensed Work other than for development,
22
+ testing, evaluation, experimentation, or other non-production purposes.
23
+
24
+ "Hyperfederation Services" means services relating to the federation, gateway,
25
+ integration, querying, or interoperation of data sources using VGI or
26
+ functionally equivalent technology, including services that expose, broker, or
27
+ provide access to such federated or gateway capabilities.
28
+
29
+ "Commercial Marketplace" means any platform, exchange, or intermediary service,
30
+ whether or not operated for a fee, that connects providers and consumers of
31
+ Hyperfederation Services, or that facilitates the offering, discovery, exchange,
32
+ sale, or licensing of Hyperfederation Services among third parties.
33
+
34
+ "Competing Offering" means a product or service that You make available to third
35
+ parties, on a paid basis (including through paid support, subscription, or hosting
36
+ arrangements), whose capabilities significantly overlap with those of the Licensor's
37
+ version(s) of the Licensed Work.
38
+
39
+ ## 2. Grant of Rights
40
+
41
+ Subject to the terms and limitations of this License, the Licensor grants You a
42
+ worldwide, royalty-free, non-exclusive license to:
43
+
44
+ (a) use, copy, and run the Licensed Work for any non-production purpose;
45
+
46
+ (b) modify the Licensed Work and create derivative works of it;
47
+
48
+ (c) redistribute the Licensed Work and Your derivative works, provided You comply
49
+ with Section 5; and
50
+
51
+ (d) make Production Use of the Licensed Work, except where such use is restricted by
52
+ Section 3 or reserved to the Licensor by Section 4.
53
+
54
+ ## 3. Production Use Conditions
55
+
56
+ The grant of Production Use in Section 2(d) does not extend to, and You may not
57
+ without a separate commercial license from the Licensor:
58
+
59
+ (a) provide a Competing Offering to third parties; or
60
+
61
+ (b) offer the Licensed Work, or any derivative work of it, to third parties on a
62
+ hosted, embedded, or as-a-service basis where doing so competes with the Licensor's
63
+ commercial interests in the Licensed Work.
64
+
65
+ "Embedded" includes incorporating the source or object code of the Licensed Work
66
+ into a Competing Offering, and packaging a Competing Offering such that the Licensed
67
+ Work must be accessed or downloaded for that offering to function.
68
+
69
+ Hosting or using the Licensed Work for Your own internal purposes is not a Competing
70
+ Offering and is permitted, including across Your affiliates under common control.
71
+
72
+ ## 4. Reserved Rights
73
+
74
+ Notwithstanding any other provision of this License, the Licensor reserves to itself
75
+ the exclusive right to build, operate, offer, or authorize a Commercial Marketplace
76
+ that incorporates, integrates, is built upon, or otherwise uses the Licensed Work.
77
+
78
+ This License grants You no right to construct, operate, or enable a Commercial
79
+ Marketplace using the Licensed Work, whether on a commercial or non-commercial basis,
80
+ and any such use requires a separate written agreement with the Licensor.
81
+
82
+ ## 5. Redistribution
83
+
84
+ If You redistribute the Licensed Work or any derivative work of it, in original or
85
+ modified form, You must:
86
+
87
+ (a) include a complete, unmodified copy of this License with each copy; and
88
+
89
+ (b) cause any recipient to receive the Licensed Work subject to the terms of this
90
+ License.
91
+
92
+ The conditions in Sections 3 and 4 apply to every recipient of the Licensed Work,
93
+ whether received directly from the Licensor or through a third party.
94
+
95
+ ## 6. Conversion to Open Source
96
+
97
+ For each version of the Licensed Work, on the tenth anniversary of the date the
98
+ Licensor first made that version publicly available (the "Change Date" for that
99
+ version), the Licensor additionally grants You the right to use that version under
100
+ the terms of the Apache License, Version 2.0, and on and after that version's Change
101
+ Date the restrictions in Sections 3 and 4 no longer apply to that version.
102
+
103
+ This License applies separately to each version of the Licensed Work, and the Change
104
+ Date may differ between versions.
105
+
106
+ ## 7. Commercial Licensing
107
+
108
+ If Your intended use is not permitted under this License, You may obtain a separate
109
+ commercial license from the Licensor by contacting hello@query.farm. Absent such a
110
+ license, You must refrain from the restricted use.
111
+
112
+ ## 8. Trademarks
113
+
114
+ This License does not grant You any right to use the names, trademarks, service
115
+ marks, or logos of the Licensor, including "Vector Gateway Interface," "VGI," and
116
+ "Hyperfederation," except as required for reasonable and customary use in describing
117
+ the origin of the Licensed Work.
118
+
119
+ ## 9. Termination
120
+
121
+ Any use of the Licensed Work in violation of this License automatically terminates
122
+ Your rights under this License for the current and all other versions of the Licensed
123
+ Work. Your rights may be reinstated only by a writing signed by the Licensor.
124
+
125
+ ## 10. Disclaimer of Warranty and Limitation of Liability
126
+
127
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
128
+ AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EXPRESS OR IMPLIED,
129
+ INCLUDING WITHOUT LIMITATION ANY WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS
130
+ FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE.
131
+
132
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL THE LICENSOR BE
133
+ LIABLE TO YOU FOR ANY DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR THE USE
134
+ OF THE LICENSED WORK, WHETHER IN CONTRACT, TORT, OR OTHERWISE.