grpcio-fips 1.53.2__0-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 (62) hide show
  1. grpc/__init__.py +2174 -0
  2. grpc/_auth.py +68 -0
  3. grpc/_channel.py +1767 -0
  4. grpc/_common.py +177 -0
  5. grpc/_compression.py +63 -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/cygrpc.cp310-win_amd64.pyd +0 -0
  10. grpc/_grpcio_metadata.py +1 -0
  11. grpc/_interceptor.py +638 -0
  12. grpc/_plugin_wrapping.py +121 -0
  13. grpc/_runtime_protos.py +159 -0
  14. grpc/_server.py +1141 -0
  15. grpc/_simple_stubs.py +486 -0
  16. grpc/_typing.py +58 -0
  17. grpc/_utilities.py +180 -0
  18. grpc/aio/__init__.py +95 -0
  19. grpc/aio/_base_call.py +248 -0
  20. grpc/aio/_base_channel.py +348 -0
  21. grpc/aio/_base_server.py +369 -0
  22. grpc/aio/_call.py +649 -0
  23. grpc/aio/_channel.py +492 -0
  24. grpc/aio/_interceptor.py +1003 -0
  25. grpc/aio/_metadata.py +120 -0
  26. grpc/aio/_server.py +209 -0
  27. grpc/aio/_typing.py +35 -0
  28. grpc/aio/_utils.py +22 -0
  29. grpc/beta/__init__.py +13 -0
  30. grpc/beta/_client_adaptations.py +706 -0
  31. grpc/beta/_metadata.py +52 -0
  32. grpc/beta/_server_adaptations.py +385 -0
  33. grpc/beta/implementations.py +311 -0
  34. grpc/beta/interfaces.py +163 -0
  35. grpc/beta/utilities.py +149 -0
  36. grpc/experimental/__init__.py +128 -0
  37. grpc/experimental/aio/__init__.py +16 -0
  38. grpc/experimental/gevent.py +27 -0
  39. grpc/experimental/session_cache.py +45 -0
  40. grpc/framework/__init__.py +13 -0
  41. grpc/framework/common/__init__.py +13 -0
  42. grpc/framework/common/cardinality.py +26 -0
  43. grpc/framework/common/style.py +24 -0
  44. grpc/framework/foundation/__init__.py +13 -0
  45. grpc/framework/foundation/abandonment.py +22 -0
  46. grpc/framework/foundation/callable_util.py +94 -0
  47. grpc/framework/foundation/future.py +219 -0
  48. grpc/framework/foundation/logging_pool.py +71 -0
  49. grpc/framework/foundation/stream.py +43 -0
  50. grpc/framework/foundation/stream_util.py +148 -0
  51. grpc/framework/interfaces/__init__.py +13 -0
  52. grpc/framework/interfaces/base/__init__.py +13 -0
  53. grpc/framework/interfaces/base/base.py +325 -0
  54. grpc/framework/interfaces/base/utilities.py +71 -0
  55. grpc/framework/interfaces/face/__init__.py +13 -0
  56. grpc/framework/interfaces/face/face.py +1049 -0
  57. grpc/framework/interfaces/face/utilities.py +168 -0
  58. grpcio_fips-1.53.2.dist-info/LICENSE +610 -0
  59. grpcio_fips-1.53.2.dist-info/METADATA +137 -0
  60. grpcio_fips-1.53.2.dist-info/RECORD +62 -0
  61. grpcio_fips-1.53.2.dist-info/WHEEL +5 -0
  62. grpcio_fips-1.53.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,137 @@
1
+ Metadata-Version: 2.1
2
+ Name: grpcio-fips
3
+ Version: 1.53.2
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
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.7
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: License :: OSI Approved :: Apache Software License
18
+ Requires-Python: >=3.7
19
+ License-File: LICENSE
20
+ Provides-Extra: protobuf
21
+ Requires-Dist: grpcio-tools >=1.53.2 ; extra == 'protobuf'
22
+
23
+ gRPC Python
24
+ ===========
25
+
26
+ |compat_check_pypi|
27
+
28
+ Package for gRPC Python.
29
+
30
+ .. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
31
+ :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio
32
+
33
+ Supported Python Versions
34
+ -------------------------
35
+ Python >= 3.7
36
+
37
+ Installation
38
+ ------------
39
+
40
+ gRPC Python is available for Linux, macOS, and Windows.
41
+
42
+ Installing From PyPI
43
+ ~~~~~~~~~~~~~~~~~~~~
44
+
45
+ If you are installing locally...
46
+
47
+ ::
48
+
49
+ $ pip install grpcio
50
+
51
+ Else system wide (on Ubuntu)...
52
+
53
+ ::
54
+
55
+ $ sudo pip install grpcio
56
+
57
+ If you're on Windows make sure that you installed the :code:`pip.exe` component
58
+ when you installed Python (if not go back and install it!) then invoke:
59
+
60
+ ::
61
+
62
+ $ pip.exe install grpcio
63
+
64
+ Windows users may need to invoke :code:`pip.exe` from a command line ran as
65
+ administrator.
66
+
67
+ n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
68
+ to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
69
+ version!
70
+
71
+ Installing From Source
72
+ ~~~~~~~~~~~~~~~~~~~~~~
73
+
74
+ Building from source requires that you have the Python headers (usually a
75
+ package named :code:`python-dev`).
76
+
77
+ ::
78
+
79
+ $ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
80
+ $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
81
+ $ cd $REPO_ROOT
82
+ $ git submodule update --init
83
+
84
+ # For the next two commands do `sudo pip install` if you get permission-denied errors
85
+ $ pip install -rrequirements.txt
86
+ $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
87
+
88
+ You cannot currently install Python from source on Windows. Things might work
89
+ out for you in MSYS2 (follow the Linux instructions), but it isn't officially
90
+ supported at the moment.
91
+
92
+ Troubleshooting
93
+ ~~~~~~~~~~~~~~~
94
+
95
+ Help, I ...
96
+
97
+ * **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
98
+ grpc**
99
+
100
+ This is likely because :code:`pip` doesn't own the offending dependency,
101
+ which in turn is likely because your operating system's package manager owns
102
+ it. You'll need to force the installation of the dependency:
103
+
104
+ :code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`
105
+
106
+ For example, if you get an error like the following:
107
+
108
+ ::
109
+
110
+ Traceback (most recent call last):
111
+ File "<string>", line 17, in <module>
112
+ ...
113
+ File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
114
+ raise VersionConflict(dist, req)
115
+ pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))
116
+
117
+ You can fix it by doing:
118
+
119
+ ::
120
+
121
+ sudo pip install --ignore-installed six
122
+
123
+ * **... see the following error on some platforms**
124
+
125
+ ::
126
+
127
+ /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
128
+ #include "Python.h"
129
+ ^
130
+ compilation terminated.
131
+
132
+ You can fix it by installing `python-dev` package. i.e
133
+
134
+ ::
135
+
136
+ sudo apt-get install python-dev
137
+
@@ -0,0 +1,62 @@
1
+ grpc/__init__.py,sha256=sbYQSOveSc_maLdCDy2UNiYtNhfcCnREZUVBn_cJvgU,83579
2
+ grpc/_auth.py,sha256=Fj61j6X4Vg4WeiD-fIG_9TrDxyg3oH6-uobKDp4lZsQ,2693
3
+ grpc/_channel.py,sha256=Z75zSSSZJVW9vyk0Fwg_ewO5tFNNlQt70OmDK95EF5o,75278
4
+ grpc/_common.py,sha256=tkFeuX-Qa6rGgZ74xiaVxYHLXl_TJd_qw9iP8XMWIlo,7069
5
+ grpc/_compression.py,sha256=7UzHIVgOZFr12b2mQ9Y_Kn4L8_-V_W89bwloKbzmfFg,2026
6
+ grpc/_grpcio_metadata.py,sha256=mUau0AU5QdZgB7GvxqvXaUhAKd9J2y9RmNgkAYx-vZo,26
7
+ grpc/_interceptor.py,sha256=3-EjgehwH5Upe-cIKu-scPxN2FqzbV7PQbDuZTFCyz0,26200
8
+ grpc/_plugin_wrapping.py,sha256=xyov6telOUN86InFKc6H9xh116RkeUozS8kD-ZYz2mM,4430
9
+ grpc/_runtime_protos.py,sha256=zlbr7muqZ--EENOhLwq0JE9IZkKc9QdGlanL_Z_ggQs,5951
10
+ grpc/_server.py,sha256=qXx5HYBOVWY8xlsO7ziGdXybJVPXsPhQKMq7YcLtbBc,46194
11
+ grpc/_simple_stubs.py,sha256=xj96BEwbFWbIk-EuZ72XDMx6jhxPUeKF_8SGlQdxqCc,23894
12
+ grpc/_typing.py,sha256=z82wg-3W4yEV4fFH0aTyjihkJ1wp8p5x2tOLvud8ado,2725
13
+ grpc/_utilities.py,sha256=GYXVww5xcIECiwzyiZDUBglLziVwVkDeIJibO-1lX2g,6172
14
+ grpc/_cython/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
15
+ grpc/_cython/cygrpc.cp310-win_amd64.pyd,sha256=TR8Ws_FhNeLGt7xunK53npdLPBOR1TTtCy-osF9EJ94,5793792
16
+ grpc/_cython/_credentials/roots.pem,sha256=iQrx6SIqWnawwL7sTFcKoy0a1ZIIj89WEN6VR4qN5jg,268777
17
+ grpc/_cython/_cygrpc/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
18
+ grpc/aio/__init__.py,sha256=uyVsE1V8un3B9RvbJnRZyTjLhZS-HEx9OdZBD_DLsr0,3255
19
+ grpc/aio/_base_call.py,sha256=50wOEvDdKdeNQO70oJHVHHSXAQhr3Wrg7rx1ybk4cZI,7561
20
+ grpc/aio/_base_channel.py,sha256=Z3YRSdOdOMVTWpUq24v-6uLsS0dHZWAg-s541X9eEMY,13265
21
+ grpc/aio/_base_server.py,sha256=qCFijwka2msneakjZjSm6xbPqrF2i3h5QVQSQ2O8HGM,12489
22
+ grpc/aio/_call.py,sha256=joHl2zcV3sdnLchLtzdiu_qYEiUefq4YKExAHRiuOT8,25057
23
+ grpc/aio/_channel.py,sha256=niaCdOMZZd-sLeRSUnSRUhDtS2sGwScWpRhNkD3fEdQ,20602
24
+ grpc/aio/_interceptor.py,sha256=LvPpb5hyMOvYWK75BVtT_6LmFC98vEDm88ISC4GSGU4,40965
25
+ grpc/aio/_metadata.py,sha256=twbKQ6_ZuiVyAKM2LaLvSelTbOTLf2liM6CeTk6L-yY,4690
26
+ grpc/aio/_server.py,sha256=2iqKzIt2FBnKjPlv652C7fB9BHizPR1UI4qmDJ7OUX0,8868
27
+ grpc/aio/_typing.py,sha256=GQrBzAGdgEKqhqjp_AyBAwNc9--VGkU8t1frzdodEls,1398
28
+ grpc/aio/_utils.py,sha256=Fw8FpKtucE2a2VRNF3JyAMzh0BtgNQZKpE5jWlHlwQw,843
29
+ grpc/beta/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
30
+ grpc/beta/_client_adaptations.py,sha256=EMkqT0wLwNTqNmmQjha8cmuni76or7SlMKff3SNRpR8,28218
31
+ grpc/beta/_metadata.py,sha256=tPZe4P32VbdFsgMZoGsKqEOT8iODjnwcFeDiH-lFZDs,1658
32
+ grpc/beta/_server_adaptations.py,sha256=ytUc5NfbIJirH4vENQMUiKUQJys9vg-8bFh-Gjax7gw,14202
33
+ grpc/beta/implementations.py,sha256=3sVjq0khJkWjrSI3730ZWBOkVqLAqYjltsi5tAvdDJY,12133
34
+ grpc/beta/interfaces.py,sha256=3lo3HICHzqfufG-zMC9dqdfzCoTrJa5QfBMJdLf1x3M,6035
35
+ grpc/beta/utilities.py,sha256=7ErgL2XBwlkz-X07H3NLKcUahaXV3jR6WRPfDZRXZnw,5082
36
+ grpc/experimental/__init__.py,sha256=g1VWiXXMfnjYZ2fIb9QkXZWldiiCGI83KjHR-X3QSmU,4186
37
+ grpc/experimental/gevent.py,sha256=ZmFL0iK7irhC9JtTC2JJP23-IRG3_ZCohRQBhhVWuyM,1000
38
+ grpc/experimental/session_cache.py,sha256=OdASXKtZYY8vP1Yo6GeRi4dfEaVuvyiOK5CknnROExE,1578
39
+ grpc/experimental/aio/__init__.py,sha256=QoEtaa5C408IeaaSMKvooYNJdWCqyX6X9UYF-maJcIY,676
40
+ grpc/framework/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
41
+ grpc/framework/common/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
42
+ grpc/framework/common/cardinality.py,sha256=v0Gfp8V2mrlgJEq6TFdEYvKdtcG5RhPzKyzqEYSKnww,1014
43
+ grpc/framework/common/style.py,sha256=LsshsJwnoHJsXt6NSfrW3lBBKIpHcAa6crKQQXjkcjM,848
44
+ grpc/framework/foundation/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
45
+ grpc/framework/foundation/abandonment.py,sha256=p1Vg5oK33yGOeX93JgYvdsBXdTtM6lzCIZSXyWcaRQU,894
46
+ grpc/framework/foundation/callable_util.py,sha256=_3YdjcBGdxoKKWVaDRAdPn45uVTlF5d_XTZL4yin_bg,3214
47
+ grpc/framework/foundation/future.py,sha256=VYWb2bao8Zg13MmdL5ziS3LNmjB2i2aej9z9VRRyLFE,8274
48
+ grpc/framework/foundation/logging_pool.py,sha256=O8lN0FtvMvQiAT34pf_Uj8F1xyT3iSJI3v6BYCnTHFo,2347
49
+ grpc/framework/foundation/stream.py,sha256=fngVsdMDYkAFTRhOYXApjvh5DP7KRKAAYAhFhpMtRlU,1396
50
+ grpc/framework/foundation/stream_util.py,sha256=xbo7u8uXLBsQ_vf_NKHsls8mFOmmsaLQni51yk_xLpw,4920
51
+ grpc/framework/interfaces/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
52
+ grpc/framework/interfaces/base/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
53
+ grpc/framework/interfaces/base/base.py,sha256=I3V9xxY5H5V3E55WddNJ6pcqF0mX74CicAcuCS_3suM,12191
54
+ grpc/framework/interfaces/base/utilities.py,sha256=EnchGOBWBOMS5j2zpuSZxn0XXi9gmjTVZ8cOTxCG9IM,2526
55
+ grpc/framework/interfaces/face/__init__.py,sha256=v-bMmhfnkYP7kR6Mw9wPLG_cCagk-ZKiUZi6pyap2GU,590
56
+ grpc/framework/interfaces/face/face.py,sha256=3L7zr0ojWB5bDN_-tXpyvzMltNPTdcHv2ClKVqghfvs,40388
57
+ grpc/framework/interfaces/face/utilities.py,sha256=tF6O4ghE7JlbnZ3vvNyLpTuQ3yzrlMjrAaGZvRQba_s,6879
58
+ grpcio_fips-1.53.2.dist-info/LICENSE,sha256=r2PsgwP9UTw5BUp_27KVfsqU-p-O8FvhUTnWMS8iJ3s,30297
59
+ grpcio_fips-1.53.2.dist-info/METADATA,sha256=lz8IxYaucOT3dtVeCHMiFC9YP8JsL5iU96s5he_KUm8,3919
60
+ grpcio_fips-1.53.2.dist-info/WHEEL,sha256=5JPYeYl5ZdvdSkrGS4u21mmpPzpFx42qrXOSIgWf4pg,102
61
+ grpcio_fips-1.53.2.dist-info/top_level.txt,sha256=eEd2Jq_aVQFp38bWW8Pfwjz_5iibqeOFT-2zXlPAq_8,5
62
+ grpcio_fips-1.53.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-win_amd64
5
+
@@ -0,0 +1 @@
1
+ grpc