echo '#!/usr/bin/env python
import pynotify
def main():
# Try Markup
pynotify.init("markup") ## all smallerCase "markup"
# but in parameter, first letter capital
pynotify.Notification("Markup",
'''
<b>bold</b>, <i>italic</i>, <u>underline</u>
and even <a href="http://google.com">links</a> are supported!
'''
).show()
if __name__ == "__main__":
main()
'>py_test.py
chmod u+x py_test.py