python-sdk-local 0.0.47__tar.gz → 0.0.49__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.1
2
2
  Name: python-sdk-local
3
- Version: 0.0.47
3
+ Version: 0.0.49
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles
6
6
  Author: Circles
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-sdk-local
3
- Version: 0.0.47
3
+ Version: 0.0.49
4
4
  Summary: PyPI Package for Circles Python SDK Local Python
5
5
  Home-page: https://github.com/circles
6
6
  Author: Circles
@@ -247,7 +247,7 @@ def create_http_headers(jwt_token: str):
247
247
  'Authorization': f'Bearer {jwt_token}',
248
248
  }
249
249
  return http_header
250
- def create__return_http_headers():
250
+ def create_return_http_headers():
251
251
  return {
252
252
  "Content-Type": "application/json",
253
253
  "Access-Control-Allow-Origin": "*",
@@ -3,6 +3,8 @@ import os
3
3
  def validate_enviroment_variables():
4
4
  if(os.getenv("ENVIRONMENT_NAME") is None):
5
5
  raise Exception("logger-local-python-package LoggerLocal.py please add Environment Variable called ENVIRONMENT_NAME=local or play1 (instead of ENVIRONMENT)")
6
+ if(os.getenv("BRAND_NAME") is None):
7
+ raise Exception("logger-local-python-package LoggerLocal.py please add Environment Variable called BRAND_NAME=Circlez")
6
8
  # if(os.getenv("PRODUCT_USER_IDENTIFIER") is None):
7
9
  # raise Exception("logger-local-python-package LoggerLocal.py please add Environment Variable called PRODUCT_USER_IDENTIFIER (instead of PRODUCT_USERNAME)")
8
10
  #removed by Idan because it dont has to be in every project
@@ -3,7 +3,7 @@ import setuptools
3
3
  # python -m build needs pyproject.toml or setup.py
4
4
  setuptools.setup(
5
5
  name='python-sdk-local',
6
- version='0.0.47', # https://pypi.org/project/python-sdk-local/
6
+ version='0.0.49', # https://pypi.org/project/python-sdk-local/
7
7
  author="Circles",
8
8
  author_email="info@circles.life",
9
9
  description="PyPI Package for Circles Python SDK Local Python",