omnata-plugin-runtime 0.6.2a165__py3-none-any.whl → 0.6.2a166__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- omnata_plugin_runtime/omnata_plugin.py +6 -0
- {omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/WHEEL +0 -0
@@ -2398,6 +2398,9 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
|
|
2398
2398
|
|
2399
2399
|
# Iterate over all modules in the current directory
|
2400
2400
|
for root, _, _ in os.walk(current_dir):
|
2401
|
+
# exclude the '.packages' directory
|
2402
|
+
if '.packages' in root:
|
2403
|
+
continue
|
2401
2404
|
for _, module_name, _ in pkgutil.iter_modules([root]):
|
2402
2405
|
# Import the module
|
2403
2406
|
module = importlib.import_module(module_name)
|
@@ -2515,6 +2518,9 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]:
|
|
2515
2518
|
# Iterate over all modules in the current directory
|
2516
2519
|
# Walk through the directory tree
|
2517
2520
|
for root, _, _ in os.walk(current_dir):
|
2521
|
+
# exclude the '.packages' directory
|
2522
|
+
if '.packages' in root:
|
2523
|
+
continue
|
2518
2524
|
for _, module_name, _ in pkgutil.iter_modules([root]):
|
2519
2525
|
# Import the module
|
2520
2526
|
module = importlib.import_module(module_name)
|
{omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/RECORD
RENAMED
@@ -3,10 +3,10 @@ omnata_plugin_runtime/api.py,sha256=FxzTqri4no8ClkOm7vZADG8aD47jcGBCTTQDEORmOJM,
|
|
3
3
|
omnata_plugin_runtime/configuration.py,sha256=TI6GaVFhewVawBCaYN34GujY57qEP6q2nik4YpSEk5s,38100
|
4
4
|
omnata_plugin_runtime/forms.py,sha256=GzSPEwcijsoPCXEO1mHiE8ylvX_KSE5TkhwqkymA2Ss,19755
|
5
5
|
omnata_plugin_runtime/logging.py,sha256=bn7eKoNWvtuyTk7RTwBS9UARMtqkiICtgMtzq3KA2V0,3272
|
6
|
-
omnata_plugin_runtime/omnata_plugin.py,sha256=
|
6
|
+
omnata_plugin_runtime/omnata_plugin.py,sha256=XI1HdaK_gdrggDTExYuGCk0wnoAqwoWzTxViORnXHCs,129166
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=-mkIpfB_pTl1yDBMmTnioW44RPj-V8dvlhBiU7ekvkQ,27976
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=JukA0l7x7Klqz2b54mR-poP7NRxpUHgWSGp6h0B8u6Q,25612
|
9
|
-
omnata_plugin_runtime-0.6.
|
10
|
-
omnata_plugin_runtime-0.6.
|
11
|
-
omnata_plugin_runtime-0.6.
|
12
|
-
omnata_plugin_runtime-0.6.
|
9
|
+
omnata_plugin_runtime-0.6.2a166.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
10
|
+
omnata_plugin_runtime-0.6.2a166.dist-info/METADATA,sha256=Y-uPLlrrFXkLDodtD-QB6l4Th63mZoGGYOdCAvAxw9I,1985
|
11
|
+
omnata_plugin_runtime-0.6.2a166.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
12
|
+
omnata_plugin_runtime-0.6.2a166.dist-info/RECORD,,
|
{omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/LICENSE
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.2a165.dist-info → omnata_plugin_runtime-0.6.2a166.dist-info}/WHEEL
RENAMED
File without changes
|