limits 3.4.0__py3-none-any.whl → 3.5.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.
- limits/_version.py +3 -3
- limits/aio/storage/redis.py +0 -7
- limits/resources/redis/lua_scripts/acquire_moving_window.lua +4 -5
- limits/storage/redis_sentinel.py +1 -6
- {limits-3.4.0.dist-info → limits-3.5.0.dist-info}/METADATA +1 -1
- {limits-3.4.0.dist-info → limits-3.5.0.dist-info}/RECORD +9 -9
- {limits-3.4.0.dist-info → limits-3.5.0.dist-info}/LICENSE.txt +0 -0
- {limits-3.4.0.dist-info → limits-3.5.0.dist-info}/WHEEL +0 -0
- {limits-3.4.0.dist-info → limits-3.5.0.dist-info}/top_level.txt +0 -0
limits/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2023-
|
|
11
|
+
"date": "2023-05-16T15:04:57-0700",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "3.
|
|
14
|
+
"full-revisionid": "d61ade38645d742e4614dd1c1c0283d6ace40bf0",
|
|
15
|
+
"version": "3.5.0"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
limits/aio/storage/redis.py
CHANGED
|
@@ -349,11 +349,6 @@ class RedisSentinelStorage(RedisStorage):
|
|
|
349
349
|
STORAGE_SCHEME = ["async+redis+sentinel"]
|
|
350
350
|
"""The storage scheme for redis accessed via a redis sentinel installation"""
|
|
351
351
|
|
|
352
|
-
DEFAULT_OPTIONS: Dict[str, Union[float, str, bool]] = {
|
|
353
|
-
"stream_timeout": 0.2,
|
|
354
|
-
}
|
|
355
|
-
"Default options passed to :class:`~coredis.sentinel.Sentinel`"
|
|
356
|
-
|
|
357
352
|
DEPENDENCIES = {"coredis.sentinel": Version("3.4.0")}
|
|
358
353
|
|
|
359
354
|
def __init__(
|
|
@@ -402,8 +397,6 @@ class RedisSentinelStorage(RedisStorage):
|
|
|
402
397
|
if self.service_name is None:
|
|
403
398
|
raise ConfigurationError("'service_name' not provided")
|
|
404
399
|
|
|
405
|
-
connection_options.setdefault("stream_timeout", 0.2)
|
|
406
|
-
|
|
407
400
|
super(RedisStorage, self).__init__()
|
|
408
401
|
|
|
409
402
|
self.dependency = self.dependencies["coredis.sentinel"].module
|
|
@@ -9,15 +9,14 @@ end
|
|
|
9
9
|
|
|
10
10
|
local entry = redis.call('lindex', KEYS[1], limit - amount)
|
|
11
11
|
|
|
12
|
-
|
|
13
12
|
if entry and tonumber(entry) >= timestamp - expiry then
|
|
14
13
|
return false
|
|
15
14
|
end
|
|
16
|
-
|
|
17
|
-
for i=1, amount do
|
|
18
|
-
|
|
15
|
+
|
|
16
|
+
for i = 1, amount do
|
|
17
|
+
redis.call('lpush', KEYS[1], timestamp)
|
|
19
18
|
end
|
|
20
|
-
|
|
19
|
+
|
|
21
20
|
redis.call('ltrim', KEYS[1], 0, limit - 1)
|
|
22
21
|
redis.call('expire', KEYS[1], expiry)
|
|
23
22
|
|
limits/storage/redis_sentinel.py
CHANGED
|
@@ -21,11 +21,6 @@ class RedisSentinelStorage(RedisStorage):
|
|
|
21
21
|
STORAGE_SCHEME = ["redis+sentinel"]
|
|
22
22
|
"""The storage scheme for redis accessed via a redis sentinel installation"""
|
|
23
23
|
|
|
24
|
-
DEFAULT_OPTIONS: Dict[str, Union[float, str, bool]] = {
|
|
25
|
-
"socket_timeout": 0.2,
|
|
26
|
-
}
|
|
27
|
-
"Default options passed to :class:`~redis.sentinel.Sentinel`"
|
|
28
|
-
|
|
29
24
|
DEPENDENCIES = {"redis.sentinel": Version("3.0")}
|
|
30
25
|
|
|
31
26
|
def __init__(
|
|
@@ -79,7 +74,7 @@ class RedisSentinelStorage(RedisStorage):
|
|
|
79
74
|
self.sentinel: "redis.sentinel.Sentinel" = sentinel_dep.Sentinel(
|
|
80
75
|
sentinel_configuration,
|
|
81
76
|
sentinel_kwargs={**parsed_auth, **sentinel_options},
|
|
82
|
-
**{**
|
|
77
|
+
**{**parsed_auth, **options}
|
|
83
78
|
)
|
|
84
79
|
self.storage = self.sentinel.master_for(self.service_name)
|
|
85
80
|
self.storage_slave = self.sentinel.slave_for(self.service_name)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
limits/__init__.py,sha256=j_yVhgN9pdz8o5rQjVwdJTBSq8F-CTzof9kkiYgjRbw,728
|
|
2
|
-
limits/_version.py,sha256=
|
|
2
|
+
limits/_version.py,sha256=pRgzWhjWD3Hv3aQNYQ7qUpaxhRxo3wRSGt5p6uMLXpk,497
|
|
3
3
|
limits/errors.py,sha256=sUolBUfTFLQSzo6dfE2E9j_0K7_8Nr9_Hx-v5C4D0EU,416
|
|
4
4
|
limits/limits.py,sha256=lwQnA5wegkW_AXtplOH3tLuQ1LByMX9hqHJquYVYdTs,4943
|
|
5
5
|
limits/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -15,8 +15,8 @@ limits/aio/storage/etcd.py,sha256=iGGuKHN5cCW9r4nLeiZ4TnoU1pfSXXLZhS2YOWznryw,45
|
|
|
15
15
|
limits/aio/storage/memcached.py,sha256=aR7f5NY-mXtFFjphbaxoL7z1cAHZuRYjpGUVOktoI4A,4296
|
|
16
16
|
limits/aio/storage/memory.py,sha256=A506i0vncBmsaL9GGAqepQkPAXyc-HxmJ8gS8kJtqpE,5597
|
|
17
17
|
limits/aio/storage/mongodb.py,sha256=s_eUawyITOT7nPHeI_fgMVmDhm9XxhoQ_bmYD2aXius,9057
|
|
18
|
-
limits/aio/storage/redis.py,sha256=
|
|
19
|
-
limits/resources/redis/lua_scripts/acquire_moving_window.lua,sha256
|
|
18
|
+
limits/aio/storage/redis.py,sha256=eBfTtk5w0s8IQKWUBeqbVFrKFr5xTIcRC7eim7uoYnA,14630
|
|
19
|
+
limits/resources/redis/lua_scripts/acquire_moving_window.lua,sha256=5CFJX7D6T6RG5SFr6eVZ6zepmI1EkGWmKeVEO4QNrWo,483
|
|
20
20
|
limits/resources/redis/lua_scripts/clear_keys.lua,sha256=zU0cVfLGmapRQF9x9u0GclapM_IB2pJLszNzVQ1QRK4,184
|
|
21
21
|
limits/resources/redis/lua_scripts/incr_expire.lua,sha256=Uq9NcrrcDI-F87TDAJexoSJn2SDgeXIUEYozCp9S3oA,195
|
|
22
22
|
limits/resources/redis/lua_scripts/moving_window.lua,sha256=ir0SkuRVnrqkVSFNIuedTV_KW6zG70Z56u6-_FpR_20,352
|
|
@@ -28,10 +28,10 @@ limits/storage/memory.py,sha256=plPsyLB26QN9I6jQq00fra-cdh8xoDAgaoM-kWuECtk,5302
|
|
|
28
28
|
limits/storage/mongodb.py,sha256=ZdFr2-MTtdPcOZE5XKd-XxNmbl9dHLZbU2PmqmH9CA4,7942
|
|
29
29
|
limits/storage/redis.py,sha256=nysRkOIK9pKTC1p0mBpIu5wHjmihLsFbwOx8nfFMpaI,7560
|
|
30
30
|
limits/storage/redis_cluster.py,sha256=8578Slo-cwh5GdbuUDhYjQfBsWTwJyGoQ1d_mxVfcIM,5342
|
|
31
|
-
limits/storage/redis_sentinel.py,sha256=
|
|
31
|
+
limits/storage/redis_sentinel.py,sha256=AxbtYZQXCNL-4yu7dQ8i6MhwO2PNLMRLHe3JcHkMKvA,3647
|
|
32
32
|
limits/storage/registry.py,sha256=xcBcxuu6srqmoS4WqDpkCXnRLB19ctH98v21P8S9kS8,708
|
|
33
|
-
limits-3.
|
|
34
|
-
limits-3.
|
|
35
|
-
limits-3.
|
|
36
|
-
limits-3.
|
|
37
|
-
limits-3.
|
|
33
|
+
limits-3.5.0.dist-info/LICENSE.txt,sha256=T6i7kq7F5gIPfcno9FCxU5Hcwm22Bjq0uHZV3ElcjsQ,1061
|
|
34
|
+
limits-3.5.0.dist-info/METADATA,sha256=jQV7tH4J9f2a2hoVe96tDgetCi4npIq5Hq8Fhn0oFi8,7486
|
|
35
|
+
limits-3.5.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
36
|
+
limits-3.5.0.dist-info/top_level.txt,sha256=C7g5ahldPoU2s6iWTaJayUrbGmPK1d6e9t5Nn0vQ2jM,7
|
|
37
|
+
limits-3.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|