drf-ebs-utils is a package that offers service classes for notification-service , attachment-service , sso-service.
!! Package is not yet published !!
Use the package manager pip to install drf_ebs_utils.
pip install drf_ebs_utils
Setting .env
cp .env.example .env
SERVICE_SSO_DOMAIN=
SERVICE_SSO_SERVICE_TOKEN=
SERVICE_SSO_SECRET_TOKEN=
SERVICE_SSO_SECRET_KEY=
SERVICE_NOTIFICATION_HOST=
SERVICE_NOTIFICATION_SECRET_KEY=
SERVICE_ATTACHMENT_HOST=
SERVICE_ATTACHMENT_SECRET_KEY=
SERVICE_ATTACHMENT_SECRET_TOKEN=
- SSOService
- NotificationService
- AttachmentService
Example
from src.services.sso import SSOService
sso = SSOService()
from src.services.notification import NotificationService
notification = NotificationService()
from src.services.attachment import AttachmentService
attachment = AttachmentService()
Pull requests are welcome. Open issues addressing pull requests.