Metadata-Version: 2.4
Name: sara_form_gaurd
Version: 0.1.0
Summary: Prevent duplicate form submission within a cooldown period
Author-email: "Md. Shamim Miah" <shamim520386@gmail.com>
License: MIT
Requires-Python: >=3.12.3
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# form_guard
Prevent users from submitting the same form data within a cooldown period.

## Usage
```python
from form_guard import FormGuard

guard = FormGuard(300)

user_id = 123
data = {"email": "test@example.com"}

if guard.is_allowed(user_id, data):
    print("Allowed")
else:
    print("Duplicate — blocked")
