latch-asgi 0.3.0__py3-none-any.whl → 1.0.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.
- latch_asgi/asgi_iface.py +33 -289
- latch_asgi/auth.py +7 -15
- latch_asgi/config.py +2 -0
- latch_asgi/context/common.py +30 -19
- latch_asgi/context/http.py +9 -23
- latch_asgi/context/websocket.py +35 -19
- latch_asgi/datadog_propagator.py +14 -12
- latch_asgi/framework/common.py +33 -0
- latch_asgi/framework/http.py +58 -56
- latch_asgi/framework/websocket.py +98 -93
- latch_asgi/server.py +377 -220
- {latch_asgi-0.3.0.dist-info → latch_asgi-1.0.0.dist-info}/METADATA +1 -2
- latch_asgi-1.0.0.dist-info/RECORD +19 -0
- latch_asgi-0.3.0.dist-info/RECORD +0 -19
- {latch_asgi-0.3.0.dist-info → latch_asgi-1.0.0.dist-info}/WHEEL +0 -0
- {latch_asgi-0.3.0.dist-info → latch_asgi-1.0.0.dist-info}/licenses/COPYING +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: latch-asgi
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: ASGI python server
|
|
5
5
|
Author-Email: Max Smolin <max@latch.bio>
|
|
6
6
|
License: CC0-1.0
|
|
@@ -13,7 +13,6 @@ Requires-Dist: PyJWT[crypto]<3.0.0,>=2.6.0
|
|
|
13
13
|
Requires-Dist: orjson<4.0.0,>=3.8.5
|
|
14
14
|
Requires-Dist: opentelemetry-sdk<2.0.0,>=1.15.0
|
|
15
15
|
Requires-Dist: opentelemetry-api<2.0.0,>=1.15.0
|
|
16
|
-
Requires-Dist: opentelemetry-instrumentation-asgi<1.0,>=0.36b0
|
|
17
16
|
Description-Content-Type: text/markdown
|
|
18
17
|
|
|
19
18
|
# python-asgi
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
latch_asgi-1.0.0.dist-info/METADATA,sha256=yFX8qyD9AAwco2Nb6n8AQCbsuQBzEvjSenfb2VaK1ps,580
|
|
2
|
+
latch_asgi-1.0.0.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
|
|
3
|
+
latch_asgi-1.0.0.dist-info/licenses/COPYING,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
4
|
+
latch_asgi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
latch_asgi/asgi_iface.py,sha256=JSmp9YnbcU7MymDcqo7DvIGGyP5wZWe-8QNtAtkgJnc,2199
|
|
6
|
+
latch_asgi/auth.py,sha256=oZafKbuny4ytlG9hEPAwBKNZqSsfTBaPYQgg0BFtLus,4912
|
|
7
|
+
latch_asgi/config.py,sha256=inKDeJhgafvUWfAXR-gubwIy-KmK55lb3ROFBTDY8cQ,243
|
|
8
|
+
latch_asgi/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
latch_asgi/context/common.py,sha256=y388jOFVQiRQ8g2bgNu078bNkSpcHXyD1LKaQAnQo40,2564
|
|
10
|
+
latch_asgi/context/http.py,sha256=rv38SM1zdfShCsswV2BNZiRF331BeBl4trP7ZS01i5o,889
|
|
11
|
+
latch_asgi/context/websocket.py,sha256=RTPRLZoS9GOrD2R_KVgOUwI9VI0Q6RcmrBY06ADFHE8,1627
|
|
12
|
+
latch_asgi/datadog_propagator.py,sha256=tmFWHhsVZ9ClNDWkAz2SLym0almUekz9AwCrdzQaLU4,3346
|
|
13
|
+
latch_asgi/framework/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
latch_asgi/framework/common.py,sha256=GylhWwlwjF15qAN_ZYn8QC2Dtn7hyd8HnT77Ktba0w4,815
|
|
15
|
+
latch_asgi/framework/http.py,sha256=Uk9Yas7yivxiMa92X2fNi8HGjRV9tVGUjc6CH3W2x_w,4879
|
|
16
|
+
latch_asgi/framework/websocket.py,sha256=6DiOP3zFwxL5rj-xuaUuv3ZmzOUf3Bz1IhAdrgui5vM,8061
|
|
17
|
+
latch_asgi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
latch_asgi/server.py,sha256=lApeWf5JcoxFub5ierD0AA0FmVgRfowmu3KBlInzmwA,18401
|
|
19
|
+
latch_asgi-1.0.0.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
latch_asgi-0.3.0.dist-info/METADATA,sha256=x1WxOrLQcsLzJzLEaFCl6yCsK0AkZ8EHdhp82vIYYPo,643
|
|
2
|
-
latch_asgi-0.3.0.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
|
|
3
|
-
latch_asgi-0.3.0.dist-info/licenses/COPYING,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
4
|
-
latch_asgi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
latch_asgi/asgi_iface.py,sha256=8cltPG2YEf20RWcMpn2FE5g4wtauiUNNlrVnD4UYDqc,8397
|
|
6
|
-
latch_asgi/auth.py,sha256=gXGVIzsvDt_kBlcS_Sx9939iGlNNs1i8KDOs-tpEBiw,4996
|
|
7
|
-
latch_asgi/config.py,sha256=F-78OqEGqrYoDKAdo5OVWwLB8cm6A2qvAC0xJQUufy0,241
|
|
8
|
-
latch_asgi/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
latch_asgi/context/common.py,sha256=EQeVLIbdfX3m5tLkLdzLynEvPUKrN2HWuvjhDrYwpoo,2029
|
|
10
|
-
latch_asgi/context/http.py,sha256=-zwxko3ao1mirdfJLcOacQRCOW1U1bXr40HEA_50Z24,1424
|
|
11
|
-
latch_asgi/context/websocket.py,sha256=NA0pJYdJI2kUnSu1AkPnf9heG8_B4M4_op7S8MPlyT4,1024
|
|
12
|
-
latch_asgi/datadog_propagator.py,sha256=PFKaM87B8Ia_5RBNGIIDSgcgTjxhN0uJou2o8359kzs,3306
|
|
13
|
-
latch_asgi/framework/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
latch_asgi/framework/common.py,sha256=My4ePrmLD8aZd7_PC-ZJPZ9CUD90j5UZvHwA0jfTmFw,157
|
|
15
|
-
latch_asgi/framework/http.py,sha256=8AMzA1FjyaFVexVPQbi1NBdbWaH6594R5AAsjoSL67Y,4992
|
|
16
|
-
latch_asgi/framework/websocket.py,sha256=Xyf4EUurKPxdHGV3CXUpCMLYCE41h_zz9GjJaR3NZgw,7993
|
|
17
|
-
latch_asgi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
latch_asgi/server.py,sha256=kMZ7ivOk7VkZ5HjrIHcveXd2ZMawnnW7QM5-JuHDXZA,12047
|
|
19
|
-
latch_asgi-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|