aap-utils 0.2.13__tar.gz → 0.2.14__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.
- {aap_utils-0.2.13 → aap_utils-0.2.14}/PKG-INFO +1 -1
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils/cli.py +3 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/PKG-INFO +1 -1
- {aap_utils-0.2.13 → aap_utils-0.2.14}/setup.py +1 -1
- {aap_utils-0.2.13 → aap_utils-0.2.14}/README.md +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils/__init__.py +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils/register.py +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/SOURCES.txt +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/dependency_links.txt +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/entry_points.txt +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/requires.txt +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/aap_utils.egg-info/top_level.txt +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/pyproject.toml +0 -0
- {aap_utils-0.2.13 → aap_utils-0.2.14}/setup.cfg +0 -0
@@ -82,6 +82,9 @@ def publish_env():
|
|
82
82
|
else:
|
83
83
|
error_message = response_json.get("error", "Unknown error occurred.")
|
84
84
|
print(f"❌ Failed to publish: {error_message}")
|
85
|
+
output = response_json.get("output")
|
86
|
+
if output: # Check if output has a value
|
87
|
+
print(f"📜 Output: {output}")
|
85
88
|
else:
|
86
89
|
print(f"❌ Failed to publish. Server responded with: {response.status_code}, {response.text}")
|
87
90
|
except requests.RequestException as e:
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="aap_utils", # The name of your library
|
5
|
-
version="0.2.
|
5
|
+
version="0.2.14",
|
6
6
|
description="A Python library for registering an IP address for AAP",
|
7
7
|
author="Minh Dang",
|
8
8
|
author_email="danghoangminh86@gmail.com",
|
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
|