djlogq 1.0.2__tar.gz → 1.0.4__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.
Files changed (26) hide show
  1. {djlogq-1.0.2/src/djlogq.egg-info → djlogq-1.0.4}/PKG-INFO +3 -3
  2. {djlogq-1.0.2 → djlogq-1.0.4}/README.md +1 -1
  3. {djlogq-1.0.2 → djlogq-1.0.4}/pyproject.toml +2 -2
  4. {djlogq-1.0.2 → djlogq-1.0.4/src/djlogq.egg-info}/PKG-INFO +3 -3
  5. {djlogq-1.0.2 → djlogq-1.0.4}/MANIFEST.in +0 -0
  6. {djlogq-1.0.2 → djlogq-1.0.4}/setup.cfg +0 -0
  7. {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/SOURCES.txt +0 -0
  8. {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/dependency_links.txt +0 -0
  9. {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/requires.txt +0 -0
  10. {djlogq-1.0.2 → djlogq-1.0.4}/src/djlogq.egg-info/top_level.txt +0 -0
  11. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/__init__.py +0 -0
  12. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/admin.py +0 -0
  13. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/apps.py +0 -0
  14. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/async_logger.py +0 -0
  15. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/__init__.py +0 -0
  16. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/commands/__init__.py +0 -0
  17. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/management/commands/clean_logs.py +0 -0
  18. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/middleware.py +0 -0
  19. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/0001_initial.py +0 -0
  20. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/0002_alter_logentry_function_alter_logentry_line_number_and_more.py +0 -0
  21. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/migrations/__init__.py +0 -0
  22. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/models.py +0 -0
  23. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/tests.py +0 -0
  24. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/urls.py +0 -0
  25. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/utils.py +0 -0
  26. {djlogq-1.0.2 → djlogq-1.0.4}/src/logq/views.py +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: djlogq
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support.
5
- Author-email: mesake <mesnavunawa@gmail.com>
5
+ Author-email: mess <mesnavunawa@gmail.com>
6
6
  License: MIT
7
7
  Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
@@ -21,7 +21,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
21
21
  - **Asynchronous Logging**: All log operations run in a separate thread
22
22
  - **Thread-Safe**: Uses a queue system for thread-safe logging
23
23
  - **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
24
- - **Admin Interface**: Beautiful Django admin interface for viewing and managing logs
24
+ - **Admin Interface**: Django admin interface for viewing and managing logs
25
25
  - **API Endpoints**: REST API for external logging
26
26
  - **Middleware**: Automatic request logging with unique request IDs
27
27
  - **Decorators**: Utility decorators for function logging and performance monitoring
@@ -7,7 +7,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
7
7
  - **Asynchronous Logging**: All log operations run in a separate thread
8
8
  - **Thread-Safe**: Uses a queue system for thread-safe logging
9
9
  - **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
10
- - **Admin Interface**: Beautiful Django admin interface for viewing and managing logs
10
+ - **Admin Interface**: Django admin interface for viewing and managing logs
11
11
  - **API Endpoints**: REST API for external logging
12
12
  - **Middleware**: Automatic request logging with unique request IDs
13
13
  - **Decorators**: Utility decorators for function logging and performance monitoring
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "djlogq"
7
- version = "1.0.2"
7
+ version = "1.0.4"
8
8
  description = "A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support."
9
9
  readme = "README.md"
10
10
  authors = [
11
- {name = "mesake", email = "mesnavunawa@gmail.com"}
11
+ {name = "mess", email = "mesnavunawa@gmail.com"}
12
12
  ]
13
13
  license = {text = "MIT"}
14
14
  requires-python = ">=3.8"
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: djlogq
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: A reusable Django app for asynchronous, thread-safe logging with rich metadata, admin interface, and API support.
5
- Author-email: mesake <mesnavunawa@gmail.com>
5
+ Author-email: mess <mesnavunawa@gmail.com>
6
6
  License: MIT
7
7
  Requires-Python: >=3.8
8
8
  Description-Content-Type: text/markdown
@@ -21,7 +21,7 @@ A reusable Django app that provides asynchronous logging functionality using a s
21
21
  - **Asynchronous Logging**: All log operations run in a separate thread
22
22
  - **Thread-Safe**: Uses a queue system for thread-safe logging
23
23
  - **Rich Metadata**: Captures module, function, line number, user ID, request ID, and extra data
24
- - **Admin Interface**: Beautiful Django admin interface for viewing and managing logs
24
+ - **Admin Interface**: Django admin interface for viewing and managing logs
25
25
  - **API Endpoints**: REST API for external logging
26
26
  - **Middleware**: Automatic request logging with unique request IDs
27
27
  - **Decorators**: Utility decorators for function logging and performance monitoring
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