Update notifications for your python app
Project description
Update notifications for your python app! Py-port of update-notifier.
Install
pipenv install update_notipy
or
pip install update_notipy
Usage
from update_notipy import update_notify update_notify( <pkg_name>, <pkg_version>, callback=<callback>, message=<message>).notify()
Examples
from update_notipy import update_notify __version__ = "0.1.0" update_notify('pkg-info', __version__).notify() # ┌───────────────────────────────────────────┐ # │ │ # │ Update available 0.1.0 → 0.1.2 │ # │ Run pip install -U pkg-info to update │ # │ │ # └───────────────────────────────────────────┘ def foo(): four = 2 + 2 print(four) update_notify('pkg-info', __version__, callback=foo).notify() # 4 update_notify('pkg-info', __version__, message="Hello, world!").notify() # Hello, world!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
update-notipy-0.1.0.tar.gz
(2.0 kB
view hashes)
Built Distributions
update_notipy-0.1.0-py3.6.egg
(2.1 kB
view hashes)
Close
Hashes for update_notipy-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dcdd21f3639405937f2d607630c285338b4332c1739c0c971314d0842e8aa77 |
|
MD5 | 19bab58d3c7f8f65115a33f2ebad8423 |
|
BLAKE2-256 | 7704c2de60f01ed7bfd8d077e76bf0c10f9874fb41c3bbf6c122b8449b22a156 |