omnata-plugin-runtime 0.5.7a140__py3-none-any.whl → 0.5.7a141__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 +3 -2
- {omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/METADATA +1 -1
- {omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/RECORD +5 -5
- {omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/WHEEL +0 -0
@@ -6,6 +6,7 @@ Includes data container classes and defines the contract for a plugin.
|
|
6
6
|
from __future__ import annotations
|
7
7
|
from inspect import signature
|
8
8
|
import sys
|
9
|
+
from types import FunctionType
|
9
10
|
from typing import Union
|
10
11
|
if tuple(sys.version_info[:2]) >= (3, 9):
|
11
12
|
# Python 3.9 and above
|
@@ -2317,7 +2318,7 @@ def consumer_udtf(
|
|
2317
2318
|
|
2318
2319
|
return class_decorator
|
2319
2320
|
|
2320
|
-
def find_consumer_udtf_classes(path:str = '.'):
|
2321
|
+
def find_consumer_udtf_classes(path:str = '.') -> List[type]:
|
2321
2322
|
"""
|
2322
2323
|
Finds all classes in the specified directory which have the 'consumer_udtf' decorator applied
|
2323
2324
|
"""
|
@@ -2393,7 +2394,7 @@ def consumer_udf(
|
|
2393
2394
|
|
2394
2395
|
return decorator
|
2395
2396
|
|
2396
|
-
def find_consumer_udf_functions(path:str = '.'):
|
2397
|
+
def find_consumer_udf_functions(path:str = '.') -> List[function]:
|
2397
2398
|
"""
|
2398
2399
|
Finds all functions in the specified directory which have the 'consumer_udf' decorator applied
|
2399
2400
|
"""
|
{omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.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=TRD_t9QBXSGNHqn3u2ZjRhnxz2_-VBHDZUCRO0BvcQo,120165
|
7
7
|
omnata_plugin_runtime/plugin_entrypoints.py,sha256=PFSLsYEVnWHVvSoOYTtTK2JY6pp6_8_eYP53WqLRiPE,27975
|
8
8
|
omnata_plugin_runtime/rate_limiting.py,sha256=DVQ_bc-mVLBkrU1PTns1MWXhHiLpSB5HkWCcdePtJ2A,25611
|
9
|
-
omnata_plugin_runtime-0.5.
|
10
|
-
omnata_plugin_runtime-0.5.
|
11
|
-
omnata_plugin_runtime-0.5.
|
12
|
-
omnata_plugin_runtime-0.5.
|
9
|
+
omnata_plugin_runtime-0.5.7a141.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
10
|
+
omnata_plugin_runtime-0.5.7a141.dist-info/METADATA,sha256=GxlnEUYJq_OY85r6o6WB0tQUGHg1MktSjdIPpBpRg9k,1985
|
11
|
+
omnata_plugin_runtime-0.5.7a141.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
12
|
+
omnata_plugin_runtime-0.5.7a141.dist-info/RECORD,,
|
{omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/LICENSE
RENAMED
File without changes
|
{omnata_plugin_runtime-0.5.7a140.dist-info → omnata_plugin_runtime-0.5.7a141.dist-info}/WHEEL
RENAMED
File without changes
|