Initial commit

This commit is contained in:
2026-02-01 09:31:38 +01:00
commit e02db93960
4396 changed files with 1511612 additions and 0 deletions

View File

@@ -0,0 +1 @@
pip

View File

@@ -0,0 +1,22 @@
Copyright (c) 2016, Bryce Boe
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -0,0 +1,242 @@
Metadata-Version: 2.1
Name: praw
Version: 7.8.1
Summary: Python Reddit API Wrapper.
Keywords: reddit,api,wrapper
Author-email: Bryce Boe <bbzbryce@gmail.com>
Maintainer-email: Bryce Boe <bbzbryce@gmail.com>, Joe RH <jarhill0@gmail.com>, Joel Payne <lilspazjoekp@gmail.com>
Requires-Python: ~=3.8
Description-Content-Type: text/x-rst
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 :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Dist: prawcore >=2.4, <3
Requires-Dist: update_checker >=0.18
Requires-Dist: websocket-client >=0.54.0
Requires-Dist: coveralls ; extra == "ci"
Requires-Dist: packaging ; extra == "dev"
Requires-Dist: praw[lint] ; extra == "dev"
Requires-Dist: praw[test] ; extra == "dev"
Requires-Dist: praw[readthedocs] ; extra == "lint"
Requires-Dist: pre-commit ; extra == "lint"
Requires-Dist: ruff >=0.0.291 ; extra == "lint"
Requires-Dist: furo ; extra == "readthedocs"
Requires-Dist: sphinx ; extra == "readthedocs"
Requires-Dist: betamax >=0.8, <0.9 ; extra == "test"
Requires-Dist: betamax-matchers >=0.3.0, <0.5 ; extra == "test"
Requires-Dist: pytest >=2.7.3 ; extra == "test"
Requires-Dist: requests >=2.20.1, <3 ; extra == "test"
Requires-Dist: urllib3 ==1.26.*, <2 ; extra == "test"
Project-URL: Change Log, https://praw.readthedocs.io/en/latest/package_info/change_log.html
Project-URL: Documentation, https://praw.readthedocs.io/
Project-URL: Issue Tracker, https://github.com/praw-dev/praw/issues
Project-URL: Source Code, https://github.com/praw-dev/praw
Provides-Extra: ci
Provides-Extra: dev
Provides-Extra: lint
Provides-Extra: readthedocs
Provides-Extra: test
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://img.shields.io/pypi/pyversions/praw
:alt: Supported Python Versions
:target: https://pypi.python.org/pypi/praw
.. image:: https://img.shields.io/pypi/dm/praw
:alt: PyPI - Downloads - Monthly
:target: https://pypi.python.org/pypi/praw
.. image:: https://github.com/praw-dev/praw/actions/workflows/ci.yml/badge.svg?event=push
:alt: GitHub Actions Status
:target: https://github.com/praw-dev/praw/actions/workflows/ci.yml
.. image:: https://coveralls.io/repos/github/praw-dev/praw/badge.svg
:alt: Coveralls Coverage
:target: https://coveralls.io/github/praw-dev/praw?branch=master
.. image:: https://api.securityscorecards.dev/projects/github.com/praw-dev/praw/badge
:alt: OpenSSF Scorecard
:target: https://api.securityscorecards.dev/projects/github.com/praw-dev/praw
.. image:: https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg
:alt: Contributor Covenant
:target: https://github.com/praw-dev/.github/blob/main/CODE_OF_CONDUCT.md
.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
:alt: pre-commit
:target: https://github.com/pre-commit/pre-commit
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:alt: Black code style
:target: https://github.com/psf/black
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 3.8+. 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 <https://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(time_filter="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 r/test
for moderator in reddit.subreddit("test").moderator():
print(moderator)
Please see PRAW's `documentation <https://praw.readthedocs.io/>`_ for more examples of
what you can do with PRAW.
Discord Bots and Asynchronous Environments
------------------------------------------
If you plan on using PRAW in an asynchronous environment, (e.g., discord.py, asyncio) it
is strongly recommended to use `Async PRAW <https://asyncpraw.readthedocs.io/>`_. It is
the official asynchronous version of PRAW and its usage is similar and has the same
features as 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 Slack Organization
<https://join.slack.com/t/praw/shared_invite/enQtOTUwMDcxOTQ0NzY5LWVkMGQ3ZDk5YmQ5MDEwYTZmMmJkMTJkNjBkNTY3OTU0Y2E2NGRlY2ZhZTAzMWZmMWRiMTMwYjdjODkxOGYyZjY>`_
(please create an issue if that invite link has expired).
Please do not directly message any of the contributors via Reddit, email, or Slack
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/.github/blob/main/CODE_OF_CONDUCT.md>`_. By
participating in this project you agree to abide by its terms.
Documentation
-------------
PRAW's documentation is located at https://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 ©, 2016, Bryce Boe
Earlier versions of PRAW were released under `GPLv3
<https://github.com/praw-dev/praw/blob/0c88697fdc26e75f87b68e2feb11e101e90ce215/COPYING>`_.

View File

@@ -0,0 +1,166 @@
praw-7.8.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
praw-7.8.1.dist-info/LICENSE.txt,sha256=qWD9mQsMaIPPjQAVp1-LHyZXzM8nWqgConwibDyGFIY,1296
praw-7.8.1.dist-info/METADATA,sha256=vYERSOwsPHFdHKB_vbvGznJGAkcHbK4FIG4Hvv6rbco,9423
praw-7.8.1.dist-info/RECORD,,
praw-7.8.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
praw-7.8.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
praw/__init__.py,sha256=2qwCu9iTwHGEgNcqbBTVSZ7vP5Vu8GADdygBseVorYE,495
praw/__pycache__/__init__.cpython-310.pyc,,
praw/__pycache__/config.cpython-310.pyc,,
praw/__pycache__/const.cpython-310.pyc,,
praw/__pycache__/endpoints.cpython-310.pyc,,
praw/__pycache__/exceptions.cpython-310.pyc,,
praw/__pycache__/objector.cpython-310.pyc,,
praw/__pycache__/reddit.cpython-310.pyc,,
praw/config.py,sha256=tXY1Cs7sg_c4e74ktZTc3USoZh0hvLnYVNZHKeV1JK8,5832
praw/const.py,sha256=KbUYxFFE8iqrPsYTjp3EGZaUWS-6GkkqhGp1dcTro34,283
praw/endpoints.py,sha256=iZz6iPKBpazFT7dNpOInUIljyapLN0F3S9V6WN206IY,13886
praw/exceptions.py,sha256=YDOV9ETacLVVuZlvkGSG_f2ZQ5FHLy3vJzW5tG6Zt70,10294
praw/images/PRAW logo.png,sha256=X_JRcxlj_Bj_s5-4VJ-a8fp9C6m6q6iNsYBH3n77UUE,3379
praw/models/__init__.py,sha256=pKQXzkWGmgCEKi3Lq0OFzpgbJKHuXJSOL9gbPazPDcI,2074
praw/models/__pycache__/__init__.cpython-310.pyc,,
praw/models/__pycache__/auth.cpython-310.pyc,,
praw/models/__pycache__/base.cpython-310.pyc,,
praw/models/__pycache__/comment_forest.cpython-310.pyc,,
praw/models/__pycache__/front.cpython-310.pyc,,
praw/models/__pycache__/helpers.cpython-310.pyc,,
praw/models/__pycache__/inbox.cpython-310.pyc,,
praw/models/__pycache__/mod_action.cpython-310.pyc,,
praw/models/__pycache__/mod_note.cpython-310.pyc,,
praw/models/__pycache__/mod_notes.cpython-310.pyc,,
praw/models/__pycache__/preferences.cpython-310.pyc,,
praw/models/__pycache__/redditors.cpython-310.pyc,,
praw/models/__pycache__/stylesheet.cpython-310.pyc,,
praw/models/__pycache__/subreddits.cpython-310.pyc,,
praw/models/__pycache__/trophy.cpython-310.pyc,,
praw/models/__pycache__/user.cpython-310.pyc,,
praw/models/__pycache__/util.cpython-310.pyc,,
praw/models/auth.py,sha256=IhqtADrBD9I0kWlsa9WKrd1mCl_n1WRSr7DU7fYuBJc,5953
praw/models/base.py,sha256=yk5ZFbfnVAdEsORmmE25OmDaGhDD6xzB8uKVsTo7Ncw,1474
praw/models/comment_forest.py,sha256=BleWdXccB-zrghizdaYOh0rnF6YAp32IgP7yYKLFfwc,7411
praw/models/front.py,sha256=9FFstHPSn-dwWXYrfHDjbJRYI1VUES1eVE9C2_ZAQGE,970
praw/models/helpers.py,sha256=pI9uGrZxGTah501o-TjM_VPLDhQiaKqUkmESP90cezc,13555
praw/models/inbox.py,sha256=5a_O5le9MFl1zsqclaXZV4T6A6KkWSyT7txxVNLnEy4,10847
praw/models/list/__init__.py,sha256=XAASphlPb0VdjWy4OljGFy1cWyrSt35UGhQpja7w-ds,53
praw/models/list/__pycache__/__init__.cpython-310.pyc,,
praw/models/list/__pycache__/base.cpython-310.pyc,,
praw/models/list/__pycache__/draft.cpython-310.pyc,,
praw/models/list/__pycache__/moderated.cpython-310.pyc,,
praw/models/list/__pycache__/redditor.cpython-310.pyc,,
praw/models/list/__pycache__/trophy.cpython-310.pyc,,
praw/models/list/base.py,sha256=j3tT8CPBqQrqmerxsf-K7O47D4klXcW5c2iaRS2grDM,1630
praw/models/list/draft.py,sha256=PCLSQmw5FPTO3eg0ZQcpHCnYc6Aa6LFL7AF3zLdeA8c,201
praw/models/list/moderated.py,sha256=t4cyuZ3ktforswYDaAaoOlPQfZsJIjhxQ6nf8RW5FTM,221
praw/models/list/redditor.py,sha256=IDSftW9bW_M9qi_UiuclKvbRTSyxX48IUmEY5ocOjvI,212
praw/models/list/trophy.py,sha256=Kz40mNwssRUZalo0JDtUnCSoJFwCLcTpRxWD0nANe-A,328
praw/models/listing/__init__.py,sha256=5WwCJLug8m47uj-CIaQ2UzViaw95Z0PnmhLT9zwc20o,73
praw/models/listing/__pycache__/__init__.cpython-310.pyc,,
praw/models/listing/__pycache__/domain.cpython-310.pyc,,
praw/models/listing/__pycache__/generator.cpython-310.pyc,,
praw/models/listing/__pycache__/listing.cpython-310.pyc,,
praw/models/listing/domain.py,sha256=2GVpWL3OkpBrIuM1ditizTeG94xLnq__Wd4jd5Ug7cA,742
praw/models/listing/generator.py,sha256=1d29dxJskuusV_REgZosBs6NKI__ClQT3hL1XpCuQuE,3518
praw/models/listing/listing.py,sha256=zRsSY307VRiPavgJu4SoaBY_ieWRRuXQl08Si060J44,2001
praw/models/listing/mixins/__init__.py,sha256=9Erl-gC--2nL84Z7-v_qdliMHW00u6dL5dy64DZ-T_0,273
praw/models/listing/mixins/__pycache__/__init__.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/base.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/gilded.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/redditor.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/rising.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/submission.cpython-310.pyc,,
praw/models/listing/mixins/__pycache__/subreddit.cpython-310.pyc,,
praw/models/listing/mixins/base.py,sha256=fOY7XgyUA1zzMScuxJua9J6N_4PG-51u-xTHBmEktfc,5896
praw/models/listing/mixins/gilded.py,sha256=xLIo645YuA_dGwYnq2vN4srfqNwFA2crnl3a5fGx82A,865
praw/models/listing/mixins/redditor.py,sha256=PqjTZTrdyP1ITf29icRk26CzWnIJTpxOi0ykwXkS9bU,7594
praw/models/listing/mixins/rising.py,sha256=u62EE-LUFU42pOqkYo90tn8yEHFCxmof2EstN4l8b2M,1665
praw/models/listing/mixins/submission.py,sha256=b-W_Bh5DD0c1GmcFlakR5pGQ7w-0B_1apNRk3fWlVes,1157
praw/models/listing/mixins/subreddit.py,sha256=D6gIVFNLlZi1eAoERZVf44NQY3bAPbTg9RqXwQDXb2k,2370
praw/models/mod_action.py,sha256=1s3gy2-BCdczjNOr43Ava2FkBPNXN9Ri1Et4gElitjs,541
praw/models/mod_note.py,sha256=CAjDUj2rmHEXvr8m0AM9zb4aELEM9Qg6193pFbZrySA,3155
praw/models/mod_notes.py,sha256=GZSaUILevXksTDI7rbeXww8efJVq2olFqhp8VAg5em4,25424
praw/models/preferences.py,sha256=vlDLpvjr_HgeKtLl1v9SSzmsAwYFlGouLubuCyDFKG8,10735
praw/models/reddit/__init__.py,sha256=02HweZcTBX0JwEtp58gBMSFmZA9f5t4e6v8y6svmYc8,53
praw/models/reddit/__pycache__/__init__.cpython-310.pyc,,
praw/models/reddit/__pycache__/base.cpython-310.pyc,,
praw/models/reddit/__pycache__/collections.cpython-310.pyc,,
praw/models/reddit/__pycache__/comment.cpython-310.pyc,,
praw/models/reddit/__pycache__/draft.cpython-310.pyc,,
praw/models/reddit/__pycache__/emoji.cpython-310.pyc,,
praw/models/reddit/__pycache__/inline_media.cpython-310.pyc,,
praw/models/reddit/__pycache__/live.cpython-310.pyc,,
praw/models/reddit/__pycache__/message.cpython-310.pyc,,
praw/models/reddit/__pycache__/modmail.cpython-310.pyc,,
praw/models/reddit/__pycache__/more.cpython-310.pyc,,
praw/models/reddit/__pycache__/multi.cpython-310.pyc,,
praw/models/reddit/__pycache__/poll.cpython-310.pyc,,
praw/models/reddit/__pycache__/redditor.cpython-310.pyc,,
praw/models/reddit/__pycache__/removal_reasons.cpython-310.pyc,,
praw/models/reddit/__pycache__/rules.cpython-310.pyc,,
praw/models/reddit/__pycache__/submission.cpython-310.pyc,,
praw/models/reddit/__pycache__/subreddit.cpython-310.pyc,,
praw/models/reddit/__pycache__/user_subreddit.cpython-310.pyc,,
praw/models/reddit/__pycache__/widgets.cpython-310.pyc,,
praw/models/reddit/__pycache__/wikipage.cpython-310.pyc,,
praw/models/reddit/base.py,sha256=s8dIeSKI-MzCRzCXaDePkFdu5A0w_YYVZiyEGt2rqtQ,3224
praw/models/reddit/collections.py,sha256=CQj6Zs7ZXQ0MGdRKDA4GY6n9fsnpwJNe_D3t7LR9QjM,17958
praw/models/reddit/comment.py,sha256=089OtB5GthJsE00kl8_l8eH61CGTdntMtZOly1rZjpw,12636
praw/models/reddit/draft.py,sha256=0ApNh4Fz9k-RmWPyC6UWaxR_6H7povMlN5qLzQ0pAQM,11732
praw/models/reddit/emoji.py,sha256=xaLAvK6CSYrf8gbaeDmq1UABdTJu1DONnx7RQUDXLX8,8543
praw/models/reddit/inline_media.py,sha256=F2ucyqDMAogOCq8j4e4YzB-lV1YNBwPtzPrVjqh-1v8,1572
praw/models/reddit/live.py,sha256=izdBdce6PnJZfl1c8ZfLrU8htrgNfbjRqAA8LFXr1bc,26667
praw/models/reddit/message.py,sha256=4HJI-WnHDsf4H-riIhLdfX7HTWPZTS-gcsrb4XdUWgY,6118
praw/models/reddit/mixins/__init__.py,sha256=PsCf866NTkQJiuCg_RXjXtiD_pQc-pBWCRPOMUSlo4M,11092
praw/models/reddit/mixins/__pycache__/__init__.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/editable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/fullname.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/gildable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/inboxable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/inboxtoggleable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/messageable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/modnote.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/replyable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/reportable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/savable.cpython-310.pyc,,
praw/models/reddit/mixins/__pycache__/votable.cpython-310.pyc,,
praw/models/reddit/mixins/editable.py,sha256=1UvYe2v33PtiQD_PICp1sDG2tEX7-dPMvLsF01cntRs,1801
praw/models/reddit/mixins/fullname.py,sha256=dMFHVrxDiLpSQEI7MY4N1ZBWVXFsD9iSinLgOE7DSgg,473
praw/models/reddit/mixins/gildable.py,sha256=rmCJXcgQBVTNi_NA1_EK3Ga_UwLiUo6HixtoeZx1BLw,4329
praw/models/reddit/mixins/inboxable.py,sha256=CDqVxcuHetBOm2FJDjma8It76LwF9IcJaNdLBTxKDfc,3588
praw/models/reddit/mixins/inboxtoggleable.py,sha256=2OZg0QhueamTryVMCZoepio2d0KnhCltl_H9NDrrqXw,1431
praw/models/reddit/mixins/messageable.py,sha256=Y0JKP5bvjqyrmTY_xP7SVaH4lpExSC6Wm9r0Qs1ktiY,2052
praw/models/reddit/mixins/modnote.py,sha256=BYHNL2PcqjwEispzHIyvW-6IMG0JcBqBIKwyx7W2r0Y,2221
praw/models/reddit/mixins/replyable.py,sha256=jMEN9-WclFZf0JpuP3uEMp3nJnLa35Ssk44idtrXyJw,1632
praw/models/reddit/mixins/reportable.py,sha256=bYvFq7VR-R3YW6qHJ-r_MT5Zk5HnJQ3_56eTk9Yoor0,806
praw/models/reddit/mixins/savable.py,sha256=bL6NgyNcYiQ45IynNb-7eUexkDAG1Xj1kOHpEKHryIM,1348
praw/models/reddit/mixins/votable.py,sha256=2LIWb1mDP3qUJkEnhoDgYC7WlZ8LgvGlpXnTOtj_CL4,2636
praw/models/reddit/modmail.py,sha256=frb7a7ri7JdKFhmmcpk0Nt54fWYV8S66_jv_4XmSTT0,12229
praw/models/reddit/more.py,sha256=aZpGf0dUMr3ONlG989tFjk0OTz6sSlPNsuNYCl2EVLU,3371
praw/models/reddit/multi.py,sha256=0wI6bPtNRye39BRpWLoZEqvFsr1wWFhN-Nhg3BDD-Bw,9122
praw/models/reddit/poll.py,sha256=ReTlyszgNLpAAtFhksNkFhLuR2z7t0es84DIkEYm2t8,3867
praw/models/reddit/redditor.py,sha256=hqVvd4jzMnOIFpBUJDo0Y75wlwCrFruYVVkLjxPWPhE,16965
praw/models/reddit/removal_reasons.py,sha256=JnT3UjJTwlnB1T0m0oyPlw5XtjsghFSQ_9DoRlqM5wQ,8663
praw/models/reddit/rules.py,sha256=ZwLyuMD8MxiJGCXSFtfsegp8RKVjRRMUuA71LP3mXN0,15296
praw/models/reddit/submission.py,sha256=hPS2CVqOfU7cUZIHzJlWTxhYnihqQqMHMK2gOYk12fY,33330
praw/models/reddit/subreddit.py,sha256=2W7p8d-4As2ThVc82FIgybbSnq7jTFerQPlNtnrHszU,154090
praw/models/reddit/user_subreddit.py,sha256=QL4VMfu9CE-tBIYnjy55496q2jHfjaX1UGGGFSumivA,10911
praw/models/reddit/widgets.py,sha256=WIa5ZD6nUCncBcI-ALjSM7rw84WEGiGmVLeeAyB_8p4,65556
praw/models/reddit/wikipage.py,sha256=xaGxBBpta_PnEiKNnvpy-tEPeBP_bQ23ZgrPEy1XPCc,12022
praw/models/redditors.py,sha256=ym11W5K1D9UMjIGV3gFxM_01CMHUxgxdiiMYEwFgwJQ,3758
praw/models/stylesheet.py,sha256=ahi8YQ4AYN5kIbEkr4lZiN2RW5fscfFoUgFwwjJi5IA,512
praw/models/subreddits.py,sha256=xPF9wneoQueIMGMcyD4FprcNzeeD1sykT26x4dTV7Ng,6436
praw/models/trophy.py,sha256=CvsvjOPSixCumww4ik-WnmjJhtyuf_dJqY_R_7JE3Ns,1983
praw/models/user.py,sha256=mFBCl4TS2kdvTFxtYLLiZeduLSeYbtjl-vaYI26Uo_0,10839
praw/models/util.py,sha256=CUhaR2Y5DbxWrFS6AZ073yUSK4zF-MJckB7cyg0ma_o,8303
praw/objector.py,sha256=4ByQELoE8QMsJBR8ww6-FJRbGmAi9TtSaExEjy7N8-c,12610
praw/praw.ini,sha256=EUCRuPZDbh9MGFjPONsXAic5lRERfadHdFIY3AiDrbU,634
praw/reddit.py,sha256=IfUvcINWpmt2Ehc5cZlDiMAgGXOx7ZjEycHAYg7ffCI,36916
praw/util/__init__.py,sha256=9ZY451O3NfuW2KVowHozLH3jQGEW4AvHUrXcfAzJJY0,167
praw/util/__pycache__/__init__.cpython-310.pyc,,
praw/util/__pycache__/cache.cpython-310.pyc,,
praw/util/__pycache__/deprecate_args.cpython-310.pyc,,
praw/util/__pycache__/snake.cpython-310.pyc,,
praw/util/__pycache__/token_manager.cpython-310.pyc,,
praw/util/cache.py,sha256=qwXmDoA4mb1as3REjXtPyt65Gq6895Z-zSg3CwurCL0,1750
praw/util/deprecate_args.py,sha256=9gl9gVTfc90mLHlNeeDQBIHYtmSaXC61C_BEuvFbTLA,1893
praw/util/snake.py,sha256=KuBE4Ye2MlwozKX1ut0RDn5lqLw2tBi85SSKHGOFnXc,621
praw/util/token_manager.py,sha256=W4jWiQiGktyxR7j9pcZYyrq8ZWAKLzLZtw4sir6A9ts,7182

View File

@@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: flit 3.9.0
Root-Is-Purelib: true
Tag: py3-none-any