grpcio-fips 1.70.0__1-cp310-cp310-win_amd64.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.
Files changed (66) hide show
  1. grpc/__init__.py +2348 -0
  2. grpc/_auth.py +80 -0
  3. grpc/_channel.py +2267 -0
  4. grpc/_common.py +183 -0
  5. grpc/_compression.py +71 -0
  6. grpc/_cython/__init__.py +13 -0
  7. grpc/_cython/_credentials/roots.pem +4337 -0
  8. grpc/_cython/_cygrpc/__init__.py +13 -0
  9. grpc/_cython/ayx-crypto-library.dll +0 -0
  10. grpc/_cython/cygrpc.cp310-win_amd64.pyd +0 -0
  11. grpc/_cython/libcrypto-3-x64.dll +0 -0
  12. grpc/_cython/libssl-3-x64.dll +0 -0
  13. grpc/_grpcio_metadata.py +1 -0
  14. grpc/_interceptor.py +813 -0
  15. grpc/_observability.py +299 -0
  16. grpc/_plugin_wrapping.py +136 -0
  17. grpc/_runtime_protos.py +165 -0
  18. grpc/_server.py +1528 -0
  19. grpc/_simple_stubs.py +588 -0
  20. grpc/_typing.py +95 -0
  21. grpc/_utilities.py +222 -0
  22. grpc/aio/__init__.py +95 -0
  23. grpc/aio/_base_call.py +257 -0
  24. grpc/aio/_base_channel.py +364 -0
  25. grpc/aio/_base_server.py +385 -0
  26. grpc/aio/_call.py +764 -0
  27. grpc/aio/_channel.py +627 -0
  28. grpc/aio/_interceptor.py +1178 -0
  29. grpc/aio/_metadata.py +137 -0
  30. grpc/aio/_server.py +239 -0
  31. grpc/aio/_typing.py +43 -0
  32. grpc/aio/_utils.py +22 -0
  33. grpc/beta/__init__.py +13 -0
  34. grpc/beta/_client_adaptations.py +1015 -0
  35. grpc/beta/_metadata.py +56 -0
  36. grpc/beta/_server_adaptations.py +465 -0
  37. grpc/beta/implementations.py +345 -0
  38. grpc/beta/interfaces.py +163 -0
  39. grpc/beta/utilities.py +153 -0
  40. grpc/experimental/__init__.py +134 -0
  41. grpc/experimental/aio/__init__.py +16 -0
  42. grpc/experimental/gevent.py +27 -0
  43. grpc/experimental/session_cache.py +45 -0
  44. grpc/framework/__init__.py +13 -0
  45. grpc/framework/common/__init__.py +13 -0
  46. grpc/framework/common/cardinality.py +26 -0
  47. grpc/framework/common/style.py +24 -0
  48. grpc/framework/foundation/__init__.py +13 -0
  49. grpc/framework/foundation/abandonment.py +22 -0
  50. grpc/framework/foundation/callable_util.py +98 -0
  51. grpc/framework/foundation/future.py +219 -0
  52. grpc/framework/foundation/logging_pool.py +72 -0
  53. grpc/framework/foundation/stream.py +43 -0
  54. grpc/framework/foundation/stream_util.py +148 -0
  55. grpc/framework/interfaces/__init__.py +13 -0
  56. grpc/framework/interfaces/base/__init__.py +13 -0
  57. grpc/framework/interfaces/base/base.py +328 -0
  58. grpc/framework/interfaces/base/utilities.py +83 -0
  59. grpc/framework/interfaces/face/__init__.py +13 -0
  60. grpc/framework/interfaces/face/face.py +1084 -0
  61. grpc/framework/interfaces/face/utilities.py +245 -0
  62. grpcio_fips-1.70.0.dist-info/LICENSE +610 -0
  63. grpcio_fips-1.70.0.dist-info/METADATA +130 -0
  64. grpcio_fips-1.70.0.dist-info/RECORD +66 -0
  65. grpcio_fips-1.70.0.dist-info/WHEEL +5 -0
  66. grpcio_fips-1.70.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,130 @@
1
+ Metadata-Version: 2.1
2
+ Name: grpcio-fips
3
+ Version: 1.70.0
4
+ Summary: HTTP/2-based RPC framework
5
+ Home-page: https://grpc.io
6
+ Author: The gRPC Authors
7
+ Author-email: grpc-io@googlegroups.com
8
+ License: Apache License 2.0
9
+ Project-URL: Source Code, https://github.com/grpc/grpc
10
+ Project-URL: Bug Tracker, https://github.com/grpc/grpc/issues
11
+ Project-URL: Documentation, https://grpc.github.io/grpc/python
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: License :: OSI Approved :: Apache Software License
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/x-rst
24
+ License-File: LICENSE
25
+ Provides-Extra: protobuf
26
+ Requires-Dist: grpcio-tools>=1.70.0; extra == "protobuf"
27
+
28
+ gRPC Python
29
+ ===========
30
+
31
+ |compat_check_pypi|
32
+
33
+ Package for gRPC Python.
34
+
35
+ .. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
36
+ :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio
37
+
38
+
39
+ Installation
40
+ ------------
41
+
42
+ gRPC Python is available for Linux, macOS, and Windows.
43
+
44
+ Installing From PyPI
45
+ ~~~~~~~~~~~~~~~~~~~~
46
+
47
+ If you are installing locally...
48
+
49
+ ::
50
+
51
+ $ pip install grpcio
52
+
53
+ Else system wide (on Ubuntu)...
54
+
55
+ ::
56
+
57
+ $ sudo pip install grpcio
58
+
59
+ If you're on Windows make sure that you installed the :code:`pip.exe` component
60
+ when you installed Python (if not go back and install it!) then invoke:
61
+
62
+ ::
63
+
64
+ $ pip.exe install grpcio
65
+
66
+ Windows users may need to invoke :code:`pip.exe` from a command line ran as
67
+ administrator.
68
+
69
+ n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
70
+ to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
71
+ version!
72
+
73
+ Installing From Source
74
+ ~~~~~~~~~~~~~~~~~~~~~~
75
+
76
+ Building from source requires that you have the Python headers (usually a
77
+ package named :code:`python-dev`).
78
+
79
+ ::
80
+
81
+ $ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
82
+ $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
83
+ $ cd $REPO_ROOT
84
+ $ git submodule update --init
85
+
86
+ # To include systemd socket-activation feature in the build,
87
+ # first install the `libsystemd-dev` package, then :
88
+ $ export GRPC_PYTHON_BUILD_WITH_SYSTEMD=1
89
+
90
+ # For the next two commands do `sudo pip install` if you get permission-denied errors
91
+ $ pip install -r requirements.txt
92
+ $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
93
+
94
+ You cannot currently install Python from source on Windows. Things might work
95
+ out for you in MSYS2 (follow the Linux instructions), but it isn't officially
96
+ supported at the moment.
97
+
98
+ Troubleshooting
99
+ ~~~~~~~~~~~~~~~
100
+
101
+ Help, I ...
102
+
103
+ * **... see the following error on some platforms**
104
+
105
+ ::
106
+
107
+ /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
108
+ #include "Python.h"
109
+ ^
110
+ compilation terminated.
111
+
112
+ You can fix it by installing `python-dev` package. i.e
113
+
114
+ ::
115
+
116
+ sudo apt-get install python-dev
117
+
118
+
119
+ Versioning
120
+ ~~~~~~~~~~
121
+
122
+ gRPC Python is developed in a monorepo shared with implementations of gRPC in
123
+ other programming languages. While the minor versions are released in
124
+ lock-step with other languages in the repo (e.g. 1.63.0 is guaranteed to exist
125
+ for all languages), patch versions may be specific to only a single
126
+ language. For example, if 1.63.1 is a C++-specific patch, 1.63.1 may not be
127
+ uploaded to PyPi. As a result, it is __not__ a good assumption that the latest
128
+ patch for a given minor version on Github is also the latest patch for that
129
+ same minor version on PyPi.
130
+
@@ -0,0 +1,66 @@
1
+ grpc/__init__.py,sha256=Vl7Jh3KVTCHAtN0kSoyHhte6BvMBY4_6E0QQMZEvMBE,84681
2
+ grpc/_auth.py,sha256=7GGYpUPXKqU7_iF_jniN1fDWch0_1T3x0nkhzRfsf40,2715
3
+ grpc/_channel.py,sha256=Yq8CYcVTlgi3hWonOG3FyDwhP_03HCWjWMLb1wX4oQU,83613
4
+ grpc/_common.py,sha256=L-pYsWV2y6d9EYCM9XnEBJzw1QoSDKfTbONqPiL6Z0g,6967
5
+ grpc/_compression.py,sha256=hrvGhY68cMej3c53nV2CJg_pGg5kZrMWyUQBrJKxLiY,2054
6
+ grpc/_grpcio_metadata.py,sha256=FzewghcwpuriihMSXh-O15yGmqR6ktYayw4abswMmq4,26
7
+ grpc/_interceptor.py,sha256=xkXA_oQCZXBTBiIWz-OmX81z7gf4KU1_dqU6wqmzBoY,26675
8
+ grpc/_observability.py,sha256=HAOiiUGfC4JTM2sdjyANTY7mj7kRghx3FEAJM1JPQ3E,10716
9
+ grpc/_plugin_wrapping.py,sha256=sd98vNKf1TqtQWMSDIKcT1z8tX2lwKrfbjkYQ1l4EB0,4518
10
+ grpc/_runtime_protos.py,sha256=mhCStPUyivS2LUvN8hIXO92KaqzcRn4Q6kTeyTesNDo,5970
11
+ grpc/_server.py,sha256=7ZDwXKcOhiQPjtNjr60BPciIGEKW6KRtbIn9wQHaLPI,52413
12
+ grpc/_simple_stubs.py,sha256=3p-NQBfa41JcLydxBFIUfbj28XrlIgV1VVAOdrxT4gE,25198
13
+ grpc/_typing.py,sha256=jsam5hDuif4oZU-3t8wrDnEF2IIh1AQHdkJe4hqVMuk,2853
14
+ grpc/_utilities.py,sha256=n6dxyRWRfDjH8bmgrteEPDNdve_fVVYUZXhMk-8-ZcM,7265
15
+ grpc/_cython/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
16
+ grpc/_cython/ayx-crypto-library.dll,sha256=LocBVbALjeRT9i4BaoA-JnzGeonMuhyqGiT8w_rrkEc,217088
17
+ grpc/_cython/cygrpc.cp310-win_amd64.pyd,sha256=NqAUy9RR2pLiP8qVe1pmT0QjV-dNqSSWiqRfnqWzwBU,8526848
18
+ grpc/_cython/libcrypto-3-x64.dll,sha256=4Y3C1veC5TlYEtg5MuybvAgQo349Y1JbAPoweMsE0g8,5174272
19
+ grpc/_cython/libssl-3-x64.dll,sha256=EBoklWUVxX7WQ4t6xgNM91CWkyDvTYNyqazfISvOSNc,779264
20
+ grpc/_cython/_credentials/roots.pem,sha256=iQrx6SIqWnawwL7sTFcKoy0a1ZIIj89WEN6VR4qN5jg,268777
21
+ grpc/_cython/_cygrpc/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
22
+ grpc/aio/__init__.py,sha256=ww6NbDPsc3XAFs8WSYykRYIMemQ8wx4tnoH7UTF6DUg,3255
23
+ grpc/aio/_base_call.py,sha256=2u6QA8f1cEfDOjEPjH3Ermthji9yP6PiEZyMm9JS1Lg,7817
24
+ grpc/aio/_base_channel.py,sha256=Qp_pxAKuiIKyFbTupCqts56p4NOhj0yi9e3vlSaefsQ,14257
25
+ grpc/aio/_base_server.py,sha256=5T_jhzYFmETW9d4mkkKZ5LAcPht5mufvK1jInEiCcpc,12945
26
+ grpc/aio/_call.py,sha256=V136GU08-lXEjU22DfesDxTC-5w7U4Azw93Wa76w0K4,26120
27
+ grpc/aio/_channel.py,sha256=5BAAsEujDAE2c7OhP65_y0G2q397epT1udBINlk1x7M,22726
28
+ grpc/aio/_interceptor.py,sha256=pN3bZ_gP-kMZubIJ0o4gyGS6kCVMgTFw8KYrmOfdxEU,42523
29
+ grpc/aio/_metadata.py,sha256=wvoXY3ky2RI6355iLS452nvQ6xqJry8ZiagUkTsaDws,5146
30
+ grpc/aio/_server.py,sha256=WKTxg5gbjtP7uD5ju1Yc5yWO6R_eA39gfMAL7RviXDE,9170
31
+ grpc/aio/_typing.py,sha256=QgYlt_nen7CnvtDxCcpUw0BVjRDo7roQHkycqzfcz0I,1421
32
+ grpc/aio/_utils.py,sha256=Fw8FpKtucE2a2VRNF3JyAMzh0BtgNQZKpE5jWlHlwQw,843
33
+ grpc/beta/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
34
+ grpc/beta/_client_adaptations.py,sha256=4C6KYM68G9Dg76SbPNMnGrpcj3I1aLG7nAdvDEuzMl8,28038
35
+ grpc/beta/_metadata.py,sha256=4bRwelrMpqyqZxmTb_lAhGDpICyBVR-qmsvB1Ti8JrA,1694
36
+ grpc/beta/_server_adaptations.py,sha256=T7EHbyI8BCB_eMyGUoBXnIxQcjp_CoV2jHRPZ8P5sUY,15076
37
+ grpc/beta/implementations.py,sha256=fEpftVpElsOzHK3MxVVQqE21CZ5HdBUkSAbjLNvU1Ew,12403
38
+ grpc/beta/interfaces.py,sha256=U5D3tvq7Z_t4fCYJD9RfFqqnpSvS9VmB4cYQTtari-Y,6245
39
+ grpc/beta/utilities.py,sha256=Yt9_vnL1Bx6l5QO4UL3-TMb4AqKzTJNhmDkRawmlXfg,5158
40
+ grpc/experimental/__init__.py,sha256=J_nNA_SE-VfwMXleVA9CVxc2gNXpZPXIQNSflWeQ1S0,4237
41
+ grpc/experimental/gevent.py,sha256=ZmFL0iK7irhC9JtTC2JJP23-IRG3_ZCohRQBhhVWuyM,1000
42
+ grpc/experimental/session_cache.py,sha256=OdASXKtZYY8vP1Yo6GeRi4dfEaVuvyiOK5CknnROExE,1578
43
+ grpc/experimental/aio/__init__.py,sha256=QoEtaa5C408IeaaSMKvooYNJdWCqyX6X9UYF-maJcIY,676
44
+ grpc/framework/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
45
+ grpc/framework/common/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
46
+ grpc/framework/common/cardinality.py,sha256=lhyS0Chc2kUCH84K069F2PgNLFJHpjfBjSdN79olL8E,1014
47
+ grpc/framework/common/style.py,sha256=eFEX5mA2ynBzHFf8H2eKeAFp2mm-fR343MiGq9Xq_sI,848
48
+ grpc/framework/foundation/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
49
+ grpc/framework/foundation/abandonment.py,sha256=lI3FSuizdQ85z8sxEKluhvYj9I64YeImvqWDuWu6JXs,900
50
+ grpc/framework/foundation/callable_util.py,sha256=QJZNFhQXoJFD6DAeiRe3KGSnJd-br0C7aqgsagAR1HI,3249
51
+ grpc/framework/foundation/future.py,sha256=WGkqWv-4W0ahgE0iRsgsKdIuVNIBny22OrARQb4AMfc,8592
52
+ grpc/framework/foundation/logging_pool.py,sha256=4hGk3EL1_QyDyF4ic4CF5SI2rrTwWe7Pczj-dJEyuYs,2320
53
+ grpc/framework/foundation/stream.py,sha256=l2VMgFK5qhPMBT0yjM75ZppHMIf5Lzz6Iwnp6Wd9wAw,1420
54
+ grpc/framework/foundation/stream_util.py,sha256=xbo7u8uXLBsQ_vf_NKHsls8mFOmmsaLQni51yk_xLpw,4920
55
+ grpc/framework/interfaces/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
56
+ grpc/framework/interfaces/base/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
57
+ grpc/framework/interfaces/base/base.py,sha256=5Bvs4SPEUAhJUQCvflvP4BqUx-UXs2SGBAXf2hAv9TA,12562
58
+ grpc/framework/interfaces/base/utilities.py,sha256=fN-_DUGGZdbb8HwHmOmWYHcSRHZbWiPy1ScROb9zCzc,2445
59
+ grpc/framework/interfaces/face/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
60
+ grpc/framework/interfaces/face/face.py,sha256=Ml3loDRLwrunMkCs_B9iE6uJEbV3QSCciWxLWykGaYo,40784
61
+ grpc/framework/interfaces/face/utilities.py,sha256=i2hcUy2q1bGfZ2YGgz8vR1Hhjxd3VmqWQAN5G6Tel-0,7022
62
+ grpcio_fips-1.70.0.dist-info/LICENSE,sha256=r2PsgwP9UTw5BUp_27KVfsqU-p-O8FvhUTnWMS8iJ3s,30297
63
+ grpcio_fips-1.70.0.dist-info/METADATA,sha256=uMwMhneelJ9TPjvRzWLiSl2wnvUlMlRzLU4SS0WrTTs,4021
64
+ grpcio_fips-1.70.0.dist-info/WHEEL,sha256=NVXpD7b4Gxps0cd2ds5rr5TG8W4ApEwx_i5J99qMZ5E,102
65
+ grpcio_fips-1.70.0.dist-info/top_level.txt,sha256=eEd2Jq_aVQFp38bWW8Pfwjz_5iibqeOFT-2zXlPAq_8,5
66
+ grpcio_fips-1.70.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-win_amd64
5
+
@@ -0,0 +1 @@
1
+ grpc