I'm working on a web app with Django (Python3), and I need to make a push notification system that notify a specific user even if his browser is closed.
So I need some advice to know how and where to begin, thanks.
I'm working on a web app with Django (Python3), and I need to make a push notification system that notify a specific user even if his browser is closed.
So I need some advice to know how and where to begin, thanks.
You can use webpush
library which gives web notification features.
You can install this library using pip install django-webpush
.
this work for django framework.
If you want to use for python than use pywebpush
and install using command pip install pywebpush