This file is indexed.

/usr/lib/python2.7/dist-packages/PyGithub-1.26.0.egg-info/PKG-INFO is in python-github 1.26.0-1.

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
Metadata-Version: 1.1
Name: PyGithub
Version: 1.26.0
Summary: Use the full Github API v3
Home-page: http://jacquev6.github.com/PyGithub
Author: Vincent Jacques
Author-email: vincent@vincent-jacques.net
License: UNKNOWN
Description: (Very short) Tutorial
        =====================
        
        First create a Github instance::
        
            from github import Github
        
            g = Github("user", "password")
        
        Then play with your Github objects::
        
            for repo in g.get_user().get_repos():
                print repo.name
                repo.edit(has_wiki=False)
        
        You can also create a Github instance with an OAuth token::
        
            g = Github(token)
        
        Or without authentication::
        
            g = Github()
        
        Reference documentation
        =======================
        
        See http://jacquev6.github.com/PyGithub
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development