All Projects → malja → Zroya

malja / Zroya

Licence: mit
[Partialy working][Stale] Python extension for creating native Windows notifications.

Programming Languages

python3
1442 projects

Projects that are alternatives of or similar to Zroya

Bpstatusbaralert
BPStatusBarAlert is a library that allows you to easily make text-based alert that appear on the status bar and below navigation bar.
Stars: ✭ 129 (-16.23%)
Mutual labels:  notifications
Twilio
Twilio notifications channel for Laravel
Stars: ✭ 141 (-8.44%)
Mutual labels:  notifications
Popmodal
jquery plugin for showing tooltips, titles, modal dialogs and etc
Stars: ✭ 149 (-3.25%)
Mutual labels:  notifications
Notifications Rails
A flexible notification library supporting the delivery to external services, rendering in various environments, and user configuration by category.
Stars: ✭ 130 (-15.58%)
Mutual labels:  notifications
React Native Fcm
react native module for firebase cloud messaging and local notification
Stars: ✭ 1,729 (+1022.73%)
Mutual labels:  notifications
Mindfulness At The Computer
Helps you stay mindful of your breathing while using your computer
Stars: ✭ 143 (-7.14%)
Mutual labels:  notifications
Notification
WordPress Notification plugin
Stars: ✭ 128 (-16.88%)
Mutual labels:  notifications
Notyf
👻 A minimalistic, responsive, vanilla JavaScript library to show toast notifications.
Stars: ✭ 2,093 (+1259.09%)
Mutual labels:  notifications
Dino
Distributed notifications using websockets
Stars: ✭ 142 (-7.79%)
Mutual labels:  notifications
Zebra dialog
A small, compact, and highly configurable jQuery plugin for creating beautiful modal dialog boxes
Stars: ✭ 147 (-4.55%)
Mutual labels:  notifications
Appleapnpush
Send push notification to Apple Devices (iPhone, iPad)
Stars: ✭ 134 (-12.99%)
Mutual labels:  notifications
Server Monitor App
A PHP application to monitor the health of your servers
Stars: ✭ 141 (-8.44%)
Mutual labels:  notifications
Onhold
🔊 Play sounds while and after shell jobs complete
Stars: ✭ 146 (-5.19%)
Mutual labels:  notifications
Health
Laravel Health Panel
Stars: ✭ 1,774 (+1051.95%)
Mutual labels:  notifications
Rpush
The push notification service for Ruby.
Stars: ✭ 1,886 (+1124.68%)
Mutual labels:  notifications
Laravel Fcm
Firebase Cloud Messaging (FCM) sender for Laravel
Stars: ✭ 129 (-16.23%)
Mutual labels:  notifications
Yfiton
Cross-platform CLI utility command for sending notifications using well-known or modern communication services
Stars: ✭ 142 (-7.79%)
Mutual labels:  notifications
Weechat Notify Send
A WeeChat script that sends highlight and message notifications through notify-send.
Stars: ✭ 151 (-1.95%)
Mutual labels:  notifications
Notifiers
The easy way to send notifications
Stars: ✭ 2,034 (+1220.78%)
Mutual labels:  notifications
Svelte Notifications
Svelte toast notifications component that can be used in any JS application
Stars: ✭ 146 (-5.19%)
Mutual labels:  notifications

License: MIT PyPI version PyPI status Maintenance

zroya2

Zroya is a Python package for creating native Windows notifications.

In contrast to first version of zroya, zroya2 is a Python extension built around C++ WinToast library.

Note: Zroya2 is in beta testing. I would be grateful for any bug reports.

Prerequisites

There are no requirements at the moment.

Installation

Zroya2 is now available from pypi:

python -m pip install zroya

Example

import zroya

# Initialize zroya module. Make sure to call this function.
# All parameters are required
zroya.init("YourAppName", "CompanyName", "ProductName", "SubProduct", "Version")

# Create notification template. TYPE_TEXT1 means one bold line withou image.
template = zroya.Template( zroya.TemplateType.Text1 )
# Set first line
template.setFirstLine("My First line")

# Save notification id for later use
notificationID = zroya.show(template)

# .. do something, maybe sleep?

# Hide notification
zroya.hide(notificationID)

Documentation

You may find some limited documentation on Zroya Page

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].