This file is indexed.

/usr/lib/python3/dist-packages/xkcd-2.4.2.egg-info/PKG-INFO is in python3-xkcd 2.4.2-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
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
Metadata-Version: 1.1
Name: xkcd
Version: 2.4.2
Summary: Library to access xkcd.com
Home-page: https://github.com/TC01/python-xkcd
Author: Ben Rosser
Author-email: rosser.bjr@gmail.com
License: MIT
Description: xkcd v2.4.2 |Build Status|
        ==========================
        
        A Python interface to xkcd.com
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        By Ben Rosser, released under MIT License (see LICENSE for full text).
        
        This is a Python library for accessing and retrieving links to comics
        from the xkcd webcomic by Randall Munroe. It is NOT endorsed or made by
        him, it's an entirely independent project.
        
        It makes use of the JSON interface to Randall's site to retrieve comic
        data. Both Python 2 and Python 3 are supported, and there are no
        dependencies beyond the Python standard library, so xkcd's footprint
        should be very light.
        
        There is support for accessing specific comics, the latest comic, or a
        random comic. Comic metadata can be queried and the comics themselves
        can be downloaded onto your local system. The goal is simply to provide
        a relatively Pythonic wrapper around the xkcd API for any Python program
        or library that wants to access information about xkcd comics, for one
        reason or another.
        
        The xkcd module, as of version 2.4.0, also supports getting information
        on What If articles from whatif.xkcd.com. This information is generated
        by scraping the What If archive page with a HTML parser.
        
        Full API documentation is available
        `here <https://pythonhosted.org/xkcd/>`__.
        
        Changelog:
        ----------
        
        Version 2.4.2:
        ~~~~~~~~~~~~~~
        
        -  Switched to using HTTPS URLs for all xkcd queries.
        
        Version 2.4.1:
        ~~~~~~~~~~~~~~
        
        -  Routines that take comic/article numbers (e.g. xkcd.getComic()) now
           also can take strings containing cardinal numbers.
        
        Version 2.4.0:
        ~~~~~~~~~~~~~~
        
        -  Added preliminary What If support; routines for querying basic data
           about What If articles now exist.
        -  Comic.download() will create its default directory (~/Downloads) if
           it does not already exist, rather than simply failing.
        -  All prints to standard output are now wrapped in "silent" options
           that now default to True (this affects xkcd.getComic and
           Comic.download); if silent is set, output won't be printed.
        -  Significantly improved documentation for all available functions and
           classes.
        
        Version 2.3.3:
        ~~~~~~~~~~~~~~
        
        -  Made pypandoc conversion optional; long\_description will be MD
           formatted if it cannot be imported (and rST-formatted if it can).
        
        Version 2.3.2:
        ~~~~~~~~~~~~~~
        
        -  Fixed distutils URL to point at TC01/python-xkcd, not TC01/xkcd.
        -  Started using pypandoc to dynamically turn README.md into a RST
           long-description.
        
        Version 2.3:
        ~~~~~~~~~~~~
        
        -  Fixed ASCII bug in Python 2.x
        -  Created Sphinx documentation and uploaded it to pythonhosted.org
        
        Version 2.2:
        ~~~~~~~~~~~~
        
        -  Fixed very silly bug with xkcd.getComic()
        -  Added a getExplanation() which returns an explainxkcd link for a
           Comic().
        -  Added support for Python 3!
        
        Version 2.1:
        ~~~~~~~~~~~~
        
        -  Fixed bugs with Comic.download() function
        -  Added optional parameter to Comic.download() to change name of output
           file
        -  Added more information to long\_description text
        
        Credits:
        --------
        
        -  Ben Rosser rosser.bjr@gmail.com: Developer
        
        Contributions from (github users, unless indicated otherwise):
        
        -  @Kyu
        -  Tanya Sandoval (@tsando)
        
        .. |Build Status| image:: https://travis-ci.org/TC01/python-xkcd.svg?branch=master
           :target: https://travis-ci.org/TC01/python-xkcd
        
Keywords: xkcd webcomic whatif
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5