contact-person-profile-csv-imp-local 0.0.55__tar.gz → 0.0.57b2878__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.
Files changed (13) hide show
  1. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/PKG-INFO +1 -1
  2. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local/src/CSVToContactPersonProfile.py +4 -0
  3. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local.egg-info/PKG-INFO +1 -1
  4. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/setup.py +1 -1
  5. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/README.md +0 -0
  6. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local/src/__init__.py +0 -0
  7. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local/src/contact_person_profile_csv_imp_local_constants.py +0 -0
  8. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local.egg-info/SOURCES.txt +0 -0
  9. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local.egg-info/dependency_links.txt +0 -0
  10. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local.egg-info/requires.txt +0 -0
  11. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/contact_person_profile_csv_imp_local.egg-info/top_level.txt +0 -0
  12. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/pyproject.toml +0 -0
  13. {contact_person_profile_csv_imp_local-0.0.55 → contact_person_profile_csv_imp_local-0.0.57b2878}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contact-person-profile-csv-imp-local
3
- Version: 0.0.55
3
+ Version: 0.0.57b2878
4
4
  Summary: PyPI Package for Circles CSVToContactPersonProfile-local Local/Remote Python
5
5
  Home-page: https://github.com/circles-zone/contact-person-profile-csv-imp-local-python-package
6
6
  Author: Circles
@@ -137,6 +137,7 @@ class CSVToContactPersonProfile(
137
137
  column_value="Contact")
138
138
  self.list_of_group_dicts: list[str] = [group.strip() for group in groups_str.split(",")] if groups_str else []
139
139
  self.user_context = UserContext()
140
+ #self._ensure_user_context_methods()
140
141
  self.organization_profiles: OrganizationProfilesLocal = None
141
142
  self.contact_persons: ContactPersonsLocal = None
142
143
  self.contact_user_external: ContactUserExternalLocal = None
@@ -336,6 +337,9 @@ class CSVToContactPersonProfile(
336
337
  if not contact_dict['display_as'] and contact_dict.get('organization'):
337
338
  contact_dict['display_as'] += " " + contact_dict['organization']
338
339
  # TODO if contact_dict['display_as'] still empty raise?
340
+ if not contact_dict['display_as']:
341
+ # TODO add function to get display_as
342
+ raise Exception("Could not find 'diplay_as' in 'contact_dict'")
339
343
 
340
344
  # TODO process_notes( contact_dict[notes] )
341
345
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: contact-person-profile-csv-imp-local
3
- Version: 0.0.55
3
+ Version: 0.0.57b2878
4
4
  Summary: PyPI Package for Circles CSVToContactPersonProfile-local Local/Remote Python
5
5
  Home-page: https://github.com/circles-zone/contact-person-profile-csv-imp-local-python-package
6
6
  Author: Circles
@@ -5,7 +5,7 @@ package_dir = PACKAGE_NAME.replace("-", "_")
5
5
 
6
6
  setuptools.setup(
7
7
  name=PACKAGE_NAME,
8
- version='0.0.55', # https://pypi.org/project/contact-person-profile-csv-imp-local/
8
+ version='0.0.57b2878', # https://pypi.org/project/contact-person-profile-csv-imp-local/
9
9
 
10
10
  author="Circles",
11
11
  author_email="info@circles.ai",