Metadata-Version: 1.1
Name: zroya
Version: 0.2.4
Summary: Python library for creating native Windows notifications.
Home-page: https://malja.github.io/zroya
Author: Jan Malčák
Author-email: looorin@gmail.com
License: MIT
Description: [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
        [![PyPI version](https://badge.fury.io/py/zroya.svg)](https://pypi.python.org/pypi/zroya/)
        [![PyPI status](https://img.shields.io/pypi/status/zroya.svg)](https://pypi.python.org/pypi/zroya/)
        [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://gitHub.com/malja/zroya/graphs/commit-activity)
        
        # 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](https://github.com/mohabouje/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
        
        ```python
        
        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](https://malja.github.io/zroya)
        
Keywords: notifications,windows,toast
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Win32 (MS Windows)
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: User Interfaces
