python-sdk-local 0.0.142__tar.gz → 0.0.144__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.
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/PKG-INFO +1 -1
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/pyproject.toml +1 -1
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/http_response.py +1 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/our_object.py +1 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/PKG-INFO +1 -1
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/setup.py +1 -1
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/README.md +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/__init__.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/constants.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/item.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/unified_json.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/utilities.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/valid_json_versions.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/validate_environment.py +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/SOURCES.txt +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/dependency_links.txt +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/requires.txt +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/top_level.txt +0 -0
- {python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/setup.cfg +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "python-sdk-local"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.77" # https://pypi.org/project/python-sdk-local
|
|
8
8
|
description = "python-sdk-local Python Package"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -46,6 +46,7 @@ def get_request_parameters_from_event(event: dict) -> dict:
|
|
|
46
46
|
|
|
47
47
|
# TODO: move everything related to serverless to another file
|
|
48
48
|
# TODO: test
|
|
49
|
+
# TODO Do we use is_validate_user_jwt? Where? Is it mandatory/neede?
|
|
49
50
|
def handler_decorator(logger, is_validate_user_jwt: bool = True):
|
|
50
51
|
"""Decorator for AWS Lambda handler functions. It wraps the handler function with logging and error handling.
|
|
51
52
|
Usage:
|
|
@@ -6,6 +6,7 @@ from python_sdk_remote.mini_logger import MiniLogger as logger
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
# TODO Where are we using it? Shall we extend the usage of OurObject as the father of all our entities?
|
|
9
|
+
# TODO Why we removed the metaclass=ABCMetaLogger?
|
|
9
10
|
# class OurObject(ABC, metaclass=ABCMetaLogger):
|
|
10
11
|
class OurObject(ABC):
|
|
11
12
|
def __init__(self, **kwargs):
|
|
@@ -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.
|
|
10
|
+
version='0.0.144', # https://pypi.org/project/python-sdk-local/
|
|
11
11
|
author="Circles",
|
|
12
12
|
author_email="info@circlez.ai",
|
|
13
13
|
description="PyPI Package for Circles Python SDK Local Python",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/valid_json_versions.py
RENAMED
|
File without changes
|
{python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local/src/validate_environment.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/requires.txt
RENAMED
|
File without changes
|
{python_sdk_local-0.0.142 → python_sdk_local-0.0.144}/python_sdk_local.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|