This file is indexed.

/usr/lib/python3/dist-packages/praw-5.3.0.egg-info/PKG-INFO is in python3-praw 5.3.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
 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
Metadata-Version: 1.1
Name: praw
Version: 5.3.0
Summary: PRAW, an acronym for `Python Reddit API Wrapper`, is a python package that allows for simple access to reddit's API.
Home-page: https://praw.readthedocs.org/
Author: Bryce Boe
Author-email: bbzbryce@gmail.com
License: Simplified BSD License
Description-Content-Type: UNKNOWN
Description: PRAW: The Python Reddit API Wrapper
        ===================================
        
        .. image:: https://img.shields.io/pypi/v/praw.svg
           :alt: Latest PRAW Version
           :target: https://pypi.python.org/pypi/praw
        .. image:: https://travis-ci.org/praw-dev/praw.svg?branch=master
           :alt: Travis CI Status
           :target: https://travis-ci.org/praw-dev/praw
        .. image:: https://coveralls.io/repos/github/praw-dev/praw/badge.svg?branch=master
           :alt: Coveralls Coverage
           :target: https://coveralls.io/github/praw-dev/praw?branch=master
        .. image:: https://badges.gitter.im/praw-dev/praw.svg
           :alt: Join the chat at https://gitter.im/praw-dev/praw
           :target: https://gitter.im/praw-dev/praw
        
        PRAW, an acronym for "Python Reddit API Wrapper", is a python package that
        allows for simple access to Reddit's API. PRAW aims to be easy to use and
        internally follows all of `Reddit's API rules
        <https://github.com/reddit/reddit/wiki/API>`_. With PRAW there's no need to
        introduce ``sleep`` calls in your code. Give your client an appropriate user
        agent and you're set.
        
        .. _installation:
        
        Installation
        ------------
        
        PRAW is supported on python 2.7, 3.3, 3.4, 3.5 and 3.6. The recommended way to
        install PRAW is via `pip <https://pypi.python.org/pypi/pip>`_.
        
        .. code-block:: bash
        
           pip install praw
        
        To install the latest development version of PRAW run the following instead:
        
        .. code-block:: bash
        
           pip install --upgrade https://github.com/praw-dev/praw/archive/master.zip
        
        For instructions on installing python and pip see "The Hitchhiker's Guide to
        Python" `Installation Guides
        <http://docs.python-guide.org/en/latest/starting/installation/>`_.
        
        Quickstart
        ----------
        
        Assuming you already have a credentials for a script-type OAuth application you
        can instantiate an instance of PRAW like so:
        
        .. code-block:: python
        
          import praw
          reddit = praw.Reddit(client_id='CLIENT_ID', client_secret="CLIENT_SECRET",
                               password='PASSWORD', user_agent='USERAGENT',
                               username='USERNAME')
        
        With the ``reddit`` instance you can then interact with Reddit:
        
        .. code-block:: python
        
          # Create a submission to /r/test
          reddit.subreddit('test').submit('Test Submission', url='https://reddit.com')
        
          # Comment on a known submission
          submission = reddit.submission(url='https://www.reddit.com/comments/5e1az9')
          submission.reply('Super rad!')
        
          # Reply to the first comment of a weekly top thread of a moderated community
          submission = next(reddit.subreddit('mod').top('week'))
          submission.comments[0].reply('An automated reply')
        
          # Output score for the first 256 items on the frontpage
          for submission in reddit.front.hot(limit=256):
              print(submission.score)
        
          # Obtain the moderator listing for redditdev
          for moderator in reddit.subreddit('redditdev').moderator:
              print(moderator)
        
        Please see PRAW's `documentation <http://praw.readthedocs.io/>`_ for
        more examples of what you can do with PRAW.
        
        PRAW Discussion and Support
        ---------------------------
        
        For those new to python, or would otherwise consider themselves a python
        beginner, please consider asking questions on the `r/learnpython
        <https://www.reddit.com/r/learnpython>`_ subreddit. There are wonderful people
        there who can help with general python and simple PRAW related questions.
        
        Otherwise, there are a few official places to ask questions about PRAW:
        
        `/r/redditdev <https://www.reddit.com/r/redditdev>`_ is the best place on
        Reddit to ask PRAW related questions. This subreddit is for all Reddit API
        related discussion so please tag submissions with *[PRAW]*. Please perform a
        search on the subreddit first to see if anyone has similar questions.
        
        Real-time chat can be conducted via the `praw-dev/praw
        <https://gitter.im/praw-dev/praw>`_ channel on gitter.
        
        Please do not directly message any of the contributors via Reddit, email, or
        gitter unless they have indicated otherwise. We strongly encourage everyone to
        help others with their questions.
        
        Please file bugs and feature requests as issues on `GitHub
        <https://github.com/praw-dev/praw/issues>`_ after first searching to ensure a
        similar issue was not already filed. If such an issue already exists please
        give it a thumbs up reaction. Comments to issues containing additional
        information are certainly welcome.
        
        .. note:: This project is released with a `Contributor Code of Conduct
           <https://github.com/praw-dev/praw/blob/master/CODE_OF_CONDUCT.md>`_. By
           participating in this project you agree to abide by its terms.
        
        Documentation
        -------------
        
        PRAW's documentation is located at http://praw.readthedocs.io/.
        
        History
        -------
        
        `August 2010
        <https://github.com/praw-dev/praw/commit/efef08a4a713fcfd7dfddf992097cf89426586ae>`_:
        Timothy Mellor created a github project called ``reddit_api``.
        
        `March 2011
        <https://github.com/praw-dev/praw/commit/ebfc9caba5b58b9e68c77af9c8e53f5562a2ee64>`_:
        The python package ``reddit`` was registered and uploaded to pypi.
        
        `December 2011
        <https://github.com/praw-dev/praw/commit/74bb962b3eefe04ce6acad88e6f53f43d10c8803>`_:
        Bryce Boe took over as maintainer of the ``reddit`` package.
        
        `June 2012
        <https://github.com/praw-dev/praw/commit/adaf89fe8631f41ab9913b379de104c9ef6a1e73>`_:
        Bryce renamed the project ``PRAW`` and the repository was relocated to the
        newly created praw-dev organization on GitHub.
        
        `February 2016
        <https://github.com/praw-dev/praw/commit/252083ef1dbfe6ea53c2dc99ac235b4ba330b658>`_:
        Bryce began work on PRAW4, a complete rewrite of PRAW.
        
        
        License
        -------
        
        PRAW's source (v4.0.0+) is provided under the `Simplified BSD License
        <https://github.com/praw-dev/praw/blob/0860c11a9309c80621c267af7caeb6a993933744/LICENSE.txt>`_.
        
        * Copyright (c), 2016, Bryce Boe
        
        Earlier versions of PRAW were released under `GPLv3
        <https://github.com/praw-dev/praw/blob/0c88697fdc26e75f87b68e2feb11e101e90ce215/COPYING>`_.
        
Keywords: reddit api wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Utilities