This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
Copyright (c) 2022, James Socol
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -0,0 +1,53 @@
Metadata-Version: 2.1
Name: django-ratelimit
Version: 4.1.0
Summary: Cache-based rate-limiting for Django.
Author-email: James Socol <me@jamessocol.com>
License: Copyright (c) 2022, James Socol
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Project-URL: Homepage, https://github.com/jsocol/django-ratelimit
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Framework :: Django
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
================
Django Ratelimit
================
Django Ratelimit provides a decorator to rate-limit views. Limiting can
be based on IP address or a field in the request--either a GET or POST
variable.
.. image:: https://github.com/jsocol/django-ratelimit/workflows/test/badge.svg?branch=main
:target: https://github.com/jsocol/django-ratelimit/actions
:Code: https://github.com/jsocol/django-ratelimit
:License: Apache Software License 2.0; see LICENSE file
:Issues: https://github.com/jsocol/django-ratelimit/issues
:Documentation: http://django-ratelimit.readthedocs.io/

View File

@@ -0,0 +1,25 @@
django_ratelimit-4.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
django_ratelimit-4.1.0.dist-info/LICENSE,sha256=EQTCKx4vsgve95U8rG-zYrlFb44vVUeVobnO4yP6vs4,557
django_ratelimit-4.1.0.dist-info/METADATA,sha256=kF3XKgtmlO9xSYXhVRQq6DZxBOsVIbZ6ZiDbKmRJ3BA,2278
django_ratelimit-4.1.0.dist-info/RECORD,,
django_ratelimit-4.1.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
django_ratelimit-4.1.0.dist-info/WHEEL,sha256=k3vXr0c0OitO0k9eCWBlI2yTYnpb_n_I2SGzrrfY7HY,110
django_ratelimit-4.1.0.dist-info/top_level.txt,sha256=WAZ7f6xupu6stzMh1YlsPkNKcXST9iRrnowhM9lzl2Q,17
django_ratelimit/__init__.py,sha256=q0TFVV6Os8FgQ0XUa4trbPv-R_bZSvPnCzjjr1AZDNg,161
django_ratelimit/__pycache__/__init__.cpython-312.pyc,,
django_ratelimit/__pycache__/apps.cpython-312.pyc,,
django_ratelimit/__pycache__/checks.cpython-312.pyc,,
django_ratelimit/__pycache__/core.cpython-312.pyc,,
django_ratelimit/__pycache__/decorators.cpython-312.pyc,,
django_ratelimit/__pycache__/exceptions.cpython-312.pyc,,
django_ratelimit/__pycache__/middleware.cpython-312.pyc,,
django_ratelimit/__pycache__/models.cpython-312.pyc,,
django_ratelimit/__pycache__/tests.cpython-312.pyc,,
django_ratelimit/apps.py,sha256=vIVuwvpBJRFyUfilFaUqBT5q0nFE1ONZMazsUPtUuag,214
django_ratelimit/checks.py,sha256=UR7NXdkVeta2lVzJ5kE_CQu4Km91PTvmkYwNMialKu4,2255
django_ratelimit/core.py,sha256=65_NhWkOdNE4xuwkRaMjv1sSidwtsb2xk_JXlAtSFnc,7993
django_ratelimit/decorators.py,sha256=e-KSjSI-5WzFxtPzmEqX4-Imv5i0tOIlIAFaiawptDA,1130
django_ratelimit/exceptions.py,sha256=l_ewZCAfqhbqJoceE5vp8-RniQZdXXHkEXWpBCTStwk,100
django_ratelimit/middleware.py,sha256=hZfcm90F9h_3lQdSUYruyEb6D8kZ_9IEyIGfkF17fn8,547
django_ratelimit/models.py,sha256=xQmwT94xfUmX5fHkYQ92SKhWwDqVNuInbu5TzaSKil0,40
django_ratelimit/tests.py,sha256=tdRqni_QUprSxjB47vnM1T2umX__5adENNAbVAG-QuU,21689

View File

@@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.41.0)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any

View File

@@ -0,0 +1 @@
django_ratelimit