organizations-local 0.0.54__tar.gz → 0.0.56__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.
- {organizations_local-0.0.54 → organizations_local-0.0.56}/PKG-INFO +1 -1
- organizations_local-0.0.56/README.md +1 -0
- organizations_local-0.0.56/organizations_local/src/organization.py +20 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/PKG-INFO +1 -1
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/SOURCES.txt +1 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/pyproject.toml +1 -1
- {organizations_local-0.0.54 → organizations_local-0.0.56}/setup.py +1 -1
- organizations_local-0.0.54/README.md +0 -1
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local/src/__init__.py +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local/src/organizations_constants_src.py +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local/src/organizations_local.py +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/dependency_links.txt +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/requires.txt +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/top_level.txt +0 -0
- {organizations_local-0.0.54 → organizations_local-0.0.56}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
TODO Please update the README of the package
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from python_sdk_remote.our_object import OurObject
|
|
2
|
+
|
|
3
|
+
ENTITY_NAME = "Organization"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Organization(OurObject):
|
|
7
|
+
|
|
8
|
+
# TODO Add all fields
|
|
9
|
+
fields = {
|
|
10
|
+
"organization_id",
|
|
11
|
+
"display_as",
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
def __init__(self, entity_name=ENTITY_NAME, **kwargs):
|
|
15
|
+
super().__init__(entity_name, **kwargs)
|
|
16
|
+
|
|
17
|
+
# Mandatory pure virtual method from OurObject
|
|
18
|
+
def get_name(self):
|
|
19
|
+
print(f"{ENTITY_NAME} get_name() self.fields.display_as={self.fields.display_as}")
|
|
20
|
+
return self.fields.display_as
|
{organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/SOURCES.txt
RENAMED
|
@@ -7,5 +7,6 @@ organizations_local.egg-info/dependency_links.txt
|
|
|
7
7
|
organizations_local.egg-info/requires.txt
|
|
8
8
|
organizations_local.egg-info/top_level.txt
|
|
9
9
|
organizations_local/src/__init__.py
|
|
10
|
+
organizations_local/src/organization.py
|
|
10
11
|
organizations_local/src/organizations_constants_src.py
|
|
11
12
|
organizations_local/src/organizations_local.py
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "organizations-local"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.25" # https://pypi.org/project/organizations-local
|
|
8
8
|
description = "organizations-local Python Package"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -5,7 +5,7 @@ package_dir = PACKAGE_NAME.replace("-", "_")
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name=PACKAGE_NAME,
|
|
8
|
-
version='0.0.
|
|
8
|
+
version='0.0.56', # https://pypi.org/project/organizations-local/
|
|
9
9
|
author="Circles",
|
|
10
10
|
author_email="info@circlez.ai",
|
|
11
11
|
description="PyPI Package for Circles organizations-local Python",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
TODO Please update the README of the package
|
{organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local/src/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/requires.txt
RENAMED
|
File without changes
|
{organizations_local-0.0.54 → organizations_local-0.0.56}/organizations_local.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|