notification.get_scheduled() gives an error "name message is not defined".
Checking notification.py shows that the get_schedule def uses "message" but I don't see any declaration.
Using notification.app.scheduledLocalNotifications() is ok.
More, if I print my notifications, I see their "fire date", "URL" but not their "message". Strange!
import notification
#print(notification.get_scheduled())
scheduled = notification.app.scheduledLocalNotifications()
for each in scheduled:
print(each.alertBody()) # shows the message
Thanks to a guru to explain please 😇