Installation
Open Terminal and run the commands:
pip3 install notipy-osx
The package pyobjc
should come preinstalled on Mac OS. If you do not have it installed, run pip3 install pyobjc
, If you're using pipenv, run
pipenv install notipy-osx
pipenv install pyobjc
Dialog
Create a basic dialog with text like this:
from notipy_osx import dialog_prompt
dialog_prompt(text='This is a basic dialog')
Notification
Create a notification like this:
from notipy_osx import notify
notify(title='New Notifiation')
Notifications are still experimental and may not work properly.