prune_captcha 1.12.1__tar.gz → 1.12.2__tar.gz
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.
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/PKG-INFO +11 -10
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/README.md +10 -9
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/prune_captcha.egg-info/PKG-INFO +11 -10
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/pyproject.toml +1 -1
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/__init__.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/apps.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/asgi.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/migrations/0001_initial.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/migrations/0002_remove_captcha_created_at_remove_captcha_pos_x_and_more.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/migrations/0003_captcha_created_at_captcha_updated_at.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/migrations/__init__.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/models.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/payloads.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/settings.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/utils.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/captcha_prune/wsgi.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/commons/base_model.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/prune_captcha.egg-info/SOURCES.txt +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/prune_captcha.egg-info/dependency_links.txt +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/prune_captcha.egg-info/requires.txt +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/prune_captcha.egg-info/top_level.txt +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/setup.cfg +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/tests/__init__.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/tests/captcha_prune/__init__.py +0 -0
- {prune_captcha-1.12.1 → prune_captcha-1.12.2}/tests/captcha_prune/test_views.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.12.
|
3
|
+
Version: 1.12.2
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -96,24 +96,25 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
|
|
96
96
|
|
97
97
|
- POST request (form submission)
|
98
98
|
|
99
|
-
|
99
|
+
- Use verify_captcha to validate the captcha:
|
100
100
|
|
101
|
-
|
102
|
-
|
103
|
-
|
101
|
+
```python
|
102
|
+
from captcha_prune.utils import verify_captcha
|
103
|
+
```
|
104
104
|
|
105
|
-
|
106
|
-
|
107
|
-
|
105
|
+
```python
|
106
|
+
response = verify_captcha(request)
|
107
|
+
```
|
108
108
|
|
109
|
-
|
109
|
+
- True if the captcha is correct, else False.
|
110
110
|
|
111
|
-
|
111
|
+
- Redirects in case of incorrect captcha.
|
112
112
|
|
113
113
|
# Available Versions
|
114
114
|
|
115
115
|
| Version | Date | Notes |
|
116
116
|
| ------- | ---------- | ---------------------------------- |
|
117
|
+
| 1.12.2 | 2025-05-21 | doc fixed |
|
117
118
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
118
119
|
| 1.12.0 | 2025-05-21 | removed views, added utils, ... |
|
119
120
|
| 1.11.0 | 2025-05-21 | removed utils |
|
@@ -78,24 +78,25 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
|
|
78
78
|
|
79
79
|
- POST request (form submission)
|
80
80
|
|
81
|
-
|
81
|
+
- Use verify_captcha to validate the captcha:
|
82
82
|
|
83
|
-
|
84
|
-
|
85
|
-
|
83
|
+
```python
|
84
|
+
from captcha_prune.utils import verify_captcha
|
85
|
+
```
|
86
86
|
|
87
|
-
|
88
|
-
|
89
|
-
|
87
|
+
```python
|
88
|
+
response = verify_captcha(request)
|
89
|
+
```
|
90
90
|
|
91
|
-
|
91
|
+
- True if the captcha is correct, else False.
|
92
92
|
|
93
|
-
|
93
|
+
- Redirects in case of incorrect captcha.
|
94
94
|
|
95
95
|
# Available Versions
|
96
96
|
|
97
97
|
| Version | Date | Notes |
|
98
98
|
| ------- | ---------- | ---------------------------------- |
|
99
|
+
| 1.12.2 | 2025-05-21 | doc fixed |
|
99
100
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
100
101
|
| 1.12.0 | 2025-05-21 | removed views, added utils, ... |
|
101
102
|
| 1.11.0 | 2025-05-21 | removed utils |
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.12.
|
3
|
+
Version: 1.12.2
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -96,24 +96,25 @@ PUZZLE_IMAGE_STATIC_PATH = "website/static/website/images/puzzles/"
|
|
96
96
|
|
97
97
|
- POST request (form submission)
|
98
98
|
|
99
|
-
|
99
|
+
- Use verify_captcha to validate the captcha:
|
100
100
|
|
101
|
-
|
102
|
-
|
103
|
-
|
101
|
+
```python
|
102
|
+
from captcha_prune.utils import verify_captcha
|
103
|
+
```
|
104
104
|
|
105
|
-
|
106
|
-
|
107
|
-
|
105
|
+
```python
|
106
|
+
response = verify_captcha(request)
|
107
|
+
```
|
108
108
|
|
109
|
-
|
109
|
+
- True if the captcha is correct, else False.
|
110
110
|
|
111
|
-
|
111
|
+
- Redirects in case of incorrect captcha.
|
112
112
|
|
113
113
|
# Available Versions
|
114
114
|
|
115
115
|
| Version | Date | Notes |
|
116
116
|
| ------- | ---------- | ---------------------------------- |
|
117
|
+
| 1.12.2 | 2025-05-21 | doc fixed |
|
117
118
|
| 1.12.1 | 2025-05-21 | doc fixed |
|
118
119
|
| 1.12.0 | 2025-05-21 | removed views, added utils, ... |
|
119
120
|
| 1.11.0 | 2025-05-21 | removed utils |
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
20
20
|
keywords = ["captcha", "django", "code-quality"]
|
21
21
|
urls = {Made_by = "https://prune.sh/"}
|
22
22
|
name = "prune_captcha"
|
23
|
-
version = "1.12.
|
23
|
+
version = "1.12.2"
|
24
24
|
description = "A tool to protect formulaire from spam."
|
25
25
|
readme = "README.md"
|
26
26
|
dependencies = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|