This file is indexed.

/usr/lib/python2.7/dist-packages/beanbag-1.9.2.egg-info/PKG-INFO is in python-beanbag 1.9.2-1ubuntu1.

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
Metadata-Version: 1.1
Name: beanbag
Version: 1.9.2
Summary: A helper module for accessing REST APIs
Home-page: https://github.com/ajtowns/beanbag
Author: Anthony Towns
Author-email: aj@erisian.com.au
License: MIT
Description: 
        BeanBag
        =======
        
        BeanBag is a simple module that lets you access REST APIs in an easy
        way. For example:
        
           >>> import beanbag
           >>> github = beanbag.BeanBag("https://api.github.com")
           >>> watchers = github.repos.ajtowns.beanbag.watchers()
           >>> for w in watchers:
           ...     print(w["login"])
        
        See `http://beanbag.readthedocs.org/` for more information.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License