hypern 0.3.11__cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl → 0.3.13__cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.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.
- hypern/__init__.py +6 -0
- hypern/application.py +5 -4
- hypern/datastructures.py +0 -13
- hypern/enum.py +12 -0
- hypern/hypern.cpython-310-arm-linux-gnueabihf.so +0 -0
- hypern/processpool.py +0 -2
- hypern/response/response.py +1 -3
- hypern/routing/parser.py +1 -1
- hypern/routing/route.py +22 -12
- {hypern-0.3.11.dist-info → hypern-0.3.13.dist-info}/METADATA +1 -1
- {hypern-0.3.11.dist-info → hypern-0.3.13.dist-info}/RECORD +58 -60
- hypern/background.py +0 -4
- hypern/scheduler.py +0 -5
- {hypern-0.3.11.dist-info → hypern-0.3.13.dist-info}/WHEEL +0 -0
- {hypern-0.3.11.dist-info → hypern-0.3.13.dist-info}/licenses/LICENSE +0 -0
hypern/__init__.py
CHANGED
@@ -5,6 +5,9 @@ from hypern.ws import WebsocketRoute, WebSocketSession
|
|
5
5
|
from .application import Hypern
|
6
6
|
from .hypern import Request, Response
|
7
7
|
from .response import FileResponse, HTMLResponse, JSONResponse, PlainTextResponse, RedirectResponse
|
8
|
+
from .hypern import BackgroundTask
|
9
|
+
from .hypern import BackgroundTasks
|
10
|
+
from .hypern import Scheduler
|
8
11
|
|
9
12
|
__all__ = [
|
10
13
|
"Hypern",
|
@@ -21,4 +24,7 @@ __all__ = [
|
|
21
24
|
"PlainTextResponse",
|
22
25
|
"RedirectResponse",
|
23
26
|
"logger",
|
27
|
+
"BackgroundTask",
|
28
|
+
"BackgroundTasks",
|
29
|
+
"Scheduler",
|
24
30
|
]
|
hypern/application.py
CHANGED
@@ -10,8 +10,9 @@ import psutil
|
|
10
10
|
from typing_extensions import Annotated, Doc
|
11
11
|
|
12
12
|
from hypern.args_parser import ArgsConfig
|
13
|
-
from hypern.datastructures import Contact,
|
14
|
-
from hypern.
|
13
|
+
from hypern.datastructures import Contact, Info, License
|
14
|
+
from hypern.enum import HTTPMethod
|
15
|
+
from hypern.hypern import DatabaseConfig, FunctionInfo, MiddlewareConfig, Router, Server, WebsocketRouter, Scheduler
|
15
16
|
from hypern.hypern import Route as InternalRoute
|
16
17
|
from hypern.logging import logger
|
17
18
|
from hypern.middleware import Middleware
|
@@ -19,7 +20,6 @@ from hypern.openapi import SchemaGenerator, SwaggerUI
|
|
19
20
|
from hypern.processpool import run_processes
|
20
21
|
from hypern.response import HTMLResponse, JSONResponse
|
21
22
|
from hypern.routing import Route
|
22
|
-
from hypern.scheduler import Scheduler
|
23
23
|
from hypern.ws import WebsocketRoute
|
24
24
|
|
25
25
|
AppType = TypeVar("AppType", bound="Hypern")
|
@@ -243,7 +243,7 @@ class Hypern:
|
|
243
243
|
self.thread_config = ThreadConfigurator().get_config()
|
244
244
|
|
245
245
|
for route in routes or []:
|
246
|
-
self.router.extend_route(route(
|
246
|
+
self.router.extend_route(route())
|
247
247
|
|
248
248
|
for websocket_route in websockets or []:
|
249
249
|
for route in websocket_route.routes:
|
@@ -438,6 +438,7 @@ class Hypern:
|
|
438
438
|
self.args.max_blocking_threads = self.thread_config.max_blocking_threads
|
439
439
|
|
440
440
|
if self.args.http2:
|
441
|
+
logger.info("HTTP/2 enabled")
|
441
442
|
server.enable_http2()
|
442
443
|
|
443
444
|
run_processes(
|
hypern/datastructures.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
from typing import Optional
|
2
|
-
from enum import Enum
|
3
2
|
from pydantic import BaseModel, AnyUrl
|
4
3
|
|
5
4
|
|
@@ -26,15 +25,3 @@ class Info(BaseModelWithConfig):
|
|
26
25
|
contact: Optional[Contact] = None
|
27
26
|
license: Optional[License] = None
|
28
27
|
version: str
|
29
|
-
|
30
|
-
|
31
|
-
class HTTPMethod(Enum):
|
32
|
-
GET = "GET"
|
33
|
-
POST = "POST"
|
34
|
-
PUT = "PUT"
|
35
|
-
DELETE = "DELETE"
|
36
|
-
PATCH = "PATCH"
|
37
|
-
OPTIONS = "OPTIONS"
|
38
|
-
HEAD = "HEAD"
|
39
|
-
TRACE = "TRACE"
|
40
|
-
CONNECT = "CONNECT"
|
hypern/enum.py
CHANGED
@@ -11,3 +11,15 @@ class ErrorCode(Enum):
|
|
11
11
|
METHOD_NOT_ALLOW = "METHOD_NOT_ALLOW"
|
12
12
|
UNAUTHORIZED = "UNAUTHORIZED"
|
13
13
|
VALIDATION_ERROR = "VALIDATION_ERROR"
|
14
|
+
|
15
|
+
|
16
|
+
class HTTPMethod(Enum):
|
17
|
+
GET = "GET"
|
18
|
+
POST = "POST"
|
19
|
+
PUT = "PUT"
|
20
|
+
DELETE = "DELETE"
|
21
|
+
PATCH = "PATCH"
|
22
|
+
OPTIONS = "OPTIONS"
|
23
|
+
HEAD = "HEAD"
|
24
|
+
TRACE = "TRACE"
|
25
|
+
CONNECT = "CONNECT"
|
Binary file
|
hypern/processpool.py
CHANGED
@@ -120,8 +120,6 @@ def initialize_event_loop(max_blocking_threads: int = 100) -> asyncio.AbstractEv
|
|
120
120
|
loop = uvloop.new_event_loop()
|
121
121
|
asyncio.set_event_loop(loop)
|
122
122
|
|
123
|
-
loop.slow_callback_duration = 0.1 # Log warnings for slow callbacks
|
124
|
-
loop.set_debug(False) # Disable debug mode
|
125
123
|
return loop
|
126
124
|
|
127
125
|
|
hypern/response/response.py
CHANGED
@@ -2,12 +2,10 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
import typing
|
4
4
|
from urllib.parse import quote
|
5
|
-
from hypern.hypern import Response as InternalResponse, Header
|
5
|
+
from hypern.hypern import Response as InternalResponse, Header, BackgroundTask, BackgroundTasks
|
6
6
|
import orjson
|
7
7
|
import msgpack
|
8
8
|
|
9
|
-
from hypern.background import BackgroundTask, BackgroundTasks
|
10
|
-
|
11
9
|
|
12
10
|
class BaseResponse:
|
13
11
|
media_type = None
|
hypern/routing/parser.py
CHANGED
@@ -36,7 +36,7 @@ class ParamParser:
|
|
36
36
|
return {k: v[0] for k, v in query_params.items()}
|
37
37
|
|
38
38
|
def _parse_path_params(self) -> dict:
|
39
|
-
return
|
39
|
+
return dict(self.request.path_params.items())
|
40
40
|
|
41
41
|
def _parse_form_data(self) -> dict:
|
42
42
|
return self.request.json()
|
hypern/routing/route.py
CHANGED
@@ -9,8 +9,10 @@ from pydantic import BaseModel
|
|
9
9
|
from pydantic.fields import FieldInfo
|
10
10
|
|
11
11
|
from hypern.auth.authorization import Authorization
|
12
|
-
|
13
|
-
from hypern.
|
12
|
+
|
13
|
+
from hypern.enum import HTTPMethod
|
14
|
+
from hypern.hypern import FunctionInfo, Request
|
15
|
+
|
14
16
|
from hypern.hypern import Route as InternalRoute
|
15
17
|
|
16
18
|
from .dispatcher import dispatch
|
@@ -20,6 +22,16 @@ def get_field_type(field):
|
|
20
22
|
return field.outer_type_
|
21
23
|
|
22
24
|
|
25
|
+
def join_url_paths(*parts):
|
26
|
+
first = parts[0]
|
27
|
+
parts = [part.strip("/") for part in parts]
|
28
|
+
starts_with_slash = first.startswith("/") if first else False
|
29
|
+
joined = "/".join(part for part in parts if part)
|
30
|
+
if starts_with_slash:
|
31
|
+
joined = "/" + joined
|
32
|
+
return joined
|
33
|
+
|
34
|
+
|
23
35
|
def pydantic_to_swagger(model: type[BaseModel] | dict):
|
24
36
|
if isinstance(model, dict):
|
25
37
|
# Handle the case when a dict is passed instead of a Pydantic model
|
@@ -216,18 +228,16 @@ class Route:
|
|
216
228
|
func_info = FunctionInfo(handler=handler, is_async=is_async)
|
217
229
|
return InternalRoute(path=path, function=func_info, method=method)
|
218
230
|
|
219
|
-
def __call__(self,
|
220
|
-
|
231
|
+
def __call__(self, *args: Any, **kwds: Any) -> Any:
|
232
|
+
routes = []
|
221
233
|
|
222
234
|
# Validate handlers
|
223
235
|
if not self.endpoint and not self.functional_handlers:
|
224
236
|
raise ValueError(f"No handler found for route: {self.path}")
|
225
237
|
|
226
238
|
# Handle functional routes
|
227
|
-
for route in self.functional_handlers:
|
228
|
-
router.add_route(route=route)
|
229
239
|
if not self.endpoint:
|
230
|
-
return
|
240
|
+
return self.functional_handlers
|
231
241
|
|
232
242
|
# Handle class-based routes
|
233
243
|
for name, func in self.endpoint.__dict__.items():
|
@@ -235,15 +245,15 @@ class Route:
|
|
235
245
|
sig = inspect.signature(func)
|
236
246
|
doc = self.swagger_generate(sig, func.__doc__)
|
237
247
|
endpoint_obj = self.endpoint()
|
238
|
-
route = self.make_internal_route(path=
|
248
|
+
route = self.make_internal_route(path=self.path, handler=endpoint_obj.dispatch, method=name.upper())
|
239
249
|
route.doc = doc
|
240
|
-
|
250
|
+
routes.append(route)
|
241
251
|
del endpoint_obj # free up memory
|
242
|
-
return
|
252
|
+
return routes
|
243
253
|
|
244
254
|
def add_route(
|
245
255
|
self,
|
246
|
-
|
256
|
+
func_path: str,
|
247
257
|
method: str,
|
248
258
|
) -> Callable:
|
249
259
|
def decorator(func: Callable[..., Any]) -> Callable[..., Any]:
|
@@ -251,7 +261,7 @@ class Route:
|
|
251
261
|
return await dispatch(func, request, inject)
|
252
262
|
|
253
263
|
sig = inspect.signature(func)
|
254
|
-
route = self.make_internal_route(path=path, handler=functional_wrapper, method=method.upper())
|
264
|
+
route = self.make_internal_route(path=join_url_paths(self.path, func_path), handler=functional_wrapper, method=method.upper())
|
255
265
|
route.doc = self.swagger_generate(sig, func.__doc__)
|
256
266
|
|
257
267
|
self.functional_handlers.append(route)
|
@@ -1,73 +1,71 @@
|
|
1
|
-
hypern-0.3.
|
2
|
-
hypern-0.3.
|
3
|
-
hypern-0.3.
|
4
|
-
hypern/
|
5
|
-
hypern/
|
6
|
-
hypern/
|
1
|
+
hypern-0.3.13.dist-info/METADATA,sha256=w5XKaqmlyZArzd-TJhzABRgXo1WLLQfG2QedTkWVl-8,4007
|
2
|
+
hypern-0.3.13.dist-info/WHEEL,sha256=_ulwwgDC3t41lO89IJ8rumleCiT04MObX7ttlqcRf_0,129
|
3
|
+
hypern-0.3.13.dist-info/licenses/LICENSE,sha256=VdbaK2hSaaD-LUjtDIlEbeZVmvLGK7BEQvltP3mv-cY,1304
|
4
|
+
hypern/worker.py,sha256=_m0NV-Srn4NGi65UciOOg3t4Bk6wGm0PMG4_1EYi6Zk,9487
|
5
|
+
hypern/cli/commands.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
hypern/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
hypern/gateway/service.py,sha256=kxKTBZN0ZjuNEp8uwFldQWql-g1q1AECXUjKZsICdLg,1649
|
8
|
-
hypern/gateway/__init__.py,sha256=4wyCK49W_sTBCh0hkTdEli6kdRUFu9UBxncV6EXBxwA,229
|
9
8
|
hypern/gateway/proxy.py,sha256=cgMFJ6znUMWRDgPgnRz7HmPT6UUY6Z09-8HAxkCWGgk,2403
|
10
|
-
hypern/
|
11
|
-
hypern/
|
12
|
-
hypern/
|
13
|
-
hypern/middleware/__init__.py,sha256=sPmefKAy8-XeSg6BhkZBjqV8zgreeNLxikyyM6aDFT8,476
|
14
|
-
hypern/middleware/base.py,sha256=IXmEe7x_X5YykBsxTpko6ApsvNmVqfZ7IHBgJSSEWnY,356
|
15
|
-
hypern/middleware/compress.py,sha256=2eyxkYMgmsL6klbcTqr7WK0rFTo0grU0ZKQF15pVUBI,3041
|
16
|
-
hypern/middleware/cache.py,sha256=b4hRh1smFwhJE789hZ0p4TlkQ8ZjYR-7fXg9rI7uvbc,7406
|
17
|
-
hypern/middleware/i18n.py,sha256=s82nQo6kKClZ0s3G3jsy87VRfwxpBDbASB_ErjRL3O0,15
|
18
|
-
hypern/middleware/cors.py,sha256=q8Ts_znqApdUJYSJyLlRIbYKxxTQy6WNnJD6Kqbl32I,1759
|
19
|
-
hypern/middleware/security.py,sha256=hPYsilqhF9mRCX7DzOQw4AKh0y5k5FL0cM_zQdb9tiA,7491
|
20
|
-
hypern/openapi/schemas.py,sha256=Hg8G4aPZ1xXJTKFWhx8BgwRsDt2yw-v0N6LVjJ_qBHU,1547
|
21
|
-
hypern/openapi/__init__.py,sha256=oJ0HM9yAgSN00mBC_fRgV2irlGugrhvIpiveuDMv8PM,136
|
22
|
-
hypern/openapi/swagger.py,sha256=E5fHYUfFa77zQsCyQGf_vnqJVpl4_KI5qsKFHdgJEdw,61
|
23
|
-
hypern/hypern.pyi,sha256=GSVs2lNIlIU6k8KL2VNOBO8jafEEqzmsmJF6PHNtwAA,8718
|
24
|
-
hypern/routing/dispatcher.py,sha256=8_JuxyyOMiCqY3WsqcjSzUTpYjIGbvzGtI8j9T-fIkA,2391
|
25
|
-
hypern/routing/route.py,sha256=juK0eOjmTv1iYYhw3zyLt3uHCB3pT6au64tVcXqCEDc,9976
|
26
|
-
hypern/routing/parser.py,sha256=VYdQtf9TPe-NSx3J2wCfOZIh1S-iFLf0jdqrY9UPVMQ,3328
|
27
|
-
hypern/routing/__init__.py,sha256=FvmUQlSraZ91q9AFGkgj3ELIep1jiKZLBCDrXIVf5DI,157
|
9
|
+
hypern/gateway/gateway.py,sha256=rAZrS9db55tQGUfEfVNIKw6EetBdHAcSXyrC7rLfCZ8,1434
|
10
|
+
hypern/gateway/aggregator.py,sha256=Z4LnsDlVDtlPlhsSKu8jCD0UsbztXOLu6UAVtkgJwQk,1100
|
11
|
+
hypern/gateway/__init__.py,sha256=4wyCK49W_sTBCh0hkTdEli6kdRUFu9UBxncV6EXBxwA,229
|
28
12
|
hypern/routing/queue.py,sha256=Yus-49N4xc7O5S3YYxqL0muFLypu_Zgd0u2SADFh-Uk,7001
|
29
13
|
hypern/routing/endpoint.py,sha256=AWLHLQNlSGR8IGU6xM0RP-1kP06OJQzqpbXKSiZEzEo,996
|
30
|
-
hypern/
|
31
|
-
hypern/
|
32
|
-
hypern/
|
33
|
-
hypern/
|
34
|
-
hypern/py
|
35
|
-
hypern/datastructures.py,sha256=
|
36
|
-
hypern/worker.py,sha256=_m0NV-Srn4NGi65UciOOg3t4Bk6wGm0PMG4_1EYi6Zk,9487
|
37
|
-
hypern/__init__.py,sha256=IxXU3ev_2KFfceMvBlJBgHeF5_YGYoiDotWJOAiYjh4,615
|
38
|
-
hypern/reload.py,sha256=Y2pjHHh8Zv0z-pRkBPLezKiowRblb1ZJ7yI_oE55D4U,1523
|
39
|
-
hypern/background.py,sha256=fN38UlJG6wZf1gOGcvdY-INoD8zJKvGZZOdVYTMjDwg,120
|
40
|
-
hypern/processpool.py,sha256=7DSUMKy0IL6D3822W-XseH6oAU2MCmb-wKRt_80RuZE,3744
|
41
|
-
hypern/caching/__init__.py,sha256=I7X3bmdEHeHs80kjAI1s0mMlVD7RKmw9I-QupaTAIWo,346
|
42
|
-
hypern/caching/backend.py,sha256=Tj66YSepGUvpXrwC04gSdJzs45IepHA2hNlMtnRVB6c,798
|
43
|
-
hypern/caching/redis_backend.py,sha256=nRkAq07B248iFljn9TxE4tadYUeM8RqqERZWzEpfk7E,5767
|
44
|
-
hypern/caching/strategies.py,sha256=VU0FpYmIK6rEjjJSwRXPrprYdo0d2u1s9OxB3OAvs3g,7080
|
45
|
-
hypern/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
-
hypern/config.py,sha256=Ksn2LnHU0yhtGUjnac9bNjqtxl7IcPKmMdbDfZYm7Jo,7911
|
47
|
-
hypern/application.py,sha256=8dnaBB5zn5H-AccPHO38EWPMun1M3eRyxdF6zXFi1mg,17573
|
48
|
-
hypern/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
-
hypern/database/sqlx/field.py,sha256=C7vxo6VvCeOWxG3-GFrwe23xC4AiZ3fGqOzZTDbkC8c,8875
|
50
|
-
hypern/database/sqlx/model.py,sha256=5liN9IP6cKZhW2SZqQE5ynFNCPVkGL9_xoyPu5PAyjQ,3927
|
51
|
-
hypern/database/sqlx/__init__.py,sha256=1GJLdJfh1Dgy6o1tyl6Aus431rhrX4shhE53M9FLQl0,609
|
52
|
-
hypern/database/sqlx/query.py,sha256=_SRoXXXdVZ_kRLcvrYCtxmIbpb1GE3BpBg4rseHhctc,32442
|
53
|
-
hypern/database/sqlx/migrate.py,sha256=gHoZFUPop7OGp_cVic8pKiVnnV1-j2oUAJ9lXVfBBAA,9479
|
54
|
-
hypern/database/sqlalchemy/__init__.py,sha256=U_9q6L3V7VIRN-neeN5mVb1z6wKf7_GjWptgUl8-xxI,150
|
14
|
+
hypern/routing/dispatcher.py,sha256=8_JuxyyOMiCqY3WsqcjSzUTpYjIGbvzGtI8j9T-fIkA,2391
|
15
|
+
hypern/routing/route.py,sha256=Xbws-l5FooG9s_BLgmjqGfgJvapuMhrHYPN8qPb6iag,10196
|
16
|
+
hypern/routing/parser.py,sha256=iYaTAcZCeHgx2QpQSbQ7kQPhDOJQw5DJA6HFk2bqlhM,3320
|
17
|
+
hypern/routing/__init__.py,sha256=FvmUQlSraZ91q9AFGkgj3ELIep1jiKZLBCDrXIVf5DI,157
|
18
|
+
hypern/args_parser.py,sha256=hRlZe6VOZUutynVPXzCS8Mpn_Qp36MDDV0hFLNjM5YM,2149
|
19
|
+
hypern/datastructures.py,sha256=q0jWNQBDVcwxIeD9-s9N266rA7aIYn6nAtN4z0Neogk,616
|
55
20
|
hypern/database/sqlalchemy/repository.py,sha256=YShEl1DqRXtYwNnn1F3YVfXX-TEdoNRjDEWIO_3Lu2s,9226
|
56
21
|
hypern/database/sqlalchemy/config.py,sha256=AyeDJnWtq42NFLX65T0w04yhX7l9x8t6lXFq8U4WgfE,2580
|
57
|
-
hypern/
|
22
|
+
hypern/database/sqlalchemy/__init__.py,sha256=U_9q6L3V7VIRN-neeN5mVb1z6wKf7_GjWptgUl8-xxI,150
|
23
|
+
hypern/database/sqlx/query.py,sha256=_SRoXXXdVZ_kRLcvrYCtxmIbpb1GE3BpBg4rseHhctc,32442
|
24
|
+
hypern/database/sqlx/migrate.py,sha256=gHoZFUPop7OGp_cVic8pKiVnnV1-j2oUAJ9lXVfBBAA,9479
|
25
|
+
hypern/database/sqlx/model.py,sha256=5liN9IP6cKZhW2SZqQE5ynFNCPVkGL9_xoyPu5PAyjQ,3927
|
26
|
+
hypern/database/sqlx/__init__.py,sha256=1GJLdJfh1Dgy6o1tyl6Aus431rhrX4shhE53M9FLQl0,609
|
27
|
+
hypern/database/sqlx/field.py,sha256=C7vxo6VvCeOWxG3-GFrwe23xC4AiZ3fGqOzZTDbkC8c,8875
|
28
|
+
hypern/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
+
hypern/application.py,sha256=TlMbzJc3F0ZTymAzA-hOtxXYmEuhGeckB0iIirYBxnI,17595
|
30
|
+
hypern/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
+
hypern/processpool.py,sha256=N7KFG2ZJm-YlF-QzfUfQsorWsV3yav_HsyDLVWDGEJk,3623
|
32
|
+
hypern/logging/logger.py,sha256=62Qg4YAi_JDGV72Rd6R58jixqZk7anRqHbtnuBlkrwA,3174
|
33
|
+
hypern/logging/__init__.py,sha256=lzYSz0382eIM3CvP0sZ6RbEEwYZwfeJEJh9cxQA6Rws,49
|
34
|
+
hypern/exceptions/errors.py,sha256=mt6ZXUGHFZ_FfyP7sZFj4XT6amb5G-1Fa_26rH7BSWc,842
|
35
|
+
hypern/exceptions/base.py,sha256=_tt42Tuy_7oXR-THhJ00lZFsCJMKWbArJyTlF-kcgH4,1955
|
58
36
|
hypern/exceptions/common.py,sha256=p9cx3PC6Azn0WAz7jCH02DEoLRLCCvKqNrL-dGhMGSQ,215
|
59
|
-
hypern/exceptions/formatters.py,sha256=51krRQIUq3uvwvcQm81mYPifdp2r2ckwC98pXI5v_P8,2330
|
60
37
|
hypern/exceptions/__init__.py,sha256=t4GhxGHjOPgPQ34f0MycMjoRGw5u3TRb3OcTDYc4Orw,936
|
61
|
-
hypern/exceptions/
|
38
|
+
hypern/exceptions/formatters.py,sha256=51krRQIUq3uvwvcQm81mYPifdp2r2ckwC98pXI5v_P8,2330
|
62
39
|
hypern/exceptions/http.py,sha256=N98kHaQtH4x9EW6Gavrcr-Ll_-HDvsDSaRAX1sNuN4A,3150
|
63
|
-
hypern/exceptions/base.py,sha256=_tt42Tuy_7oXR-THhJ00lZFsCJMKWbArJyTlF-kcgH4,1955
|
64
|
-
hypern/logging/__init__.py,sha256=lzYSz0382eIM3CvP0sZ6RbEEwYZwfeJEJh9cxQA6Rws,49
|
65
|
-
hypern/logging/logger.py,sha256=62Qg4YAi_JDGV72Rd6R58jixqZk7anRqHbtnuBlkrwA,3174
|
66
|
-
hypern/scheduler.py,sha256=nQoWIYMRmKd30g4XwdB072hWTNHvJlLd9S6rLlTFKS0,62
|
67
40
|
hypern/ws/channel.py,sha256=TWaqowshz3WZRdg7ApBdFtVAlZW0OsVqoOHoFtXaZrk,3103
|
41
|
+
hypern/ws/route.py,sha256=8YPTf1fsF46oCyqoXePC3mEbhjNVFDp8rqyWSsBHhBA,777
|
68
42
|
hypern/ws/room.py,sha256=9u6gLq1WY4hn9_yEniavaY0yetFbQzgya_g6VPN-cgg,2522
|
69
43
|
hypern/ws/heartbeat.py,sha256=PIrYWnQn8VxQjfDXDmtMymMl-wN5MQ_Q6oHfAjPWznU,2787
|
70
|
-
hypern/ws/route.py,sha256=8YPTf1fsF46oCyqoXePC3mEbhjNVFDp8rqyWSsBHhBA,777
|
71
44
|
hypern/ws/__init__.py,sha256=iUYERiHxs7HCmHj7CS5iG2XewKAJgW7w8kqxSORu_N8,127
|
72
|
-
hypern/
|
73
|
-
hypern
|
45
|
+
hypern/config.py,sha256=Ksn2LnHU0yhtGUjnac9bNjqtxl7IcPKmMdbDfZYm7Jo,7911
|
46
|
+
hypern/openapi/schemas.py,sha256=Hg8G4aPZ1xXJTKFWhx8BgwRsDt2yw-v0N6LVjJ_qBHU,1547
|
47
|
+
hypern/openapi/swagger.py,sha256=E5fHYUfFa77zQsCyQGf_vnqJVpl4_KI5qsKFHdgJEdw,61
|
48
|
+
hypern/openapi/__init__.py,sha256=oJ0HM9yAgSN00mBC_fRgV2irlGugrhvIpiveuDMv8PM,136
|
49
|
+
hypern/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
+
hypern/enum.py,sha256=6sLKuH5fQwc-XpSjf_Z9-lQpi3Id5xqAnl3ihvLF-8Y,551
|
51
|
+
hypern/middleware/limit.py,sha256=oWNt-XqYdORJuJMgg8pLYoEpHVm1cZBOPatxk8g7Nao,8075
|
52
|
+
hypern/middleware/cache.py,sha256=b4hRh1smFwhJE789hZ0p4TlkQ8ZjYR-7fXg9rI7uvbc,7406
|
53
|
+
hypern/middleware/compress.py,sha256=2eyxkYMgmsL6klbcTqr7WK0rFTo0grU0ZKQF15pVUBI,3041
|
54
|
+
hypern/middleware/base.py,sha256=IXmEe7x_X5YykBsxTpko6ApsvNmVqfZ7IHBgJSSEWnY,356
|
55
|
+
hypern/middleware/cors.py,sha256=q8Ts_znqApdUJYSJyLlRIbYKxxTQy6WNnJD6Kqbl32I,1759
|
56
|
+
hypern/middleware/__init__.py,sha256=sPmefKAy8-XeSg6BhkZBjqV8zgreeNLxikyyM6aDFT8,476
|
57
|
+
hypern/middleware/security.py,sha256=hPYsilqhF9mRCX7DzOQw4AKh0y5k5FL0cM_zQdb9tiA,7491
|
58
|
+
hypern/middleware/i18n.py,sha256=s82nQo6kKClZ0s3G3jsy87VRfwxpBDbASB_ErjRL3O0,15
|
59
|
+
hypern/reload.py,sha256=Y2pjHHh8Zv0z-pRkBPLezKiowRblb1ZJ7yI_oE55D4U,1523
|
60
|
+
hypern/caching/redis_backend.py,sha256=nRkAq07B248iFljn9TxE4tadYUeM8RqqERZWzEpfk7E,5767
|
61
|
+
hypern/caching/strategies.py,sha256=VU0FpYmIK6rEjjJSwRXPrprYdo0d2u1s9OxB3OAvs3g,7080
|
62
|
+
hypern/caching/__init__.py,sha256=I7X3bmdEHeHs80kjAI1s0mMlVD7RKmw9I-QupaTAIWo,346
|
63
|
+
hypern/caching/backend.py,sha256=Tj66YSepGUvpXrwC04gSdJzs45IepHA2hNlMtnRVB6c,798
|
64
|
+
hypern/hypern.pyi,sha256=GSVs2lNIlIU6k8KL2VNOBO8jafEEqzmsmJF6PHNtwAA,8718
|
65
|
+
hypern/auth/authorization.py,sha256=b8N_MiBmSJBVR45SsOI2iMGmXYOlNKbsMsrMwXApxtk,30
|
66
|
+
hypern/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
|
+
hypern/__init__.py,sha256=LsEtm_FRdyAx0Eh51hjPXr_SH9BCyyIzNeBGTN76rRM,778
|
68
|
+
hypern/response/response.py,sha256=qa-jmce1PpMezn0GRO6hR5SV0O-y8BspBAm6MdPcreQ,4699
|
69
|
+
hypern/response/__init__.py,sha256=9z99BDgASpG404GK8LGkOsXgac0wFwH_cQOTI5Ju-1U,223
|
70
|
+
hypern/hypern.cpython-310-arm-linux-gnueabihf.so,sha256=f-zAVea-CBTc_5xOQ5gA2PRLg2HfVddj-NUPVUrwz0g,8746056
|
71
|
+
hypern-0.3.13.dist-info/RECORD,,
|
hypern/background.py
DELETED
hypern/scheduler.py
DELETED
File without changes
|
File without changes
|