jararaca 0.3.11a4__py3-none-any.whl → 0.3.11a6__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.

Potentially problematic release.


This version of jararaca might be problematic. Click here for more details.

@@ -14,8 +14,16 @@ from jararaca.core.uow import UnitOfWorkContextProvider
14
14
  from jararaca.di import Container
15
15
  from jararaca.lifecycle import AppLifecycle
16
16
  from jararaca.messagebus.decorators import ScheduleDispatchData
17
- from jararaca.microservice import Microservice, SchedulerAppContext
18
- from jararaca.scheduler.decorators import ScheduledAction
17
+ from jararaca.microservice import (
18
+ AppTransactionContext,
19
+ Microservice,
20
+ SchedulerTransactionData,
21
+ )
22
+ from jararaca.scheduler.decorators import (
23
+ ScheduledAction,
24
+ ScheduledActionData,
25
+ get_type_scheduled_actions,
26
+ )
19
27
 
20
28
  logger = logging.getLogger(__name__)
21
29
 
@@ -27,15 +35,13 @@ class SchedulerConfig:
27
35
 
28
36
  def extract_scheduled_actions(
29
37
  app: Microservice, container: Container
30
- ) -> list[tuple[Callable[..., Any], "ScheduledAction"]]:
31
- scheduled_actions: list[tuple[Callable[..., Any], "ScheduledAction"]] = []
38
+ ) -> list[ScheduledActionData]:
39
+ scheduled_actions: list[ScheduledActionData] = []
32
40
  for controllers in app.controllers:
33
41
 
34
42
  controller_instance: Any = container.get_by_type(controllers)
35
43
 
36
- controller_scheduled_actions = ScheduledAction.get_type_scheduled_actions(
37
- controller_instance
38
- )
44
+ controller_scheduled_actions = get_type_scheduled_actions(controller_instance)
39
45
  scheduled_actions.extend(controller_scheduled_actions)
40
46
 
41
47
  return scheduled_actions
@@ -68,19 +74,16 @@ class Scheduler:
68
74
 
69
75
  self.lifceycle = AppLifecycle(app, self.container)
70
76
 
71
- async def process_task(
72
- self, func: Callable[..., Any], scheduled_action: ScheduledAction
73
- ) -> None:
77
+ async def process_task(self, sched_act_data: ScheduledActionData) -> None:
74
78
 
75
79
  async with self.lock:
76
- task = asyncio.create_task(self.handle_task(func, scheduled_action))
80
+ task = asyncio.create_task(self.handle_task(sched_act_data))
77
81
  self.tasks.add(task)
78
82
  task.add_done_callback(self.tasks.discard)
79
83
 
80
- async def handle_task(
81
- self, func: Callable[..., Any], scheduled_action: ScheduledAction
82
- ) -> None:
83
-
84
+ async def handle_task(self, sched_act_data: ScheduledActionData) -> None:
85
+ func = sched_act_data.callable
86
+ scheduled_action = sched_act_data.spec
84
87
  last_check = self.last_checks.setdefault(func, datetime.now(UTC))
85
88
 
86
89
  cron = croniter(scheduled_action.cron, last_check)
@@ -105,11 +108,13 @@ class Scheduler:
105
108
 
106
109
  try:
107
110
  async with self.uow_provider(
108
- SchedulerAppContext(
109
- action=func,
110
- scheduled_to=next_run,
111
- cron_expression=scheduled_action.cron,
112
- triggered_at=datetime.now(UTC),
111
+ app_context=AppTransactionContext(
112
+ controller_member_reflect=sched_act_data.controller_member,
113
+ transaction_data=SchedulerTransactionData(
114
+ scheduled_to=next_run,
115
+ cron_expression=scheduled_action.cron,
116
+ triggered_at=datetime.now(UTC),
117
+ ),
113
118
  )
114
119
  ):
115
120
  try:
@@ -144,11 +149,11 @@ class Scheduler:
144
149
  scheduled_actions = extract_scheduled_actions(self.app, self.container)
145
150
 
146
151
  while True:
147
- for func, scheduled_action in scheduled_actions:
152
+ for action in scheduled_actions:
148
153
  if self.shutdown_event.is_set():
149
154
  break
150
155
 
151
- await self.process_task(func, scheduled_action)
156
+ await self.process_task(action)
152
157
 
153
158
  await asyncio.sleep(self.interval)
154
159
 
@@ -7,7 +7,7 @@ from abc import ABC, abstractmethod
7
7
  from contextlib import asynccontextmanager
8
8
  from datetime import UTC, datetime
9
9
  from types import FrameType
10
- from typing import Any, AsyncGenerator, Callable
10
+ from typing import Any, AsyncGenerator
11
11
  from urllib.parse import parse_qs
12
12
 
13
13
  import aio_pika
@@ -25,25 +25,25 @@ from jararaca.core.uow import UnitOfWorkContextProvider
25
25
  from jararaca.di import Container
26
26
  from jararaca.lifecycle import AppLifecycle
27
27
  from jararaca.microservice import Microservice
28
- from jararaca.scheduler.decorators import ScheduledAction
28
+ from jararaca.scheduler.decorators import (
29
+ ScheduledAction,
30
+ ScheduledActionData,
31
+ get_type_scheduled_actions,
32
+ )
29
33
  from jararaca.scheduler.types import DelayedMessageData
30
34
 
31
35
  logger = logging.getLogger(__name__)
32
36
 
33
- SCHEDULED_ACTION_LIST = list[tuple[Callable[..., Any], "ScheduledAction"]]
34
-
35
37
 
36
38
  def extract_scheduled_actions(
37
39
  app: Microservice, container: Container
38
- ) -> SCHEDULED_ACTION_LIST:
39
- scheduled_actions: SCHEDULED_ACTION_LIST = []
40
+ ) -> list[ScheduledActionData]:
41
+ scheduled_actions: list[ScheduledActionData] = []
40
42
  for controllers in app.controllers:
41
43
 
42
44
  controller_instance: Any = container.get_by_type(controllers)
43
45
 
44
- controller_scheduled_actions = ScheduledAction.get_type_scheduled_actions(
45
- controller_instance
46
- )
46
+ controller_scheduled_actions = get_type_scheduled_actions(controller_instance)
47
47
  scheduled_actions.extend(controller_scheduled_actions)
48
48
 
49
49
  return scheduled_actions
@@ -81,7 +81,7 @@ class MessageBrokerDispatcher(ABC):
81
81
  raise NotImplementedError("dispatch_delayed_message() is not implemented yet.")
82
82
 
83
83
  @abstractmethod
84
- async def initialize(self, scheduled_actions: SCHEDULED_ACTION_LIST) -> None:
84
+ async def initialize(self, scheduled_actions: list[ScheduledActionData]) -> None:
85
85
  raise NotImplementedError("initialize() is not implemented yet.")
86
86
 
87
87
  async def dispose(self) -> None:
@@ -171,7 +171,7 @@ class RabbitMQBrokerDispatcher(MessageBrokerDispatcher):
171
171
  routing_key=f"{delayed_message.message_topic}.",
172
172
  )
173
173
 
174
- async def initialize(self, scheduled_actions: SCHEDULED_ACTION_LIST) -> None:
174
+ async def initialize(self, scheduled_actions: list[ScheduledActionData]) -> None:
175
175
  """
176
176
  Initialize the RabbitMQ server.
177
177
  This is used to create the exchange and queues for the scheduled actions.
@@ -188,15 +188,17 @@ class RabbitMQBrokerDispatcher(MessageBrokerDispatcher):
188
188
  auto_delete=False,
189
189
  )
190
190
 
191
- for func, _ in scheduled_actions:
191
+ for sched_act_data in scheduled_actions:
192
192
  queue = await channel.declare_queue(
193
- name=ScheduledAction.get_function_id(func),
193
+ name=ScheduledAction.get_function_id(sched_act_data.callable),
194
194
  durable=True,
195
195
  )
196
196
 
197
197
  await queue.bind(
198
198
  exchange=self.exchange,
199
- routing_key=ScheduledAction.get_function_id(func),
199
+ routing_key=ScheduledAction.get_function_id(
200
+ sched_act_data.callable
201
+ ),
200
202
  )
201
203
 
202
204
  async def dispose(self) -> None:
@@ -269,12 +271,14 @@ class SchedulerV2:
269
271
  await self.run_scheduled_actions(scheduled_actions)
270
272
 
271
273
  async def run_scheduled_actions(
272
- self, scheduled_actions: SCHEDULED_ACTION_LIST
274
+ self, scheduled_actions: list[ScheduledActionData]
273
275
  ) -> None:
274
276
 
275
277
  while not self.shutdown_event.is_set():
276
278
  now = int(time.time())
277
- for func, scheduled_action in scheduled_actions:
279
+ for sched_act_data in scheduled_actions:
280
+ func = sched_act_data.callable
281
+ scheduled_action = sched_act_data.spec
278
282
  if self.shutdown_event.is_set():
279
283
  break
280
284
 
@@ -7,9 +7,9 @@ from pydantic import BaseModel
7
7
 
8
8
  from jararaca.core.providers import Token
9
9
  from jararaca.microservice import (
10
- AppContext,
11
10
  AppInterceptor,
12
11
  AppInterceptorWithLifecycle,
12
+ AppTransactionContext,
13
13
  Container,
14
14
  Microservice,
15
15
  )
@@ -40,7 +40,9 @@ class AppConfigurationInterceptor(AppInterceptor, AppInterceptorWithLifecycle):
40
40
  self.config_parser = config_parser
41
41
 
42
42
  @asynccontextmanager
43
- async def intercept(self, app_context: AppContext) -> AsyncGenerator[None, None]:
43
+ async def intercept(
44
+ self, app_context: AppTransactionContext
45
+ ) -> AsyncGenerator[None, None]:
44
46
  yield
45
47
 
46
48
  def instance_basemodels(self, basemodel_type: Type[BaseModel]) -> BaseModel:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: jararaca
3
- Version: 0.3.11a4
3
+ Version: 0.3.11a6
4
4
  Summary: A simple and fast API framework for Python
5
5
  Author: Lucas S
6
6
  Author-email: me@luscasleo.dev
@@ -16,6 +16,7 @@ Provides-Extra: watch
16
16
  Requires-Dist: aio-pika (>=9.4.3,<10.0.0)
17
17
  Requires-Dist: croniter (>=3.0.3,<4.0.0)
18
18
  Requires-Dist: fastapi (>=0.113.0,<0.114.0)
19
+ Requires-Dist: frozendict (>=2.4.6,<3.0.0)
19
20
  Requires-Dist: mako (>=1.3.5,<2.0.0)
20
21
  Requires-Dist: opentelemetry-api (>=1.27.0,<2.0.0) ; extra == "opentelemetry"
21
22
  Requires-Dist: opentelemetry-distro (>=0.49b2,<0.50) ; extra == "opentelemetry"
@@ -1,52 +1,55 @@
1
- jararaca/__init__.py,sha256=LL97aPXyHyb-bjW4EYL2y33UjJER2GlvjMlZiTLioEw,16387
1
+ jararaca/__init__.py,sha256=xieNY4RkD5j4Uv3mWhQH7IpxbpZ5W69XtVt54IuUn6g,17973
2
2
  jararaca/__main__.py,sha256=-O3vsB5lHdqNFjUtoELDF81IYFtR-DSiiFMzRaiSsv4,67
3
3
  jararaca/broker_backend/__init__.py,sha256=GzEIuHR1xzgCJD4FE3harNjoaYzxHMHoEL0_clUaC-k,3528
4
4
  jararaca/broker_backend/mapper.py,sha256=vTsi7sWpNvlga1PWPFg0rCJ5joJ0cdzykkIc2Tuvenc,696
5
5
  jararaca/broker_backend/redis_broker_backend.py,sha256=a7DHchy3NAiD71Ix8SwmQOUnniu7uup-Woa4ON_4J7I,5786
6
- jararaca/cli.py,sha256=9TrlHdZGaqNO3Hg4HpBsTc9x8W3oFP9fVqjPR0rMzKk,24671
6
+ jararaca/cli.py,sha256=y3PhnhSdzwE-F1OTK-VJetZfxosQyDkrtiGgZgLQGD8,24707
7
7
  jararaca/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  jararaca/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  jararaca/core/providers.py,sha256=wktH84FK7c1s2wNq-fudf1uMfi3CQBR0neU2czJ_L0U,434
10
- jararaca/core/uow.py,sha256=WrA50VWzfJIyZHeUhSs8IOpSA4T-D8VV6YPLlFTF5V4,2026
10
+ jararaca/core/uow.py,sha256=jKlhU_YsssiN0hC1s056JcNerNagXPcXdZJ5kJYG68c,2252
11
11
  jararaca/di.py,sha256=h3IsXdYZjJj8PJfnEDn0ZAwdd4EBfh8jU-wWO8ko_t4,76
12
12
  jararaca/files/entity.py.mako,sha256=tjQ-1udAMvVqgRokhsrR4uy3P_OVnbk3XZ8X69ixWhE,3098
13
13
  jararaca/lifecycle.py,sha256=qKlzLQQioS8QkxNJ_FC_5WbmT77cNbc_S7OcQeOoHkI,1895
14
14
  jararaca/messagebus/__init__.py,sha256=5jAqPqdcEMYBfQyfZDWPnplYdrfMyJLMcacf3qLyUhk,56
15
15
  jararaca/messagebus/bus_message_controller.py,sha256=Xd_qwnX5jUvgBTCarHR36fvtol9lPTsYp2IIGKyQQaE,1487
16
16
  jararaca/messagebus/consumers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- jararaca/messagebus/decorators.py,sha256=y-w4dWbP9ZW3ZJ4mE9iIaxw01ZC5snEbOuBY5NC-Bn0,5626
17
+ jararaca/messagebus/decorators.py,sha256=pNefkrfTFuhRQQzmfL7MSKcVa55b0TUHqEtKPunxoAA,5847
18
18
  jararaca/messagebus/interceptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  jararaca/messagebus/interceptors/aiopika_publisher_interceptor.py,sha256=_DEHwIH9LYsA26Hu1mo9oHzLZuATgjilU9E3o-ecDjs,6520
20
- jararaca/messagebus/interceptors/publisher_interceptor.py,sha256=wkIDoa__Q7o74cv89PXdBJFbe-ijxH8Xc_-hBEgxYjM,1272
20
+ jararaca/messagebus/interceptors/publisher_interceptor.py,sha256=ojy1bRhqMgrkQljcGGS8cd8-8pUjL8ZHjIUkdmaAnNM,1325
21
21
  jararaca/messagebus/message.py,sha256=U6cyd2XknX8mtm0333slz5fanky2PFLWCmokAO56vvU,819
22
22
  jararaca/messagebus/publisher.py,sha256=JTkxdKbvxvDWT8nK8PVEyyX061vYYbKQMxRHXrZtcEY,2173
23
- jararaca/messagebus/worker.py,sha256=0qkgpbH3FhprRYEEtQttKc353wQ1PpAwu-rn6n9gBm0,13784
24
- jararaca/messagebus/worker_v2.py,sha256=Ey9HPgVSuIYJUggJGPKmgymZHz7-2TUSYgDB52u9T10,20683
25
- jararaca/microservice.py,sha256=C_Txqm3xSmdHIghJigKk6TOycL5eTJv9PF6XP7TA8j4,6638
26
- jararaca/observability/decorators.py,sha256=XffBinFXdiNkY6eo8_1nkr_GapM0RUGBg0aicBIelag,2220
27
- jararaca/observability/interceptor.py,sha256=GHkuGKFWftN7MDjvYeGFGEPnuJETNhtxRK6yuPrCrpU,1462
23
+ jararaca/messagebus/worker.py,sha256=IMMI5NCVYnXmETFgFymkFJj-dGUHM0WQUZXNItfW5cY,14018
24
+ jararaca/messagebus/worker_v2.py,sha256=M8bN_9L1mo_uzJDut90WgKv3okwrzfKg4jD6jUFcBvA,20904
25
+ jararaca/microservice.py,sha256=jTGzkoJcco1nXwZZDeHRwEHAu_Hpr5gxA_d51P49C2c,7915
26
+ jararaca/observability/decorators.py,sha256=MOIr2PttPYYvRwEdfQZEwD5RxKHOTv8UEy9n1YQVoKw,2281
27
+ jararaca/observability/interceptor.py,sha256=U4ZLM0f8j6Q7gMUKKnA85bnvD-Qa0ii79Qa_X8KsXAQ,1498
28
28
  jararaca/observability/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- jararaca/observability/providers/otel.py,sha256=LgfoITdoQTCxKebfLcEfwMiG992wlWY_0AUTd2fo8hY,6065
29
+ jararaca/observability/providers/otel.py,sha256=8N1F32W43t7c8cwmtTh6Yz9b7HyfGFSRVrkMLf3NDXc,6157
30
30
  jararaca/persistence/base.py,sha256=xnGUbsLNz3gO-9iJt-Sn5NY13Yc9-misP8wLwQuGGoM,1024
31
31
  jararaca/persistence/exports.py,sha256=Ghx4yoFaB4QVTb9WxrFYgmcSATXMNvrOvT8ybPNKXCA,62
32
32
  jararaca/persistence/interceptors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- jararaca/persistence/interceptors/aiosqa_interceptor.py,sha256=VOaoSFZtcCJTrdYxjLUtzkG6bWMVbOKT6WI1BP2hmls,4090
33
+ jararaca/persistence/interceptors/aiosqa_interceptor.py,sha256=LYuKNHYa1CSqJGh-n9iXHT0y73anAbb_DMhyEsjP7bI,6597
34
34
  jararaca/persistence/session.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  jararaca/persistence/sort_filter.py,sha256=agggpN0YvNjUr6wJjy69NkaqxoDDW13ys9B3r85OujA,9226
36
36
  jararaca/persistence/utilities.py,sha256=imcV4Oi5kXNk6m9QF2-OsnFpcTRY4w5mBYLdEx5XTSQ,14296
37
37
  jararaca/presentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- jararaca/presentation/decorators.py,sha256=EErRZtLZDoZZj1ZVlDkGQbvqpoQkBaoU70KAUwWIufs,9146
38
+ jararaca/presentation/decorators.py,sha256=dNcK1xYWhdHVBeWDa8dhqh4z8yQcPkJZTQkfgLXz6RI,11655
39
39
  jararaca/presentation/hooks.py,sha256=WBbU5DG3-MAm2Ro2YraQyYG_HENfizYfyShL2ktHi6k,1980
40
40
  jararaca/presentation/http_microservice.py,sha256=g771JosV6jTY3hQtG-HkLOo-T0e-r3b3rp1ddt99Qf0,533
41
- jararaca/presentation/server.py,sha256=JuEatLFhD_NFnszwXDSgtcCXNOwvQYyxoxxQ33hnAEc,3731
41
+ jararaca/presentation/server.py,sha256=5joE17nnSiwR497Nerr-vcthKL4NRBzyf1KWM8DFgwQ,4682
42
42
  jararaca/presentation/websocket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  jararaca/presentation/websocket/base_types.py,sha256=AvUeeZ1TFhSiRMcYqZU1HaQNqSrcgTkC5R0ArP5dGmA,146
44
44
  jararaca/presentation/websocket/context.py,sha256=A6K5W3kqo9Hgeh1m6JiI7Cdz5SfbXcaICSVX7u1ARZo,1903
45
45
  jararaca/presentation/websocket/decorators.py,sha256=ZNd5aoA9UkyfHOt1C8D2Ffy2gQUNDEsusVnQuTgExgs,2157
46
46
  jararaca/presentation/websocket/redis.py,sha256=6wD4zGHftJXNDW3VfS65WJt2cnOgTI0zmQOfjZ_CEXE,4726
47
47
  jararaca/presentation/websocket/types.py,sha256=M8snAMSdaQlKrwEM2qOgF2qrefo5Meio_oOw620Joc8,308
48
- jararaca/presentation/websocket/websocket_interceptor.py,sha256=OET9Dv8CVJn6bkjnmMXqT_yRWr9HTyd7E-dtN7zfeQ4,9155
48
+ jararaca/presentation/websocket/websocket_interceptor.py,sha256=JWn_G8Q2WO0-1kmN7-Gv0HkIM6nZ_yjCdGRuXUS8F7A,9191
49
49
  jararaca/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ jararaca/reflect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ jararaca/reflect/controller_inspect.py,sha256=UtV4pRIOqCoK4ogBTXQE0dyopEQ5LDFhwm-1iJvrkJc,2326
52
+ jararaca/reflect/metadata.py,sha256=oTi0zIjCYkeBhs12PNTLc8GmzR6qWHdl3drlmamXLJo,1897
50
53
  jararaca/rpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
54
  jararaca/rpc/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
55
  jararaca/rpc/http/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -55,19 +58,18 @@ jararaca/rpc/http/backends/otel.py,sha256=Uc6CjHSCZ5hvnK1fNFv3ota5xzUFnvIl1JOpG3
55
58
  jararaca/rpc/http/decorators.py,sha256=oUSzgMGI8w6SoKiz3GltDbd3BWAuyY60F23cdRRNeiw,11897
56
59
  jararaca/rpc/http/httpx.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
60
  jararaca/scheduler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- jararaca/scheduler/decorators.py,sha256=cRwnQHtlo9iC-2c30t7GGTEURFmdtDPkkVrr5cRVblM,3645
59
- jararaca/scheduler/scheduler.py,sha256=ll3ifOZ9QZcyCX1jfuNagHMVAbhRoE9VAl0ox3MWnwo,5295
60
- jararaca/scheduler/scheduler_v2.py,sha256=5-_O6EzG95y_3aIw5SA4W_ppbPIIszBrCYM7cFvXgBo,11166
61
+ jararaca/scheduler/decorators.py,sha256=ZvOMzQT1ypU7xRLuhu6YARek1YFQ69kje2NdGjlppY8,4325
62
+ jararaca/scheduler/scheduler.py,sha256=PjX40P09tAeD77Z0f4U1XkW782aDk_1GlUXoLaEWXe8,5446
63
+ jararaca/scheduler/scheduler_v2.py,sha256=Ipwgsoirate3xwsoKD-Hd6vxZplSpYLgRulA41Xl-sA,11313
61
64
  jararaca/scheduler/types.py,sha256=4HEQOmVIDp-BYLSzqmqSFIio1bd51WFmgFPIzPpVu04,135
62
65
  jararaca/tools/app_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
66
  jararaca/tools/app_config/decorators.py,sha256=-ckkMZ1dswOmECdo1rFrZ15UAku--txaNXMp8fd1Ndk,941
64
- jararaca/tools/app_config/interceptor.py,sha256=nfFZiS80hrbnL7-XEYrwmp2rwaVYBqxvqu3Y-6o_ov4,2575
65
- jararaca/tools/metadata.py,sha256=7nlCDYgItNybentPSSCc2MLqN7IpBd0VyQzfjfQycVI,1402
67
+ jararaca/tools/app_config/interceptor.py,sha256=HV8h4AxqUc_ACs5do4BSVlyxlRXzx7HqJtoVO9tfRnQ,2611
66
68
  jararaca/tools/typescript/interface_parser.py,sha256=35xbOrZDQDyTXdMrVZQ8nnFw79f28lJuLYNHAspIqi8,30492
67
69
  jararaca/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
70
  jararaca/utils/rabbitmq_utils.py,sha256=FPDP8ZVgvitZXV-oK73D7EIANsqUzXTW7HdpEKsIsyI,2811
69
- jararaca-0.3.11a4.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
70
- jararaca-0.3.11a4.dist-info/METADATA,sha256=VeC353GhTULAEFtJysdLpvMX1MBxRhwXsL35n4pCm5k,4954
71
- jararaca-0.3.11a4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
72
- jararaca-0.3.11a4.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
73
- jararaca-0.3.11a4.dist-info/RECORD,,
71
+ jararaca-0.3.11a6.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
72
+ jararaca-0.3.11a6.dist-info/METADATA,sha256=o7ABpst9rZU3RW_jFGPOE6CsJViab3luBBIWvv0jFlA,4997
73
+ jararaca-0.3.11a6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
74
+ jararaca-0.3.11a6.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
75
+ jararaca-0.3.11a6.dist-info/RECORD,,