aiwaf 0.1.7.5__tar.gz → 0.1.7.6__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.

Potentially problematic release.


This version of aiwaf might be problematic. Click here for more details.

Files changed (24) hide show
  1. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/PKG-INFO +1 -1
  2. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/middleware.py +1 -1
  3. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf.egg-info/PKG-INFO +1 -1
  4. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/pyproject.toml +1 -1
  5. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/setup.py +1 -1
  6. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/LICENSE +0 -0
  7. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/README.md +0 -0
  8. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/__init__.py +0 -0
  9. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/apps.py +0 -0
  10. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/blacklist_manager.py +0 -0
  11. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/management/__init__.py +0 -0
  12. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/management/commands/__init__.py +0 -0
  13. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/management/commands/detect_and_train.py +0 -0
  14. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/models.py +0 -0
  15. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/resources/model.pkl +0 -0
  16. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/storage.py +0 -0
  17. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/templatetags/__init__.py +0 -0
  18. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/templatetags/aiwaf_tags.py +0 -0
  19. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/trainer.py +0 -0
  20. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf/utils.py +0 -0
  21. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf.egg-info/SOURCES.txt +0 -0
  22. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf.egg-info/dependency_links.txt +0 -0
  23. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/aiwaf.egg-info/top_level.txt +0 -0
  24. {aiwaf-0.1.7.5 → aiwaf-0.1.7.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiwaf
3
- Version: 0.1.7.5
3
+ Version: 0.1.7.6
4
4
  Summary: AI-powered Web Application Firewall
5
5
  Home-page: https://github.com/aayushgauba/aiwaf
6
6
  Author: Aayush Gauba
@@ -14,7 +14,7 @@ from django.core.cache import cache
14
14
  from django.db.models import F
15
15
  from django.apps import apps
16
16
  from django.urls import get_resolver
17
- from .trainer import STATIC_KW, STATUS_IDX, is_exempt_path, path_exists_in_django, get_ip
17
+ from .trainer import STATIC_KW, STATUS_IDX, is_exempt_path, path_exists_in_django
18
18
  from .blacklist_manager import BlacklistManager
19
19
  from .models import DynamicKeyword
20
20
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiwaf
3
- Version: 0.1.7.5
3
+ Version: 0.1.7.6
4
4
  Summary: AI-powered Web Application Firewall
5
5
  Home-page: https://github.com/aayushgauba/aiwaf
6
6
  Author: Aayush Gauba
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "aiwaf"
3
- version = "0.1.7.5"
3
+ version = "0.1.7.6"
4
4
  description = "AI-powered Web Application Firewall"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
@@ -9,7 +9,7 @@ long_description = (HERE / "README.md").read_text(encoding="utf-8")
9
9
 
10
10
  setup(
11
11
  name="aiwaf",
12
- version="0.1.7.5",
12
+ version="0.1.7.6",
13
13
  description="AI‑driven, self‑learning Web Application Firewall for Django",
14
14
  long_description=long_description,
15
15
  long_description_content_type="text/markdown",
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