python-sdk-remote 0.0.162__tar.gz → 0.0.163__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 python-sdk-remote might be problematic. Click here for more details.

Files changed (32) hide show
  1. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/PKG-INFO +1 -1
  2. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/mini_logger.py +1 -9
  3. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/version.py +1 -1
  4. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote.egg-info/PKG-INFO +1 -1
  5. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/setup.py +1 -1
  6. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/README.md +0 -0
  7. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/pyproject.toml +0 -0
  8. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/__init__.py +0 -0
  9. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/constants.py +0 -0
  10. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/constants_src_mini_logger_and_logger.py +0 -0
  11. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/datetime_range.py +0 -0
  12. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/exceptions.py +0 -0
  13. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/generic_crud.py +0 -0
  14. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/http_response.py +0 -0
  15. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/is_test_data.py +0 -0
  16. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/item.py +0 -0
  17. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_obfuscation.py +0 -0
  18. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_object.py +0 -0
  19. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_objects.py +0 -0
  20. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_objects_local.py +0 -0
  21. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_objects_remote.py +0 -0
  22. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_request.py +0 -0
  23. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/our_request_old.py +0 -0
  24. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/unified_json.py +0 -0
  25. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/utilities.py +0 -0
  26. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/valid_json_versions.py +0 -0
  27. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote/src/validate_environment.py +0 -0
  28. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote.egg-info/SOURCES.txt +0 -0
  29. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
  30. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote.egg-info/requires.txt +0 -0
  31. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/python_sdk_remote.egg-info/top_level.txt +0 -0
  32. {python_sdk_remote-0.0.162 → python_sdk_remote-0.0.163}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-sdk-remote
3
- Version: 0.0.162
3
+ Version: 0.0.163
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-remote-python-package
6
6
  Author: Circles
@@ -24,14 +24,6 @@ if LOGGER_MINIMUM_SEVERITY.isdigit():
24
24
  else:
25
25
  LOGGER_MINIMUM_SEVERITY = LogMessageSeverity.CRITICAL.name
26
26
 
27
- # Option #1 ( I think we should delete it)
28
- # Map the internal "INFORMATION" string to Python's native standard "INFO"
29
- # python_logging_level = "INFO" if LOGGER_MINIMUM_SEVERITY == "INFORMATION" else LOGGER_MINIMUM_SEVERITY
30
- # logging.basicConfig(level=python_logging_level, stream=sys.stdout,
31
- # format="%(asctime)s - %(message)s")
32
-
33
-
34
- # Option #2
35
27
  # Some of our severity names (LogMessageSeverity) aren't recognized by Python's stdlib
36
28
  # logging module, which only knows DEBUG/INFO/WARNING/ERROR/CRITICAL - translate before basicConfig
37
29
  _CUSTOM_TO_STDLIB_LEVEL_NAME = {
@@ -41,9 +33,9 @@ _CUSTOM_TO_STDLIB_LEVEL_NAME = {
41
33
  "EXCEPTION": "ERROR",
42
34
  }
43
35
  LOGGER_MINIMUM_SEVERITY = _CUSTOM_TO_STDLIB_LEVEL_NAME.get(LOGGER_MINIMUM_SEVERITY, LOGGER_MINIMUM_SEVERITY)
36
+
44
37
  logging.basicConfig(level=LOGGER_MINIMUM_SEVERITY, stream=sys.stdout,
45
38
  format="%(asctime)s - %(message)s")
46
-
47
39
  logger = logging.getLogger(__name__)
48
40
 
49
41
 
@@ -1,5 +1,5 @@
1
1
  # PACKAGE_VERSION from setup.py generated by MakePy.ps1
2
- PACKAGE_VERSION = '0.0.162'
2
+ PACKAGE_VERSION = '0.0.153'
3
3
 
4
4
 
5
5
  def get_package_version() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-sdk-remote
3
- Version: 0.0.162
3
+ Version: 0.0.163
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles-zone/python-sdk-remote-python-package
6
6
  Author: Circles
@@ -7,7 +7,7 @@ package_dir = PACKAGE_NAME.replace("-", "_")
7
7
  # python -m build needs pyproject.toml or setup.py
8
8
  setuptools.setup(
9
9
  name=PACKAGE_NAME,
10
- version='0.0.162', # https://pypi.org/project/python-sdk-remote/
10
+ version='0.0.163', # https://pypi.org/project/python-sdk-remote/
11
11
  author="Circles",
12
12
  author_email="info@circlez.ai",
13
13
  description="PyPI Package for Circles Python SDK Local Python",