mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 05:31:15 -07:00
26 lines
877 B
Python
26 lines
877 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# rumps: Ridiculously Uncomplicated macOS Python Statusbar apps.
|
|
# Copyright: (c) 2017, Jared Suttles. All rights reserved.
|
|
# License: BSD, see LICENSE for details.
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
"""
|
|
rumps
|
|
=====
|
|
|
|
Ridiculously Uncomplicated macOS Python Statusbar apps.
|
|
|
|
rumps exposes Objective-C classes as Python classes and functions which greatly simplifies the process of creating a
|
|
statusbar application.
|
|
"""
|
|
|
|
__title__ = 'rumps'
|
|
__version__ = '0.3.0'
|
|
__author__ = 'Jared Suttles'
|
|
__license__ = 'Modified BSD'
|
|
__copyright__ = 'Copyright 2017 Jared Suttles'
|
|
|
|
from .rumps import (separator, debug_mode, alert, notification, application_support, timers, quit_application, timer,
|
|
clicked, notifications, MenuItem, SliderMenuItem, Timer, Window, App, slider)
|