coredis 5.2.0__cp314-cp314-macosx_10_13_x86_64.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 coredis might be problematic. Click here for more details.

Files changed (100) hide show
  1. 22fe76227e35f92ab5c3__mypyc.cpython-314-darwin.so +0 -0
  2. coredis/__init__.py +42 -0
  3. coredis/_enum.py +42 -0
  4. coredis/_json.py +11 -0
  5. coredis/_packer.cpython-314-darwin.so +0 -0
  6. coredis/_packer.py +71 -0
  7. coredis/_protocols.py +50 -0
  8. coredis/_py_311_typing.py +20 -0
  9. coredis/_py_312_typing.py +17 -0
  10. coredis/_sidecar.py +114 -0
  11. coredis/_utils.cpython-314-darwin.so +0 -0
  12. coredis/_utils.py +440 -0
  13. coredis/_version.py +34 -0
  14. coredis/_version.pyi +1 -0
  15. coredis/cache.py +801 -0
  16. coredis/client/__init__.py +6 -0
  17. coredis/client/basic.py +1238 -0
  18. coredis/client/cluster.py +1264 -0
  19. coredis/commands/__init__.py +64 -0
  20. coredis/commands/_key_spec.py +517 -0
  21. coredis/commands/_utils.py +108 -0
  22. coredis/commands/_validators.py +159 -0
  23. coredis/commands/_wrappers.py +175 -0
  24. coredis/commands/bitfield.py +110 -0
  25. coredis/commands/constants.py +662 -0
  26. coredis/commands/core.py +8484 -0
  27. coredis/commands/function.py +408 -0
  28. coredis/commands/monitor.py +168 -0
  29. coredis/commands/pubsub.py +905 -0
  30. coredis/commands/request.py +108 -0
  31. coredis/commands/script.py +296 -0
  32. coredis/commands/sentinel.py +246 -0
  33. coredis/config.py +50 -0
  34. coredis/connection.py +906 -0
  35. coredis/constants.cpython-314-darwin.so +0 -0
  36. coredis/constants.py +37 -0
  37. coredis/credentials.py +45 -0
  38. coredis/exceptions.py +360 -0
  39. coredis/experimental/__init__.py +1 -0
  40. coredis/globals.py +23 -0
  41. coredis/modules/__init__.py +117 -0
  42. coredis/modules/autocomplete.py +138 -0
  43. coredis/modules/base.py +262 -0
  44. coredis/modules/filters.py +1319 -0
  45. coredis/modules/graph.py +362 -0
  46. coredis/modules/json.py +691 -0
  47. coredis/modules/response/__init__.py +0 -0
  48. coredis/modules/response/_callbacks/__init__.py +0 -0
  49. coredis/modules/response/_callbacks/autocomplete.py +42 -0
  50. coredis/modules/response/_callbacks/graph.py +237 -0
  51. coredis/modules/response/_callbacks/json.py +21 -0
  52. coredis/modules/response/_callbacks/search.py +221 -0
  53. coredis/modules/response/_callbacks/timeseries.py +158 -0
  54. coredis/modules/response/types.py +179 -0
  55. coredis/modules/search.py +1089 -0
  56. coredis/modules/timeseries.py +1139 -0
  57. coredis/parser.cpython-314-darwin.so +0 -0
  58. coredis/parser.py +344 -0
  59. coredis/pipeline.py +1225 -0
  60. coredis/pool/__init__.py +11 -0
  61. coredis/pool/basic.py +453 -0
  62. coredis/pool/cluster.py +517 -0
  63. coredis/pool/nodemanager.py +340 -0
  64. coredis/py.typed +0 -0
  65. coredis/recipes/__init__.py +0 -0
  66. coredis/recipes/credentials/__init__.py +5 -0
  67. coredis/recipes/credentials/iam_provider.py +63 -0
  68. coredis/recipes/locks/__init__.py +5 -0
  69. coredis/recipes/locks/extend.lua +17 -0
  70. coredis/recipes/locks/lua_lock.py +281 -0
  71. coredis/recipes/locks/release.lua +10 -0
  72. coredis/response/__init__.py +5 -0
  73. coredis/response/_callbacks/__init__.py +538 -0
  74. coredis/response/_callbacks/acl.py +32 -0
  75. coredis/response/_callbacks/cluster.py +183 -0
  76. coredis/response/_callbacks/command.py +86 -0
  77. coredis/response/_callbacks/connection.py +31 -0
  78. coredis/response/_callbacks/geo.py +58 -0
  79. coredis/response/_callbacks/hash.py +85 -0
  80. coredis/response/_callbacks/keys.py +59 -0
  81. coredis/response/_callbacks/module.py +33 -0
  82. coredis/response/_callbacks/script.py +85 -0
  83. coredis/response/_callbacks/sentinel.py +179 -0
  84. coredis/response/_callbacks/server.py +241 -0
  85. coredis/response/_callbacks/sets.py +44 -0
  86. coredis/response/_callbacks/sorted_set.py +204 -0
  87. coredis/response/_callbacks/streams.py +185 -0
  88. coredis/response/_callbacks/strings.py +70 -0
  89. coredis/response/_callbacks/vector_sets.py +159 -0
  90. coredis/response/_utils.py +33 -0
  91. coredis/response/types.py +416 -0
  92. coredis/retry.py +233 -0
  93. coredis/sentinel.py +477 -0
  94. coredis/stream.py +369 -0
  95. coredis/tokens.py +2286 -0
  96. coredis/typing.py +580 -0
  97. coredis-5.2.0.dist-info/METADATA +211 -0
  98. coredis-5.2.0.dist-info/RECORD +100 -0
  99. coredis-5.2.0.dist-info/WHEEL +6 -0
  100. coredis-5.2.0.dist-info/licenses/LICENSE +23 -0
@@ -0,0 +1,211 @@
1
+ Metadata-Version: 2.4
2
+ Name: coredis
3
+ Version: 5.2.0
4
+ Summary: Python async client for Redis key-value store
5
+ Project-URL: Homepage, https://github.com/alisaifee/coredis
6
+ Project-URL: Source, https://github.com/alisaifee/coredis
7
+ Project-URL: Changelog, https://github.com/alisaifee/coredis/releases
8
+ Project-URL: Documentation, https://coredis.readthedocs.org
9
+ Author-email: Ali-Akber Saifee <ali@indydevs.org>
10
+ Maintainer-email: Ali-Akber Saifee <ali@indydevs.org>
11
+ License-Expression: MIT
12
+ License-File: LICENSE
13
+ Keywords: Redis,asyncio,key-value store
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
23
+ Requires-Python: >=3.10
24
+ Requires-Dist: async-timeout<6,>4
25
+ Requires-Dist: beartype>=0.20
26
+ Requires-Dist: deprecated>=1.2
27
+ Requires-Dist: packaging<26,>=21
28
+ Requires-Dist: pympler<2,>1
29
+ Requires-Dist: typing-extensions>=4.13
30
+ Provides-Extra: recipes
31
+ Requires-Dist: aiobotocore>=2.15.2; extra == 'recipes'
32
+ Requires-Dist: asyncache>=0.3.1; extra == 'recipes'
33
+ Description-Content-Type: text/markdown
34
+
35
+ # coredis
36
+
37
+ [![docs](https://readthedocs.org/projects/coredis/badge/?version=stable)](https://coredis.readthedocs.org)
38
+ [![codecov](https://codecov.io/gh/alisaifee/coredis/branch/master/graph/badge.svg)](https://codecov.io/gh/alisaifee/coredis)
39
+ [![Latest Version in PyPI](https://img.shields.io/pypi/v/coredis.svg)](https://pypi.python.org/pypi/coredis/)
40
+ [![ci](https://github.com/alisaifee/coredis/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/alisaifee/coredis/actions?query=branch%3Amaster+workflow%3ACI)
41
+ [![Supported Python versions](https://img.shields.io/pypi/pyversions/coredis.svg)](https://pypi.python.org/pypi/coredis/)
42
+
43
+ ______________________________________________________________________
44
+
45
+ coredis is an async redis client with support for redis server, cluster & sentinel.
46
+
47
+ - The client API uses the specifications in the [Redis command documentation](https://redis.io/commands/) to define the API by using the following conventions:
48
+
49
+ - Arguments retain naming from redis as much as possible
50
+ - Only optional variadic arguments are mapped to variadic positional or keyword arguments.
51
+ When the variable length arguments are not optional (which is almost always the case) the expected argument
52
+ is an iterable of type [Parameters](https://coredis.readthedocs.io/en/latest/api/typing.html#coredis.typing.Parameters) or `Mapping`.
53
+ - Pure tokens used as flags are mapped to boolean arguments
54
+ - `One of` arguments accepting pure tokens are collapsed and accept a [PureToken](https://coredis.readthedocs.io/en/latest/api/utilities.html#coredis.tokens.PureToken)
55
+
56
+ - Responses are mapped between RESP and python types as closely as possible.
57
+
58
+ - For higher level concepts such as Pipelines, LUA Scripts, PubSub & Streams
59
+ abstractions are provided to encapsulate recommended patterns.
60
+ See the [Handbook](https://coredis.readthedocs.io/en/latest/handbook/index.html)
61
+ and the [API Documentation](https://coredis.readthedocs.io/en/latest/api/index.html)
62
+ for more details.
63
+
64
+ ______________________________________________________________________
65
+
66
+ <!-- TOC depthFrom:2 depthTo:6 withLinks:1 updateOnSave:1 orderedList:0 -->
67
+
68
+ - [Installation](#installation)
69
+ - [Feature Summary](#feature-summary)
70
+ - [Deployment topologies](#deployment-topologies)
71
+ - [Application patterns](#application-patterns)
72
+ - [Server side scripting](#server-side-scripting)
73
+ - [Redis Modules](#redis-modules)
74
+ - [Miscellaneous](#miscellaneous)
75
+ - [Quick start](#quick-start)
76
+ - [Single Node or Cluster client](#single-node-or-cluster-client)
77
+ - [Sentinel](#sentinel)
78
+ - [Compatibility](#compatibility)
79
+ - [Supported python versions](#supported-python-versions)
80
+ - [Redis API compatible databases backends](#redis-api-compatible-databases)
81
+ - [References](#references)
82
+
83
+ <!-- /TOC -->
84
+
85
+ ## Installation
86
+
87
+ To install coredis:
88
+
89
+ ```bash
90
+ $ pip install coredis
91
+ ```
92
+
93
+ ## Feature Summary
94
+
95
+ ### Deployment topologies
96
+
97
+ - [Redis Cluster](https://coredis.readthedocs.org/en/latest/handbook/cluster.html#redis-cluster)
98
+ - [Sentinel](https://coredis.readthedocs.org/en/latest/api/clients.html#sentinel)
99
+
100
+ ### Application patterns
101
+
102
+ - [Connection Pooling](https://coredis.readthedocs.org/en/latest/handbook/connections.html#connection-pools)
103
+ - [PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html)
104
+ - [Sharded PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html#sharded-pub-sub) \[`>= Redis 7.0`\]
105
+ - [Stream Consumers](https://coredis.readthedocs.org/en/latest/handbook/streams.html)
106
+ - [Pipelining](https://coredis.readthedocs.org/en/latest/handbook/pipelines.html)
107
+ - [Client side caching](https://coredis.readthedocs.org/en/latest/handbook/caching.html)
108
+
109
+ ### Server side scripting
110
+
111
+ - [LUA Scripting](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#lua_scripting)
112
+ - [Redis Libraries and functions](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#library-functions) \[`>= Redis 7.0`\]
113
+
114
+ ### Redis Modules
115
+
116
+ - [RedisJSON](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisjson)
117
+ - [RediSearch](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisearch)
118
+ - [RedisGraph](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisgraph)
119
+ - [RedisBloom](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisbloom)
120
+ - [RedisTimeSeries](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redistimeseries)
121
+
122
+ ### Miscellaneous
123
+
124
+ - Public API annotated with type annotations
125
+ - Optional [Runtime Type Validation](https://coredis.readthedocs.org/en/latest/handbook/typing.html#runtime-type-checking) (via [beartype](https://github.com/beartype/beartype))
126
+
127
+ ## Quick start
128
+
129
+ ### Single Node or Cluster client
130
+
131
+ ```python
132
+ import asyncio
133
+ from coredis import Redis, RedisCluster
134
+
135
+ async def example():
136
+ client = Redis(host='127.0.0.1', port=6379, db=0)
137
+ # or with redis cluster
138
+ # client = RedisCluster(startup_nodes=[{"host": "127.0.01", "port": 7001}])
139
+ await client.flushdb()
140
+ await client.set('foo', 1)
141
+ assert await client.exists(['foo']) == 1
142
+ assert await client.incr('foo') == 2
143
+ assert await client.incrby('foo', increment=100) == 102
144
+ assert int(await client.get('foo')) == 102
145
+
146
+ assert await client.expire('foo', 1)
147
+ await asyncio.sleep(0.1)
148
+ assert await client.ttl('foo') == 1
149
+ assert await client.pttl('foo') < 1000
150
+ await asyncio.sleep(1)
151
+ assert not await client.exists(['foo'])
152
+
153
+ asyncio.run(example())
154
+ ```
155
+
156
+ ### Sentinel
157
+
158
+ ```python
159
+ import asyncio
160
+ from coredis.sentinel import Sentinel
161
+
162
+ async def example():
163
+ sentinel = Sentinel(sentinels=[("localhost", 26379)])
164
+ primary = sentinel.primary_for("myservice")
165
+ replica = sentinel.replica_for("myservice")
166
+
167
+ assert await primary.set("fubar", 1)
168
+ assert int(await replica.get("fubar")) == 1
169
+
170
+ asyncio.run(example())
171
+ ```
172
+
173
+ To see a full list of supported redis commands refer to the [Command
174
+ compatibility](https://coredis.readthedocs.io/en/latest/compatibility.html)
175
+ documentation
176
+
177
+ Details about supported Redis modules and their commands can be found
178
+ [here](https://coredis.readthedocs.io/en/latest/handbook/modules.html)
179
+
180
+ ## Compatibility
181
+
182
+ coredis is tested against redis versions >= `7.0`
183
+ The test matrix status can be reviewed
184
+ [here](https://github.com/alisaifee/coredis/actions/workflows/main.yml)
185
+
186
+ coredis is additionally tested against:
187
+
188
+ - ` uvloop >= 0.15.0`
189
+
190
+ ### Supported python versions
191
+
192
+ - 3.10
193
+ - 3.11
194
+ - 3.12
195
+ - 3.13
196
+ - PyPy 3.10
197
+
198
+ ### Redis API compatible databases
199
+
200
+ **coredis** is known to work with the following databases that have redis protocol compatibility:
201
+
202
+ - [Dragonfly](https://dragonflydb.io/)
203
+ - [Redict](https://redict.io/)
204
+ - [Valkey](https://github.com/valkey-io/valkey)
205
+
206
+ ## References
207
+
208
+ - [Documentation (Stable)](http://coredis.readthedocs.org/en/stable)
209
+ - [Documentation (Latest)](http://coredis.readthedocs.org/en/latest)
210
+ - [Changelog](http://coredis.readthedocs.org/en/stable/release_notes.html)
211
+ - [Project History](http://coredis.readthedocs.org/en/stable/history.html)
@@ -0,0 +1,100 @@
1
+ 22fe76227e35f92ab5c3__mypyc.cpython-314-darwin.so,sha256=LBmgDDIWF1ZKqwABioVlkDUK8N1TRMWIqvMxQawr9D4,323880
2
+ coredis/_json.py,sha256=XjrTlG6Up6BjzfIxk-KSU7IhYeD0fLvXdOPpsMZ6Ff8,186
3
+ coredis/_protocols.py,sha256=dzn0W-RCxMGQ4xBDop4FV5Ez4dF6i0QDmmDRRazwJNQ,1059
4
+ coredis/_packer.cpython-314-darwin.so,sha256=VwpQUVgrCXvdksSGwSkZwUmoshviODGqBbEahEZKg_g,8712
5
+ coredis/_version.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
6
+ coredis/_sidecar.py,sha256=ci3hx7RojTdodMqe_zf07HL-E6DlqSliscENTa3dbzI,4404
7
+ coredis/config.py,sha256=Ni2uXMNzdfSRDEJl0KxrS78shLszfYM-ZbE7GK_O7Pk,1368
8
+ coredis/_enum.py,sha256=k1ruLWolNZRqcGpsaw9f2dNqoDEUUCDyImFWan4yuT8,1104
9
+ coredis/_version.py,sha256=4HoWxmfwgug3bfJdoijPB2wLGyCC2AQys3NpJZvkIiI,704
10
+ coredis/credentials.py,sha256=iVSZEyMfd6nEePpVRrx3Ora-EuCCwJ9G9NshEI5Qs2A,1102
11
+ coredis/globals.py,sha256=R0Ys_wd3v29cMiojSwlyyflA3GK2lFNCjnVL4PMANag,678
12
+ coredis/_py_311_typing.py,sha256=QTh0tPRnwd7E39FXlh0RrWqloFWTeidOkfr4mRnp4K8,557
13
+ coredis/constants.py,sha256=W_bssjAP5hvf74EENs5wZXioTSvHr2JBwFrlgxkgw_4,1048
14
+ coredis/constants.cpython-314-darwin.so,sha256=RM-r2ZnycTnnu4ECL8uGzUPGPI-JNT6uYGwiWhvezgU,8720
15
+ coredis/cache.py,sha256=entnV__Bpv4DjqK9BmejuyEgknLBWQnz-Sp8p1CwjQw,26308
16
+ coredis/__init__.py,sha256=IBskLjlEH_aPrhQU2RwKK-Bscp_B1x9PdgI8tcHvB3E,885
17
+ coredis/tokens.py,sha256=uXqCJv3h2t9LuhzMz7GkF6A0Y4E7V4nf9LmvqfQIPNc,37731
18
+ coredis/stream.py,sha256=tQStAfamoGr3OTkWLTqxyEV60epVRPBxwaGwPVW6tzc,14935
19
+ coredis/retry.py,sha256=Ia-dajjrUK8OcSALL7RBz4rinJKuaG5lc0zfOuUa4aE,8204
20
+ coredis/_packer.py,sha256=iXaIKyVJiPiNtB5Hryz4nkjhjLeB-xUWqZdyM7oDpk0,2726
21
+ coredis/parser.py,sha256=9pzxtIOqyj1O91DwKGCMCWf807qsJThDBtD5qslBwkY,11754
22
+ coredis/connection.py,sha256=0GbYjcBZizz-1fscoXG3fQRHOvh6c4Flc3yDrMNzJV8,30899
23
+ coredis/_py_312_typing.py,sha256=zB6scCVDNdSu3YBujf3Hq3rn-i-i8DcsbwbmcT-HrcQ,517
24
+ coredis/pipeline.py,sha256=_cCyBHTjFHq1K5MOJAlAxBNSiobiKua7H2v1DXjLosA,43613
25
+ coredis/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ coredis/exceptions.py,sha256=8P3npdmixnUso9GdcKit6FzXywSWFJhj6EEyiGja8As,8709
27
+ coredis/parser.cpython-314-darwin.so,sha256=TWlZ1yUeDYmvGB9PTMXKh4v-uOwJVz8whlnbwZXEmKE,8712
28
+ coredis/typing.py,sha256=0oEm8aP4QkH6z_m3WVf6rhTTCJ6Rby7U2XspZuW4Awk,20627
29
+ coredis/sentinel.py,sha256=ljUrQB23a1fspWlNMi0ExrwpACaBHTSE7RFTY4x542E,16937
30
+ coredis/_utils.py,sha256=hANcGO8KFOCPEoR9gGl9DKVK--HwidJqaOZyvgCH09g,7982
31
+ coredis/_utils.cpython-314-darwin.so,sha256=ggBekxo-5MNsSV9yXALkIc6HKiq52000uUPWrXBO7M8,8712
32
+ coredis/experimental/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
33
+ coredis/response/__init__.py,sha256=jVewqsYZrmFJHVCibiV9-BFnIa8GUP7S9c936ch-ldo,86
34
+ coredis/response/types.py,sha256=3rSr4i7s3EiQflCc2CPV60NscaPIEmvEhBnW6umCWsg,11910
35
+ coredis/response/_utils.py,sha256=U9xdzRR8CkEFoPXKKCaJn5D_NllYWDioiLt7LeQGKaY,850
36
+ coredis/response/_callbacks/geo.py,sha256=OIWqEcrNgxbgOvh_piyOHBTsnlnI85NM6L_PxBX5ddk,1756
37
+ coredis/response/_callbacks/server.py,sha256=2bEPZi2nq7X417Ua0qH8vSnawT2TqHl5sc67xnd0pu4,7520
38
+ coredis/response/_callbacks/streams.py,sha256=vq4C8sidFam32n7rlfUrt1XzkOdmeTtFv0tl0mLRcYA,6241
39
+ coredis/response/_callbacks/command.py,sha256=iEKShD5vvoSTqv5mf_EJbL73xc2mpmUpuryVSHpyf-U,2824
40
+ coredis/response/_callbacks/sorted_set.py,sha256=LrqHBMPluR2MufkCoE8y_FRO4_WrfGq5wsdri4Sxkqo,6335
41
+ coredis/response/_callbacks/vector_sets.py,sha256=z1fUPaGjui9f4hVDIPLu6iA3R2EIG-np6hS8ZmCaGOQ,5334
42
+ coredis/response/_callbacks/__init__.py,sha256=M1DI9v7oeOIjMZtf7TSYwkF-gpOjhGujwfUX5cw3Yis,17636
43
+ coredis/response/_callbacks/keys.py,sha256=fKfzvN91Wwk2TsJ65tDUWFa2_--SVrOaAj5C-3Tlxqg,1546
44
+ coredis/response/_callbacks/hash.py,sha256=lDjxEZ_YO36IJJ4JIZaF1I5ZRoeDURxRCYSMVn87V68,2658
45
+ coredis/response/_callbacks/connection.py,sha256=1izybzZurgUHEFO8Y4aw64AiZLQw5Hs9bxeyV9almcg,861
46
+ coredis/response/_callbacks/acl.py,sha256=pKGXG40BC_DUIYplF2o0hUQEdu75nKFhoU0ZvCnIChA,910
47
+ coredis/response/_callbacks/cluster.py,sha256=JywuaYl5IcApSJbWjUVcQPF_OKi5m0iclF1nwMIGiz0,5981
48
+ coredis/response/_callbacks/module.py,sha256=WLJwHw0Kq3X5HafRrGGNBmxB8eCyThqV4YK1tSDg3DU,886
49
+ coredis/response/_callbacks/script.py,sha256=o_chD_GOj59ObuKvFgMglTheQOFpmOJPjOUBjsAG8C8,3063
50
+ coredis/response/_callbacks/sets.py,sha256=aaGh3BF0TkW_jGnpFENipAzWA-R9TgnioKudf_6Dk2w,1310
51
+ coredis/response/_callbacks/sentinel.py,sha256=qPoz3K_gb0gQX9YV2_fIuqckX-vTuLnUPaztRjcjDM4,4904
52
+ coredis/response/_callbacks/strings.py,sha256=sjHY2JwxHl4ndIl9WhHD48VKuGn39FArE8XnRUparu4,1955
53
+ coredis/recipes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ coredis/recipes/locks/__init__.py,sha256=D20RZ9c3b-8Ruq8UIlIhYhntNAami_swjBk5v61iFMo,89
55
+ coredis/recipes/locks/extend.lua,sha256=62TOOZN07E-FZOi0IuCXDYKFL0QmZo0PiuIZhN9Bn9o,426
56
+ coredis/recipes/locks/release.lua,sha256=HN7Hu2OMpY7pBBPTIuJzVxP_CTr9Qs85YHru7GsQyKo,225
57
+ coredis/recipes/locks/lua_lock.py,sha256=C98pcyy785mResVfnFWTWPn3gRZNqqFb7V6rgc65uJ8,9416
58
+ coredis/recipes/credentials/iam_provider.py,sha256=GBscr1ky2hloZ0uBMA4GvCSOWasqeo7VFinNX_yspVE,2322
59
+ coredis/recipes/credentials/__init__.py,sha256=AFdVEXL3e3-Yrcmb7qg-CnXIgn2a3RKPMzpv-PtOmCo,123
60
+ coredis/commands/monitor.py,sha256=cB924WXM_AVmGAurKpPF9dXoPUnO_xx0jUB9HsSHXfU,5853
61
+ coredis/commands/_validators.py,sha256=yo0I81uMpy7FMvPxMheqdMPved-ujkpaWUs0WpuOPIU,5426
62
+ coredis/commands/_key_spec.py,sha256=oiRt20uh7wFnHWf3VPFWvOtSh2jyGfVYcXjWj8Bcp58,24503
63
+ coredis/commands/constants.py,sha256=EaS-6t-zG4fprLXH5lwhuSyaURuWzZ2y_IAnRSlfLDU,30523
64
+ coredis/commands/request.py,sha256=9tMw5q6KdF4y6SyHfcguRe6P7mjArqE8Djk9FSvxKts,3663
65
+ coredis/commands/__init__.py,sha256=ApJE7ZgqrQCMkWusgEwWMBjH10t_h6sbsRvTz7kT25k,1429
66
+ coredis/commands/core.py,sha256=732RnhH207XRXBnc-Qhlmlvmuk0-cgtG2jnFeSEuicE,283113
67
+ coredis/commands/_wrappers.py,sha256=rw-HF3XxsImRRB0ptK1zrgOyMlRXLyz6wbfViblK5e8,5653
68
+ coredis/commands/pubsub.py,sha256=sRIOQjBJag8NXRu8HgbaX0IiJoBMiJo3R2OtYngf5RU,34396
69
+ coredis/commands/script.py,sha256=6cb_JhaM49-Kjb6iuSTAU0boOFw9CuHIMa5HRnGosJs,12135
70
+ coredis/commands/sentinel.py,sha256=y2t9PO89qs3d5SUCs1Plsgtg-RAqxWBsygXGatsELGI,7818
71
+ coredis/commands/function.py,sha256=mznJds0S09qAAjII8Jw1TjkS8maljAc65QzEtWDhrgk,16301
72
+ coredis/commands/bitfield.py,sha256=aB-m4KoUbGpI4zxzNU0VCfmPt7HGhB5kt4g8KX5CoRo,3405
73
+ coredis/commands/_utils.py,sha256=ld6Nii0VUjobOgBI0twHAL4T_wScLcJlS5k3ZnU5MDc,3662
74
+ coredis/modules/graph.py,sha256=1NGV1mT0OCIFg7XZe0l-VTQZa0GsbXopH8LK33lDhO8,12544
75
+ coredis/modules/__init__.py,sha256=eqWwEYNI-B7Lc19R23n6NQaQoKHmpj8mrtkYBcQ2fCA,2917
76
+ coredis/modules/search.py,sha256=3Sld2XE4_9dVqVtR1C8dUVvgnxNifQkz4NfRZ0y3eB0,40800
77
+ coredis/modules/autocomplete.py,sha256=ZqT9wcmuP7_FNdQq4ZrYy3Dv_iStVCUc2LUtQ7cyikc,4945
78
+ coredis/modules/json.py,sha256=iiDjFS1MhUWruzWQ1i-SmkPbg5T5ThnRCsAcxbKhJ3Y,23606
79
+ coredis/modules/base.py,sha256=KBGla8KM-XiQBVzLYxvq31giz5lYVH7hH_S0EM0kl0c,8597
80
+ coredis/modules/filters.py,sha256=eGY5bv3kn6Cj-lq-OIqQfe1Ym4P8S3snNztSgdHcHe0,43443
81
+ coredis/modules/timeseries.py,sha256=oLF9NdN_Z4gO1_mWxx8XkcGRz0V-S4W04U64pGrTmHY,47553
82
+ coredis/modules/response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ coredis/modules/response/types.py,sha256=n3Qds9vUzBBNhm3hRzYcuhqI8UTSa6mTzvIzmFw8btk,5021
84
+ coredis/modules/response/_callbacks/graph.py,sha256=9YSbZqGmdJhgzZ4RpxqhEGkBRBuf1VZlvZ2HXqf8vzo,8208
85
+ coredis/modules/response/_callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
+ coredis/modules/response/_callbacks/search.py,sha256=BNKJitdfJxqJqIgNVRItL_fCt8qgf-JUUXoeW3PtgaU,7547
87
+ coredis/modules/response/_callbacks/autocomplete.py,sha256=ntQ3cbs6g6rhFU-rujhjidlr9cQBNCt-7MQQG3Rm_xY,1282
88
+ coredis/modules/response/_callbacks/json.py,sha256=oErNOm8OxR0iQtnviXhe_GIMP4y4TtPo5HICRMc1cVw,678
89
+ coredis/modules/response/_callbacks/timeseries.py,sha256=BqVgg8jxL4JU_ZFJVomJi6g27urC1UlNrKY4vShf7OI,4759
90
+ coredis/pool/nodemanager.py,sha256=Z-85VqK-GffPbApmOjM4kpEJ7hEysO2qc4AP7R_06n0,12576
91
+ coredis/pool/__init__.py,sha256=OXBmGIY5pGgCvLO_x_yF5X1eeT3tve8sINaGwixWzsg,301
92
+ coredis/pool/basic.py,sha256=xsDrEPNFlbhIJBU3o5oE4Ijt7lE7MKbhb9v2CCHArJ8,16177
93
+ coredis/pool/cluster.py,sha256=fpyhIqhXLBOAJfopMvWiyl10_MF0hxk_yEKsf-qTlXU,20792
94
+ coredis/client/__init__.py,sha256=J4r1pi5r68EwodMV8-eHvzM83tkz2mTlWayKy-JScrg,150
95
+ coredis/client/basic.py,sha256=7LrCQYUYIgc986KW8XyBtSnaTxlrLBJ02NGSyINYfdY,46642
96
+ coredis/client/cluster.py,sha256=EszhB5qxLGZCdEEzmRYKedSMMfr8Vokhf36grdATnwc,50609
97
+ coredis-5.2.0.dist-info/RECORD,,
98
+ coredis-5.2.0.dist-info/WHEEL,sha256=PV4I68MVwutGNwc3AKx6ZS7-8maN90ywjYVUjxHQM0w,135
99
+ coredis-5.2.0.dist-info/METADATA,sha256=TzUO_MUDAOnqdDJynVH79c9moTYHivN1ikE_QQBb0KA,8432
100
+ coredis-5.2.0.dist-info/licenses/LICENSE,sha256=pTSTkaH3iX2r6C88El9edMoi6r_Og6Wf4b6Zgq-LSOQ,1107
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-macosx_10_13_x86_64
5
+ Generator: delocate 0.13.0
6
+
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2016 Jason Chen
2
+ Copyright (c) 2023 Ali-Akber Saifee
3
+
4
+ Permission is hereby granted, free of charge, to any person
5
+ obtaining a copy of this software and associated documentation
6
+ files (the "Software"), to deal in the Software without
7
+ restriction, including without limitation the rights to use,
8
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following
11
+ conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
+ OTHER DEALINGS IN THE SOFTWARE.