python-sdk-remote 0.0.141__tar.gz → 0.0.142__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 (21) hide show
  1. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/PKG-INFO +1 -1
  2. python_sdk_remote-0.0.142/python_sdk_remote/src/is_test_data.py +4 -0
  3. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/our_object.py +5 -2
  4. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote.egg-info/PKG-INFO +1 -1
  5. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote.egg-info/SOURCES.txt +1 -0
  6. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/setup.py +1 -1
  7. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/README.md +0 -0
  8. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/pyproject.toml +0 -0
  9. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/__init__.py +0 -0
  10. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/constants.py +0 -0
  11. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/http_response.py +0 -0
  12. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/item.py +0 -0
  13. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/mini_logger.py +0 -0
  14. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/unified_json.py +0 -0
  15. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/utilities.py +0 -0
  16. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/valid_json_versions.py +0 -0
  17. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote/src/validate_environment.py +0 -0
  18. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote.egg-info/dependency_links.txt +0 -0
  19. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote.egg-info/requires.txt +0 -0
  20. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/python_sdk_remote.egg-info/top_level.txt +0 -0
  21. {python_sdk_remote-0.0.141 → python_sdk_remote-0.0.142}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-sdk-remote
3
- Version: 0.0.141
3
+ Version: 0.0.142
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
@@ -0,0 +1,4 @@
1
+ class IsTestDataEnum:
2
+ REAL_DATA: 0
3
+ DATA_FOR_TESTS: 1
4
+ DATA_GENERETED_BY_TESTS: 2
@@ -77,7 +77,8 @@ class OurObject(ABC):
77
77
 
78
78
  def to_json(self) -> str:
79
79
  """Returns a json string representation of this object"""
80
- return json.dumps(self.__dict__)
80
+ to_json_result = json.dumps(self.__dict__)
81
+ return to_json_result
81
82
 
82
83
  def from_json(self, json_string: str) -> 'OurObject':
83
84
  """Returns an instance of the class from a json string"""
@@ -103,7 +104,9 @@ class OurObject(ABC):
103
104
  return self.entity_name + ": " + str(self.__dict__)
104
105
 
105
106
  def __repr__(self):
106
- return self.entity_name + ": " + str(self.__dict__)
107
+ # TODO make sure both of them is not None
108
+ repr_result = self.entity_name + ": " + str(self.__dict__)
109
+ return repr_result
107
110
 
108
111
  def to_dict(self):
109
112
  return self.__dict__
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-sdk-remote
3
- Version: 0.0.141
3
+ Version: 0.0.142
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
@@ -9,6 +9,7 @@ python_sdk_remote.egg-info/top_level.txt
9
9
  python_sdk_remote/src/__init__.py
10
10
  python_sdk_remote/src/constants.py
11
11
  python_sdk_remote/src/http_response.py
12
+ python_sdk_remote/src/is_test_data.py
12
13
  python_sdk_remote/src/item.py
13
14
  python_sdk_remote/src/mini_logger.py
14
15
  python_sdk_remote/src/our_object.py
@@ -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.141', # https://pypi.org/project/python-sdk-remote/
10
+ version='0.0.142', # 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",