python-sdk-remote 0.0.115__tar.gz → 0.0.117__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.
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/PKG-INFO +1 -1
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/utilities.py +6 -3
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/PKG-INFO +1 -1
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/setup.py +1 -1
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/README.md +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/pyproject.toml +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/__init__.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/constants.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/http_response.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/item.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/mini_logger.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/our_object.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/unified_json.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/valid_json_versions.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/validate_environment.py +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/SOURCES.txt +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/requires.txt +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/top_level.txt +0 -0
- {python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/setup.cfg +0 -0
|
@@ -17,6 +17,8 @@ from .http_response import (create_authorization_http_headers, # noqa - used fo
|
|
|
17
17
|
create_http_body)
|
|
18
18
|
|
|
19
19
|
load_dotenv()
|
|
20
|
+
# TODO Let's do brainstorming on this
|
|
21
|
+
# TODO Please add a comment here on those two lines
|
|
20
22
|
override = True if os.getenv("override", "").lower() in ("t", "true", "0") else False
|
|
21
23
|
load_dotenv(dotenv_path=os.environ.get("DOTENV_PATH"), override=override) # add another .env file if needed
|
|
22
24
|
|
|
@@ -25,10 +27,10 @@ load_dotenv(dotenv_path=os.environ.get("DOTENV_PATH"), override=override) # add
|
|
|
25
27
|
|
|
26
28
|
# TODO: add cache with/out timeout decorator
|
|
27
29
|
|
|
28
|
-
# TODO Use the const/enum from language package
|
|
30
|
+
# TODO Use the const/enum from the language package
|
|
29
31
|
DEFAULT_LANG_CODE_STR = "en"
|
|
30
32
|
# TODO If no one is using DEFAULT_DATETIME_FORMAT, let's comment it
|
|
31
|
-
# TODO
|
|
33
|
+
# TODO Let's split DEFAULT_DATETIME_FORMAT into two const 1. Displayable to Humans (MMM) 2. Internal (sortable) with %m
|
|
32
34
|
DEFAULT_DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
|
|
33
35
|
|
|
34
36
|
|
|
@@ -298,6 +300,7 @@ def our_get_env(key: str, default: str = None, raise_if_not_found: bool = True,
|
|
|
298
300
|
return env_var
|
|
299
301
|
|
|
300
302
|
|
|
303
|
+
# TODO As only the database package uses those, let's move those three to the database package
|
|
301
304
|
def get_sql_hostname() -> str:
|
|
302
305
|
return our_get_env("RDS_HOSTNAME")
|
|
303
306
|
|
|
@@ -401,7 +404,7 @@ def reformat_time_string(input_str: str) -> str:
|
|
|
401
404
|
minutes = "00" if len(input_str) < 4 else input_str[2:4]
|
|
402
405
|
seconds = "00" if len(input_str) < 6 else input_str[4:6]
|
|
403
406
|
milliseconds = "00" if len(input_str) < 8 else input_str[6:8]
|
|
404
|
-
# TODO Shall we use DEFAULT_DATETIME_FORMAT and have the formats in central
|
|
407
|
+
# TODO Shall we use DEFAULT_DATETIME_FORMAT and have the formats in the central
|
|
405
408
|
time_format = f"{hours}:{minutes}:{seconds}:{milliseconds}"
|
|
406
409
|
return time_format
|
|
407
410
|
|
|
@@ -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.117', # 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",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/http_response.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/mini_logger.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/unified_json.py
RENAMED
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote/src/valid_json_versions.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/requires.txt
RENAMED
|
File without changes
|
{python_sdk_remote-0.0.115 → python_sdk_remote-0.0.117}/python_sdk_remote.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|