bw-essentials-core 0.1.0__tar.gz → 0.1.1__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 bw-essentials-core might be problematic. Click here for more details.

Files changed (32) hide show
  1. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/PKG-INFO +1 -1
  2. bw_essentials_core-0.1.1/bw_essentials/services/notification.py +77 -0
  3. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials_core.egg-info/PKG-INFO +1 -1
  4. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials_core.egg-info/SOURCES.txt +1 -0
  5. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/setup.py +1 -1
  6. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/README.md +0 -0
  7. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/__init__.py +0 -0
  8. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/constants/__init__.py +0 -0
  9. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/constants/services.py +0 -0
  10. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/data_loch/__init__.py +0 -0
  11. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/data_loch/data_loch.py +0 -0
  12. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/email_client/__init__.py +0 -0
  13. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/email_client/email_client.py +0 -0
  14. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/notifications/__init__.py +0 -0
  15. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/notifications/teams_notification_schemas.py +0 -0
  16. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/notifications/teams_notifications.py +0 -0
  17. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/s3_utils/__init__.py +0 -0
  18. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/s3_utils/s3_utils.py +0 -0
  19. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/__init__.py +0 -0
  20. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/api_client.py +0 -0
  21. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/broker.py +0 -0
  22. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/market_pricer.py +0 -0
  23. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/master_data.py +0 -0
  24. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/model_portfolio_reporting.py +0 -0
  25. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/trade_placement.py +0 -0
  26. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/user_app.py +0 -0
  27. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/user_portfolio.py +0 -0
  28. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials/services/user_portfolio_reporting.py +0 -0
  29. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials_core.egg-info/dependency_links.txt +0 -0
  30. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials_core.egg-info/requires.txt +0 -0
  31. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/bw_essentials_core.egg-info/top_level.txt +0 -0
  32. {bw_essentials_core-0.1.0 → bw_essentials_core-0.1.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bw-essentials-core
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Reusable utilities for S3, email, Data Loch, Microsoft Teams Notifications and more.
5
5
  Author: InvestorAI
6
6
  Author-email: support+tech@investorai.in
@@ -0,0 +1,77 @@
1
+ """
2
+ Module to make API calls to Notification Service
3
+ """
4
+ import logging
5
+
6
+ from bw_essentials.constants.services import Services
7
+ from bw_essentials.services.api_client import ApiClient
8
+
9
+ logger = logging.getLogger(__name__)
10
+
11
+
12
+ class NotificationService(ApiClient):
13
+ """
14
+ Handles notifications through various channels.
15
+ """
16
+ PLATFORM = "PLATFORM"
17
+ NOTIFICATION_API_KEY = 'NOTIFICATION_API_KEY'
18
+ NOTIFICATION_SENDER_NUMBER = "NOTIFICATION_SENDER_NUMBER"
19
+
20
+ def __init__(self):
21
+ """
22
+ Initializes the Notification object.
23
+
24
+ Args:
25
+ - user: The user associated with the notification.
26
+ """
27
+ super().__init__("notification")
28
+ self.name = Services.NOTIFICATION.value
29
+ self.base_url = self.get_base_url(self.name)
30
+ self.urls = {
31
+ "whatsapp": "whatsapp"
32
+ }
33
+
34
+ def _whatsapp(self, title, template, platform, params, to, user_id):
35
+ """
36
+ Sends a WhatsApp notification.
37
+
38
+ Args:
39
+ - user_id (str): The ID of the user receiving the notification.
40
+ - number (str): The phone number for the recipient.
41
+ - title (str): Title of the notification.
42
+ - template (str): Template for the WhatsApp message.
43
+ - platform (str): The platform used for sending
44
+ (WhatsApp, in this case).
45
+ - params: Parameters for the notification message.
46
+
47
+ Returns:
48
+ None
49
+ """
50
+ logger.info(f"In - whatsapp {user_id =}, {to =}, "
51
+ f"{title =}, {template =}, {platform =}, {params =}")
52
+ payload = {
53
+ "from": self._get_env_var(NotificationService.NOTIFICATION_SENDER_NUMBER),
54
+ "to": to,
55
+ "userId": user_id,
56
+ "platform": platform,
57
+ "title": title,
58
+ "template": template,
59
+ "params": params
60
+ }
61
+ logger.info(f"whatsapp {payload =}")
62
+ headers = {
63
+ 'api-key': self._get_env_var(NotificationService.NOTIFICATION_API_KEY)
64
+ }
65
+ self.set_headers(headers)
66
+ resp_data = self._post(url=self.base_url, endpoint=self.urls.get('whatsapp'), data=payload)
67
+ logger.info(f"Whatsapp response {resp_data =}")
68
+
69
+ def send_whatsapp(self, template, title, params, to, user_id):
70
+ logger.info(f"In - send_whatsapp_notification {user_id =} {title = } {params = } {to = }")
71
+
72
+ self._whatsapp(title=title,
73
+ template=template,
74
+ platform=self._get_env_var(NotificationService.PLATFORM),
75
+ params=params,
76
+ to=to,
77
+ user_id=user_id)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bw-essentials-core
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Reusable utilities for S3, email, Data Loch, Microsoft Teams Notifications and more.
5
5
  Author: InvestorAI
6
6
  Author-email: support+tech@investorai.in
@@ -18,6 +18,7 @@ bw_essentials/services/broker.py
18
18
  bw_essentials/services/market_pricer.py
19
19
  bw_essentials/services/master_data.py
20
20
  bw_essentials/services/model_portfolio_reporting.py
21
+ bw_essentials/services/notification.py
21
22
  bw_essentials/services/trade_placement.py
22
23
  bw_essentials/services/user_app.py
23
24
  bw_essentials/services/user_portfolio.py
@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
10
10
 
11
11
  setup(
12
12
  name="bw-essentials-core",
13
- version="0.1.0",
13
+ version="0.1.1",
14
14
  author="InvestorAI",
15
15
  author_email="support+tech@investorai.in",
16
16
  description="Reusable utilities for S3, email, Data Loch, Microsoft Teams Notifications and more.",