berryworld 1.0.0.171476__py3-none-any.whl → 1.0.0.175564__py3-none-any.whl

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.
@@ -52,11 +52,12 @@ class EmailLogging:
52
52
  self.sql_con.insert(self.log_df, 'Logging', 'PythonLogs', print_sql=self.print_sql)
53
53
  self.failure_type.append(True)
54
54
 
55
- def on_failure(self, error_message, section=None, critical=True):
55
+ def on_failure(self, error_message, section=None, critical=True, proposed_solution=None):
56
56
  """ Update log on failure
57
57
  :param error_message: Error message to be sent in the Log
58
58
  :param section: Indicate the script section. Useful to locate the error
59
59
  :param critical: Indicate whether it should avoid sending successful logs
60
+ :param proposed_solution: Proposed solution to the error message
60
61
  """
61
62
  unsuccessful_columns = {'Successful': 0,
62
63
  'FinishedDate': datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f"),
@@ -64,5 +65,7 @@ class EmailLogging:
64
65
  'ErrorMessage': str(error_message).replace("'", '"'),
65
66
  'Critical': 1 if critical is True else 0}
66
67
  self.log_df = self.log_df.assign(**unsuccessful_columns)
68
+ if proposed_solution is not None:
69
+ self.log_df = self.log_df.assign(**{'ProposedSolution': proposed_solution})
67
70
  self.sql_con.insert(self.log_df, 'Logging', 'PythonLogs', print_sql=self.print_sql)
68
71
  self.failure_type.append(critical)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: berryworld
3
- Version: 1.0.0.171476
3
+ Version: 1.0.0.175564
4
4
  Summary: Handy classes to improve ETL processes
5
5
  Home-page: https://www.berryworld.com
6
6
  Author: BerryWorld ltd
@@ -7,7 +7,7 @@ berryworld/cache_data.py,sha256=2cStWbFQHimon_lHMbcM_0vU7lt-FCge96D-T9YXaxQ,2242
7
7
  berryworld/credentials.py,sha256=Knxo4gssLT7sbaBjOTFe3mX5k70G2e0M_6CdtlddjtA,10200
8
8
  berryworld/devops.py,sha256=BAsVonVwCXoApUOovkt-BCzwc6KnXjxRDGff_ejSGw8,9719
9
9
  berryworld/email_con.py,sha256=_QGA575BPVIqz7Z2AAghZCgN9YOkgDDYDpvcwnNo6ns,14358
10
- berryworld/email_logging.py,sha256=br2wlwoxVspEuUJJ7VXa4hUxPbBKBRfSKfTQ0GRrreI,3468
10
+ berryworld/email_logging.py,sha256=QaM0FHhAFsZ-AdUbJal2zHAvu0mvG4C_soRbYOuPs4g,3695
11
11
  berryworld/generate_env.py,sha256=Tk9Z_u7cA4Ve8YYTyLH2qwmLVAuYoTIWoFc0h8Va8lY,7842
12
12
  berryworld/handy_mix.py,sha256=SLCAdl2xaWEewWkECzcVFUDODDEkvUgpmJjTiccyVwU,9771
13
13
  berryworld/logic_apps.py,sha256=hFi4wAOTgL9xirU6cR4rkOYTFBdDNes_aU3-aS9MsN0,12457
@@ -29,8 +29,8 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  tests/test_allocation_config.py,sha256=e12l6fE9U57eSPS35g6ekJ_hol7-RHg89JV60_m1BlE,4633
30
30
  tests/test_handy_mix_config.py,sha256=Un56mz9KJmdn4K4OwzHAHLSRzDU1Xv2nFrONNuzOG04,2594
31
31
  tests/test_xml_parser.py,sha256=3QTlhFEd6KbK6nRFKZnc35tad6wqukTbe4QrFi8mr_8,859
32
- berryworld-1.0.0.171476.dist-info/LICENSE,sha256=vtkVCJM6E2af2gnsi2XxKPr4WY-uIbvzVLXieFND0UU,1074
33
- berryworld-1.0.0.171476.dist-info/METADATA,sha256=3INqJYfSPmqZUh_Hh691Yzujz3ltc4ITU3M1sUVtebQ,1107
34
- berryworld-1.0.0.171476.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
35
- berryworld-1.0.0.171476.dist-info/top_level.txt,sha256=GIZ5qy-P5oxfEH755vA1IMFeTVdX3-40JxMe6nOe5I8,17
36
- berryworld-1.0.0.171476.dist-info/RECORD,,
32
+ berryworld-1.0.0.175564.dist-info/LICENSE,sha256=vtkVCJM6E2af2gnsi2XxKPr4WY-uIbvzVLXieFND0UU,1074
33
+ berryworld-1.0.0.175564.dist-info/METADATA,sha256=xTn7FasgLKamtYhEhs8ep0XqVO6F-PT1BT6DxjtBVYQ,1107
34
+ berryworld-1.0.0.175564.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
35
+ berryworld-1.0.0.175564.dist-info/top_level.txt,sha256=GIZ5qy-P5oxfEH755vA1IMFeTVdX3-40JxMe6nOe5I8,17
36
+ berryworld-1.0.0.175564.dist-info/RECORD,,