limits 3.5.0__py3-none-any.whl → 3.6.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/mongodb.py +0 -1
- limits/storage/mongodb.py +0 -1
- {limits-3.5.0.dist-info → limits-3.6.0.dist-info}/METADATA +20 -22
- {limits-3.5.0.dist-info → limits-3.6.0.dist-info}/RECORD +8 -8
- {limits-3.5.0.dist-info → limits-3.6.0.dist-info}/WHEEL +1 -1
- {limits-3.5.0.dist-info → limits-3.6.0.dist-info}/LICENSE.txt +0 -0
- {limits-3.5.0.dist-info → limits-3.6.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-08-31T07:36:32-0700",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "3.
|
|
14
|
+
"full-revisionid": "ada96bb4afc9729b4aac2552209a78428a27c313",
|
|
15
|
+
"version": "3.6.0"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
limits/aio/storage/mongodb.py
CHANGED
|
@@ -30,7 +30,6 @@ class MongoDBStorage(Storage, MovingWindowSupport):
|
|
|
30
30
|
|
|
31
31
|
DEFAULT_OPTIONS: Dict[str, Union[float, str, bool]] = {
|
|
32
32
|
"serverSelectionTimeoutMS": 1000,
|
|
33
|
-
"socketTimeoutMS": 1000,
|
|
34
33
|
"connectTimeoutMS": 1000,
|
|
35
34
|
}
|
|
36
35
|
"Default options passed to :class:`~motor.motor_asyncio.AsyncIOMotorClient`"
|
limits/storage/mongodb.py
CHANGED
|
@@ -26,7 +26,6 @@ class MongoDBStorage(Storage, MovingWindowSupport):
|
|
|
26
26
|
STORAGE_SCHEME = ["mongodb", "mongodb+srv"]
|
|
27
27
|
DEFAULT_OPTIONS: Dict[str, Union[int, str, bool]] = {
|
|
28
28
|
"serverSelectionTimeoutMS": 1000,
|
|
29
|
-
"socketTimeoutMS": 1000,
|
|
30
29
|
"connectTimeoutMS": 1000,
|
|
31
30
|
}
|
|
32
31
|
"Default options passed to :class:`~pymongo.mongo_client.MongoClient`"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: limits
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.6.0
|
|
4
4
|
Summary: Rate limiting utilities
|
|
5
5
|
Home-page: https://limits.readthedocs.org
|
|
6
6
|
Author: Ali-Akber Saifee
|
|
@@ -14,7 +14,6 @@ Classifier: Operating System :: MacOS
|
|
|
14
14
|
Classifier: Operating System :: POSIX :: Linux
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -22,41 +21,40 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
22
21
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
23
22
|
Requires-Python: >=3.7
|
|
24
23
|
License-File: LICENSE.txt
|
|
25
|
-
Requires-Dist: deprecated
|
|
26
|
-
Requires-Dist: importlib-resources
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist: packaging (<24,>=21)
|
|
24
|
+
Requires-Dist: deprecated >=1.2
|
|
25
|
+
Requires-Dist: importlib-resources >=1.3
|
|
26
|
+
Requires-Dist: packaging <24,>=21
|
|
29
27
|
Requires-Dist: typing-extensions
|
|
30
28
|
Provides-Extra: all
|
|
31
|
-
Requires-Dist: redis
|
|
32
|
-
Requires-Dist: redis
|
|
33
|
-
Requires-Dist: pymemcache
|
|
34
|
-
Requires-Dist: pymongo
|
|
29
|
+
Requires-Dist: redis !=4.5.2,!=4.5.3,<6.0.0,>3 ; extra == 'all'
|
|
30
|
+
Requires-Dist: redis !=4.5.2,!=4.5.3,>=4.2.0 ; extra == 'all'
|
|
31
|
+
Requires-Dist: pymemcache <5.0.0,>3 ; extra == 'all'
|
|
32
|
+
Requires-Dist: pymongo <5,>4.1 ; extra == 'all'
|
|
35
33
|
Requires-Dist: etcd3 ; extra == 'all'
|
|
36
|
-
Requires-Dist:
|
|
34
|
+
Requires-Dist: coredis <5,>=3.4.0 ; extra == 'all'
|
|
35
|
+
Requires-Dist: motor <4,>=3 ; extra == 'all'
|
|
37
36
|
Requires-Dist: aetcd ; extra == 'all'
|
|
38
|
-
Requires-Dist: emcache
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist: emcache (>=1) ; (python_version >= "3.11") and extra == 'all'
|
|
37
|
+
Requires-Dist: emcache >=0.6.1 ; (python_version < "3.11") and extra == 'all'
|
|
38
|
+
Requires-Dist: emcache >=1 ; (python_version >= "3.11") and extra == 'all'
|
|
41
39
|
Provides-Extra: async-etcd
|
|
42
40
|
Requires-Dist: aetcd ; extra == 'async-etcd'
|
|
43
41
|
Provides-Extra: async-memcached
|
|
44
|
-
Requires-Dist: emcache
|
|
45
|
-
Requires-Dist: emcache
|
|
42
|
+
Requires-Dist: emcache >=0.6.1 ; (python_version < "3.11") and extra == 'async-memcached'
|
|
43
|
+
Requires-Dist: emcache >=1 ; (python_version >= "3.11") and extra == 'async-memcached'
|
|
46
44
|
Provides-Extra: async-mongodb
|
|
47
|
-
Requires-Dist: motor
|
|
45
|
+
Requires-Dist: motor <4,>=3 ; extra == 'async-mongodb'
|
|
48
46
|
Provides-Extra: async-redis
|
|
49
|
-
Requires-Dist: coredis
|
|
47
|
+
Requires-Dist: coredis <5,>=3.4.0 ; extra == 'async-redis'
|
|
50
48
|
Provides-Extra: etcd
|
|
51
49
|
Requires-Dist: etcd3 ; extra == 'etcd'
|
|
52
50
|
Provides-Extra: memcached
|
|
53
|
-
Requires-Dist: pymemcache
|
|
51
|
+
Requires-Dist: pymemcache <5.0.0,>3 ; extra == 'memcached'
|
|
54
52
|
Provides-Extra: mongodb
|
|
55
|
-
Requires-Dist: pymongo
|
|
53
|
+
Requires-Dist: pymongo <5,>4.1 ; extra == 'mongodb'
|
|
56
54
|
Provides-Extra: redis
|
|
57
|
-
Requires-Dist: redis
|
|
55
|
+
Requires-Dist: redis !=4.5.2,!=4.5.3,<6.0.0,>3 ; extra == 'redis'
|
|
58
56
|
Provides-Extra: rediscluster
|
|
59
|
-
Requires-Dist: redis
|
|
57
|
+
Requires-Dist: redis !=4.5.2,!=4.5.3,>=4.2.0 ; extra == 'rediscluster'
|
|
60
58
|
|
|
61
59
|
.. |ci| image:: https://github.com/alisaifee/limits/workflows/CI/badge.svg?branch=master
|
|
62
60
|
:target: https://github.com/alisaifee/limits/actions?query=branch%3Amaster+workflow%3ACI
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
limits/__init__.py,sha256=j_yVhgN9pdz8o5rQjVwdJTBSq8F-CTzof9kkiYgjRbw,728
|
|
2
|
-
limits/_version.py,sha256=
|
|
2
|
+
limits/_version.py,sha256=5KtTqbQ9xQXrC3mRk9avjH69WNCQc8PltKm5xQRBCj4,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
|
|
@@ -14,7 +14,7 @@ limits/aio/storage/base.py,sha256=gsy_91lvm53AoAKi1plaegcEOSZXK3OiMP0mxA6lPAw,29
|
|
|
14
14
|
limits/aio/storage/etcd.py,sha256=iGGuKHN5cCW9r4nLeiZ4TnoU1pfSXXLZhS2YOWznryw,4568
|
|
15
15
|
limits/aio/storage/memcached.py,sha256=aR7f5NY-mXtFFjphbaxoL7z1cAHZuRYjpGUVOktoI4A,4296
|
|
16
16
|
limits/aio/storage/memory.py,sha256=A506i0vncBmsaL9GGAqepQkPAXyc-HxmJ8gS8kJtqpE,5597
|
|
17
|
-
limits/aio/storage/mongodb.py,sha256=
|
|
17
|
+
limits/aio/storage/mongodb.py,sha256=79D6HU3vGLmY1WDvtoaKItRHly7L__mZpu7XEmOgBnY,9024
|
|
18
18
|
limits/aio/storage/redis.py,sha256=eBfTtk5w0s8IQKWUBeqbVFrKFr5xTIcRC7eim7uoYnA,14630
|
|
19
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
|
|
@@ -25,13 +25,13 @@ limits/storage/base.py,sha256=-JV-zAkss7pOETZyPYjo8ZZqTMGs-DPqgz_gcfArXfs,2818
|
|
|
25
25
|
limits/storage/etcd.py,sha256=SlDHRItliRaR2j5Rf_v_oQ57ITpmNMYQJSamM3SbwCA,4258
|
|
26
26
|
limits/storage/memcached.py,sha256=qMvRIEtRRzZXSgcZSUTBgUlBDeNOpIr_gDTV2r5SPak,6005
|
|
27
27
|
limits/storage/memory.py,sha256=plPsyLB26QN9I6jQq00fra-cdh8xoDAgaoM-kWuECtk,5302
|
|
28
|
-
limits/storage/mongodb.py,sha256=
|
|
28
|
+
limits/storage/mongodb.py,sha256=Z4_Og2Ys6uwQT_D4dUDdDAEndBY7UfCh_LiHgZf8IUk,7909
|
|
29
29
|
limits/storage/redis.py,sha256=nysRkOIK9pKTC1p0mBpIu5wHjmihLsFbwOx8nfFMpaI,7560
|
|
30
30
|
limits/storage/redis_cluster.py,sha256=8578Slo-cwh5GdbuUDhYjQfBsWTwJyGoQ1d_mxVfcIM,5342
|
|
31
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.6.0.dist-info/LICENSE.txt,sha256=T6i7kq7F5gIPfcno9FCxU5Hcwm22Bjq0uHZV3ElcjsQ,1061
|
|
34
|
+
limits-3.6.0.dist-info/METADATA,sha256=YXO0qBkd4XtBcXu5OvH7d_VUubzVMEPY1hxQSNIZjrY,7314
|
|
35
|
+
limits-3.6.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
36
|
+
limits-3.6.0.dist-info/top_level.txt,sha256=C7g5ahldPoU2s6iWTaJayUrbGmPK1d6e9t5Nn0vQ2jM,7
|
|
37
|
+
limits-3.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|