anzu 0.1.2__tar.gz → 0.1.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.
- {anzu-0.1.2 → anzu-0.1.4}/PKG-INFO +2 -1
- {anzu-0.1.2 → anzu-0.1.4}/README.md +1 -0
- anzu-0.1.4/anzu/__init__.py +1 -0
- {anzu-0.1.2 → anzu-0.1.4}/anzu.egg-info/PKG-INFO +2 -1
- {anzu-0.1.2 → anzu-0.1.4}/pyproject.toml +1 -1
- {anzu-0.1.2 → anzu-0.1.4}/setup.py +1 -1
- anzu-0.1.2/anzu/__init__.py +0 -7
- {anzu-0.1.2 → anzu-0.1.4}/LICENSE +0 -0
- {anzu-0.1.2 → anzu-0.1.4}/anzu.egg-info/SOURCES.txt +0 -0
- {anzu-0.1.2 → anzu-0.1.4}/anzu.egg-info/dependency_links.txt +0 -0
- {anzu-0.1.2 → anzu-0.1.4}/anzu.egg-info/requires.txt +0 -0
- {anzu-0.1.2 → anzu-0.1.4}/anzu.egg-info/top_level.txt +0 -0
- {anzu-0.1.2 → anzu-0.1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: anzu
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: A package for updating queue items in a Django service
|
5
5
|
Home-page: https://github.com/yourusername/queue_updater
|
6
6
|
Author: Your Name
|
@@ -65,6 +65,7 @@ client.update_queue_item(
|
|
65
65
|
|
66
66
|
# Or initialize using environment variables
|
67
67
|
import os
|
68
|
+
|
68
69
|
os.environ["DJANGO_URL"] = "https://your-django-service.com"
|
69
70
|
os.environ["DJANGO_SUPERUSER_USERNAME"] = "admin"
|
70
71
|
os.environ["DJANGO_SUPERUSER_PASSWORD"] = "password"
|
@@ -32,6 +32,7 @@ client.update_queue_item(
|
|
32
32
|
|
33
33
|
# Or initialize using environment variables
|
34
34
|
import os
|
35
|
+
|
35
36
|
os.environ["DJANGO_URL"] = "https://your-django-service.com"
|
36
37
|
os.environ["DJANGO_SUPERUSER_USERNAME"] = "admin"
|
37
38
|
os.environ["DJANGO_SUPERUSER_PASSWORD"] = "password"
|
@@ -0,0 +1 @@
|
|
1
|
+
from .logger import (logger, redis_logger)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: anzu
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.4
|
4
4
|
Summary: A package for updating queue items in a Django service
|
5
5
|
Home-page: https://github.com/yourusername/queue_updater
|
6
6
|
Author: Your Name
|
@@ -65,6 +65,7 @@ client.update_queue_item(
|
|
65
65
|
|
66
66
|
# Or initialize using environment variables
|
67
67
|
import os
|
68
|
+
|
68
69
|
os.environ["DJANGO_URL"] = "https://your-django-service.com"
|
69
70
|
os.environ["DJANGO_SUPERUSER_USERNAME"] = "admin"
|
70
71
|
os.environ["DJANGO_SUPERUSER_PASSWORD"] = "password"
|
anzu-0.1.2/anzu/__init__.py
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
from anzu.worker.client import update_queue_item
|
2
|
-
from anzu.worker.constants import PROCESSING, WAITING, FAILURE, SUCCESS
|
3
|
-
from anzu.logger import logger, redis_logger, AnzuLogger
|
4
|
-
from anzu.websocket import send_socket_response, emit_socket_event
|
5
|
-
|
6
|
-
__version__ = '0.1.2'
|
7
|
-
__all__ = ['update_queue_item', 'SUCCESS', 'PROCESSING', 'FAILURE', 'WAITING', 'logger', 'redis_logger', 'AnzuLogger', 'emit_socket_event', 'send_socket_response']
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|