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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anzu
3
- Version: 0.1.2
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.2
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"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "anzu"
7
- version = "0.1.2"
7
+ version = "0.1.4"
8
8
  description = "A package for updating queue items in a Django service"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="anzu",
8
- version="0.1.2",
8
+ version="0.1.4",
9
9
  author="Your Name",
10
10
  author_email="your.email@example.com",
11
11
  description="A package for updating queue items in a Django service",
@@ -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