This file is indexed.

/usr/lib/python3/dist-packages/notify2-0.3.egg-info is in python3-notify2 0.3-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Metadata-Version: 1.1
Name: notify2
Version: 0.3
Summary: Python interface to DBus notifications
Home-page: https://bitbucket.org/takluyver/pynotify2
Author: Thomas Kluyver
Author-email: takowl@gmail.com
License: UNKNOWN
Description: This is a pure-python replacement for notify-python, using python-dbus
        to communicate with the notifications server directly. It's compatible with
        Python 2 and 3, and its callbacks can work with Gtk 3 or Qt 4 applications.
        
        To use it, first call ``notify2.init('app name')``, then create and show notifications::
        
            n = notify2.Notification("Summary",
                                     "Some body text",
                                     "notification-message-im"   # Icon name
                                    )
            n.show()
        
        To see more of what's possible, refer to docstrings of methods and objects.
        
        Based on the notifications spec at:
        http://developer.gnome.org/notification-spec/
        
        Porting applications from pynotify
        ----------------------------------
        
        There are a few differences from pynotify you should be aware of:
        
        - If you need callbacks from notifications, notify2 must know about your event
          loop. The simplest way is to pass 'glib' or 'qt' as the ``mainloop`` parameter
          to ``init``.
        - The methods ``attach_to_widget`` and ``attach_to_status_icon`` are not
          implemented. You can calculate the location you want the notification to
          appear and call ``Notification``.
        - ``set_property`` and ``get_property`` are not implemented. The summary, body
          and icon are accessible as attributes of a ``Notification`` instance.
        - Various methods that pynotify Notification instances got from gobject do not
          exist, or only implement part of the functionality.
        
        Several pynotify functions, especially getters and setters, are only supported
        for compatibility. You are encouraged to use more direct, Pythonic alternatives.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Software Development :: Libraries :: Python Modules