├── .coveragerc ├── .gitattributes ├── .github ├── CONTRIBUTING.rst ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_issue.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── manual_tag_release.yml │ ├── pre-commit_autoupdate.yml │ ├── prepare_release.yml │ ├── pypi.yml │ ├── scorecard.yml │ ├── set_active_docs.yml │ ├── stale_action.yml │ └── tag_release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── asyncpraw ├── __init__.py ├── config.py ├── const.py ├── endpoints.py ├── exceptions.py ├── images │ └── PRAW logo.png ├── models │ ├── __init__.py │ ├── auth.py │ ├── base.py │ ├── comment_forest.py │ ├── front.py │ ├── helpers.py │ ├── inbox.py │ ├── list │ │ ├── __init__.py │ │ ├── base.py │ │ ├── draft.py │ │ ├── moderated.py │ │ ├── redditor.py │ │ └── trophy.py │ ├── listing │ │ ├── __init__.py │ │ ├── domain.py │ │ ├── generator.py │ │ ├── listing.py │ │ └── mixins │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── redditor.py │ │ │ ├── rising.py │ │ │ ├── submission.py │ │ │ └── subreddit.py │ ├── mod_action.py │ ├── mod_note.py │ ├── mod_notes.py │ ├── preferences.py │ ├── reddit │ │ ├── __init__.py │ │ ├── base.py │ │ ├── collections.py │ │ ├── comment.py │ │ ├── draft.py │ │ ├── emoji.py │ │ ├── inline_media.py │ │ ├── live.py │ │ ├── message.py │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ ├── editable.py │ │ │ ├── fullname.py │ │ │ ├── inboxable.py │ │ │ ├── inboxtoggleable.py │ │ │ ├── messageable.py │ │ │ ├── modnote.py │ │ │ ├── replyable.py │ │ │ ├── reportable.py │ │ │ ├── savable.py │ │ │ └── votable.py │ │ ├── modmail.py │ │ ├── more.py │ │ ├── multi.py │ │ ├── poll.py │ │ ├── redditor.py │ │ ├── removal_reasons.py │ │ ├── rules.py │ │ ├── submission.py │ │ ├── subreddit.py │ │ ├── user_subreddit.py │ │ ├── widgets.py │ │ └── wikipage.py │ ├── redditors.py │ ├── stylesheet.py │ ├── subreddits.py │ ├── trophy.py │ ├── user.py │ └── util.py ├── objector.py ├── praw.ini ├── reddit.py └── util │ ├── __init__.py │ ├── cache.py │ └── snake.py ├── docs ├── Makefile ├── code_overview │ ├── asyncpraw_models.rst │ ├── exceptions.rst │ ├── models │ │ ├── comment.rst │ │ ├── draft.rst │ │ ├── livethread.rst │ │ ├── liveupdate.rst │ │ ├── message.rst │ │ ├── modmailconversation.rst │ │ ├── more.rst │ │ ├── multireddit.rst │ │ ├── redditor.rst │ │ ├── submission.rst │ │ ├── subreddit.rst │ │ └── wikipage.rst │ ├── other.rst │ ├── other │ │ ├── asyncprawbase.rst │ │ ├── auth.rst │ │ ├── base_mod_notes.rst │ │ ├── baselist.rst │ │ ├── button.rst │ │ ├── buttonwidget.rst │ │ ├── calendar.rst │ │ ├── calendarconfiguration.rst │ │ ├── collection.rst │ │ ├── collectionmoderation.rst │ │ ├── commentforest.rst │ │ ├── commenthelper.rst │ │ ├── commentmoderation.rst │ │ ├── communitylist.rst │ │ ├── config.rst │ │ ├── contributorrelationship.rst │ │ ├── customwidget.rst │ │ ├── domainlisting.rst │ │ ├── draftlist.rst │ │ ├── emoji.rst │ │ ├── fullnamemixin.rst │ │ ├── hover.rst │ │ ├── idcard.rst │ │ ├── image.rst │ │ ├── imagedata.rst │ │ ├── imagewidget.rst │ │ ├── inboxablemixin.rst │ │ ├── inlinegif.rst │ │ ├── inlineimage.rst │ │ ├── inlinemedia.rst │ │ ├── inlinevideo.rst │ │ ├── listinggenerator.rst │ │ ├── livecontributorrelationship.rst │ │ ├── livethreadcontribution.rst │ │ ├── livethreadstream.rst │ │ ├── liveupdatecontribution.rst │ │ ├── menu.rst │ │ ├── menulink.rst │ │ ├── mod_action.rst │ │ ├── mod_note.rst │ │ ├── mod_note_mixin.rst │ │ ├── moderatedlist.rst │ │ ├── moderatorrelationship.rst │ │ ├── moderatorswidget.rst │ │ ├── modmail.rst │ │ ├── modmailmessage.rst │ │ ├── partialredditor.rst │ │ ├── polldata.rst │ │ ├── polloption.rst │ │ ├── postflairwidget.rst │ │ ├── preferences.rst │ │ ├── reddit_mod_notes.rst │ │ ├── redditbase.rst │ │ ├── redditor_mod_notes.rst │ │ ├── redditorlist.rst │ │ ├── redditorstream.rst │ │ ├── removalreason.rst │ │ ├── rule.rst │ │ ├── rulemoderation.rst │ │ ├── ruleswidget.rst │ │ ├── styles.rst │ │ ├── stylesheet.rst │ │ ├── sublisting.rst │ │ ├── submenu.rst │ │ ├── submissionflair.rst │ │ ├── submissionmoderation.rst │ │ ├── subreddit_mod_notes.rst │ │ ├── subredditcollections.rst │ │ ├── subredditcollectionsmoderation.rst │ │ ├── subredditemoji.rst │ │ ├── subredditfilters.rst │ │ ├── subredditflair.rst │ │ ├── subredditflairtemplates.rst │ │ ├── subredditlinkflairtemplates.rst │ │ ├── subredditlistingmixin.rst │ │ ├── subredditmessage.rst │ │ ├── subredditmoderation.rst │ │ ├── subredditmoderationstream.rst │ │ ├── subredditquarantine.rst │ │ ├── subredditredditorflairtemplates.rst │ │ ├── subredditrelationship.rst │ │ ├── subredditremovalreasons.rst │ │ ├── subredditrules.rst │ │ ├── subredditrulesmoderation.rst │ │ ├── subredditstream.rst │ │ ├── subredditstylesheet.rst │ │ ├── subredditwidgets.rst │ │ ├── subredditwidgetsmoderation.rst │ │ ├── subredditwiki.rst │ │ ├── textarea.rst │ │ ├── thingmoderationmixin.rst │ │ ├── trophy.rst │ │ ├── usersubreddit.rst │ │ ├── usersubredditmoderation.rst │ │ ├── util.rst │ │ ├── widget.rst │ │ ├── widgetmoderation.rst │ │ └── wikipagemoderation.rst │ ├── reddit │ │ ├── drafts.rst │ │ ├── front.rst │ │ ├── inbox.rst │ │ ├── live.rst │ │ ├── multireddit.rst │ │ ├── redditors.rst │ │ ├── subreddit.rst │ │ ├── subreddits.rst │ │ └── user.rst │ └── reddit_instance.rst ├── conf.py ├── docutils.conf ├── examples │ ├── lmgtfy_bot.py │ └── obtain_refresh_token.py ├── generate_local_docs.bat ├── genindex.rst ├── getting_started │ ├── authentication.rst │ ├── authentication_flow_table.txt │ ├── configuration.rst │ ├── configuration │ │ ├── environment_variables.rst │ │ ├── options.rst │ │ ├── prawini.rst │ │ └── reddit_initialization.rst │ ├── faq.rst │ ├── installation.rst │ ├── logging.rst │ ├── multiple_instances.rst │ ├── quick_start.rst │ └── ratelimits.rst ├── index.rst ├── logo │ ├── png │ │ ├── Old PRAW logo.png │ │ ├── PRAW banner.png │ │ └── PRAW logo.png │ └── svg │ │ ├── PRAW banner.svg │ │ └── PRAW logo.svg ├── make.bat ├── package_info │ ├── asyncpraw_migration.rst │ ├── change_log.rst │ ├── contributing.rst │ ├── glossary.rst │ └── references.rst ├── redirect_log.txt ├── tutorials │ ├── comments.rst │ ├── refresh_token.rst │ └── reply_bot.rst └── typical_attributes.rst ├── praw_license.txt ├── pre_push.py ├── profile_tests.sh ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── integration │ ├── __init__.py │ ├── cassettes │ │ ├── TestAuthImplicit.test_implicit__with_invalid_token.json │ │ ├── TestAuthImplicit.test_scopes__read_only.json │ │ ├── TestAuthScript.test_scopes.json │ │ ├── TestAuthWeb.test_authorize.json │ │ ├── TestAuthWeb.test_scopes__read_only.json │ │ ├── TestButtonWidget.test_create_and_update_and_delete.json │ │ ├── TestCalendar.test_create_and_update_and_delete.json │ │ ├── TestCollection.test_bad_fetch.json │ │ ├── TestCollection.test_follow.json │ │ ├── TestCollection.test_init.json │ │ ├── TestCollection.test_iter.json │ │ ├── TestCollection.test_subreddit.json │ │ ├── TestCollection.test_unfollow.json │ │ ├── TestCollectionModeration.test_add_post.json │ │ ├── TestCollectionModeration.test_delete.json │ │ ├── TestCollectionModeration.test_remove_post.json │ │ ├── TestCollectionModeration.test_reorder.json │ │ ├── TestCollectionModeration.test_update_description.json │ │ ├── TestCollectionModeration.test_update_display_layout__empty_string.json │ │ ├── TestCollectionModeration.test_update_display_layout__gallery.json │ │ ├── TestCollectionModeration.test_update_display_layout__invalid_layout.json │ │ ├── TestCollectionModeration.test_update_display_layout__lowercase.json │ │ ├── TestCollectionModeration.test_update_display_layout__none.json │ │ ├── TestCollectionModeration.test_update_display_layout__timeline.json │ │ ├── TestCollectionModeration.test_update_title.json │ │ ├── TestComment.test_attributes.json │ │ ├── TestComment.test_block.json │ │ ├── TestComment.test_clear_vote.json │ │ ├── TestComment.test_delete.json │ │ ├── TestComment.test_disable_inbox_replies.json │ │ ├── TestComment.test_downvote.json │ │ ├── TestComment.test_edit.json │ │ ├── TestComment.test_enable_inbox_replies.json │ │ ├── TestComment.test_invalid.json │ │ ├── TestComment.test_mark_read.json │ │ ├── TestComment.test_mark_unread.json │ │ ├── TestComment.test_notes.json │ │ ├── TestComment.test_parent__chain.json │ │ ├── TestComment.test_parent__comment.json │ │ ├── TestComment.test_parent__comment_from_forest.json │ │ ├── TestComment.test_parent__from_replies.json │ │ ├── TestComment.test_parent__submission.json │ │ ├── TestComment.test_refresh.json │ │ ├── TestComment.test_refresh__deleted_comment.json │ │ ├── TestComment.test_refresh__raises_exception.json │ │ ├── TestComment.test_refresh__removed_comment.json │ │ ├── TestComment.test_refresh__twice.json │ │ ├── TestComment.test_refresh__with_reply_sort_and_limit.json │ │ ├── TestComment.test_reply.json │ │ ├── TestComment.test_report.json │ │ ├── TestComment.test_resolve_from_share_url.json │ │ ├── TestComment.test_resolve_from_share_url__invalid_url.json │ │ ├── TestComment.test_save.json │ │ ├── TestComment.test_unsave.json │ │ ├── TestComment.test_upvote.json │ │ ├── TestCommentForest.test_comment_forest_refresh_error.json │ │ ├── TestCommentForest.test_replace__all.json │ │ ├── TestCommentForest.test_replace__all_large.json │ │ ├── TestCommentForest.test_replace__all_with_comment_limit.json │ │ ├── TestCommentForest.test_replace__all_with_comment_sort.json │ │ ├── TestCommentForest.test_replace__on_comment_from_submission.json │ │ ├── TestCommentForest.test_replace__on_direct_comment.json │ │ ├── TestCommentForest.test_replace__skip_all.json │ │ ├── TestCommentForest.test_replace__skip_at_limit.json │ │ ├── TestCommentModeration.test_add_removal_reason.json │ │ ├── TestCommentModeration.test_add_removal_reason_without_id.json │ │ ├── TestCommentModeration.test_add_removal_reason_without_id_or_note.json │ │ ├── TestCommentModeration.test_approve.json │ │ ├── TestCommentModeration.test_distinguish.json │ │ ├── TestCommentModeration.test_distinguish__sticky.json │ │ ├── TestCommentModeration.test_ignore_reports.json │ │ ├── TestCommentModeration.test_lock.json │ │ ├── TestCommentModeration.test_remove.json │ │ ├── TestCommentModeration.test_remove_with_reason_id.json │ │ ├── TestCommentModeration.test_send_removal_message.json │ │ ├── TestCommentModeration.test_send_removal_message__error.json │ │ ├── TestCommentModeration.test_show.json │ │ ├── TestCommentModeration.test_undistinguish.json │ │ ├── TestCommentModeration.test_unignore_reports.json │ │ ├── TestCommentModeration.test_unlock.json │ │ ├── TestCommunityList.test_create_and_update_and_delete.json │ │ ├── TestCustomWidget.test_create_and_update_and_delete.json │ │ ├── TestDomainListing.test_controversial.json │ │ ├── TestDomainListing.test_hot.json │ │ ├── TestDomainListing.test_new.json │ │ ├── TestDomainListing.test_rising.json │ │ ├── TestDomainListing.test_top.json │ │ ├── TestDraft.test_create.json │ │ ├── TestDraft.test_delete.json │ │ ├── TestDraft.test_fetch.json │ │ ├── TestDraft.test_list.json │ │ ├── TestDraft.test_submit.json │ │ ├── TestDraft.test_submit__different_subreddit.json │ │ ├── TestDraft.test_submit__different_title.json │ │ ├── TestDraft.test_update.json │ │ ├── TestEmoji.test__fetch.json │ │ ├── TestEmoji.test__fetch__invalid_emoji.json │ │ ├── TestEmoji.test_delete.json │ │ ├── TestEmoji.test_update.json │ │ ├── TestEmoji.test_update__with_preexisting_values.json │ │ ├── TestFront.test_best.json │ │ ├── TestFront.test_controversial.json │ │ ├── TestFront.test_hot.json │ │ ├── TestFront.test_new.json │ │ ├── TestFront.test_top.json │ │ ├── TestIDCard.test_update.json │ │ ├── TestImageWidget.test_create_and_update_and_delete.json │ │ ├── TestInbox.test_all.json │ │ ├── TestInbox.test_all__with_limit.json │ │ ├── TestInbox.test_comment_replies.json │ │ ├── TestInbox.test_comment_reply__refresh.json │ │ ├── TestInbox.test_mark_all_read.json │ │ ├── TestInbox.test_mark_read.json │ │ ├── TestInbox.test_mark_unread.json │ │ ├── TestInbox.test_mention__refresh.json │ │ ├── TestInbox.test_mentions.json │ │ ├── TestInbox.test_message.json │ │ ├── TestInbox.test_message__unauthorized.json │ │ ├── TestInbox.test_message_collapse.json │ │ ├── TestInbox.test_message_uncollapse.json │ │ ├── TestInbox.test_messages.json │ │ ├── TestInbox.test_sent.json │ │ ├── TestInbox.test_stream.json │ │ ├── TestInbox.test_submission_replies.json │ │ ├── TestInbox.test_unread.json │ │ ├── TestListingGenerator.test_exhaust_items.json │ │ ├── TestListingGenerator.test_exhaust_items_with_before.json │ │ ├── TestListingGenerator.test_no_items.json │ │ ├── TestLiveContributorRelationship.test_accept_invite.json │ │ ├── TestLiveContributorRelationship.test_invite__already_invited.json │ │ ├── TestLiveContributorRelationship.test_invite__empty_list.json │ │ ├── TestLiveContributorRelationship.test_invite__limited.json │ │ ├── TestLiveContributorRelationship.test_invite__none.json │ │ ├── TestLiveContributorRelationship.test_invite__redditor.json │ │ ├── TestLiveContributorRelationship.test_leave.json │ │ ├── TestLiveContributorRelationship.test_remove__fullname.json │ │ ├── TestLiveContributorRelationship.test_remove__redditor.json │ │ ├── TestLiveContributorRelationship.test_remove_invite__fullname.json │ │ ├── TestLiveContributorRelationship.test_remove_invite__redditor.json │ │ ├── TestLiveContributorRelationship.test_update__empty_list.json │ │ ├── TestLiveContributorRelationship.test_update__limited.json │ │ ├── TestLiveContributorRelationship.test_update__none.json │ │ ├── TestLiveContributorRelationship.test_update_invite__empty_list.json │ │ ├── TestLiveContributorRelationship.test_update_invite__limited.json │ │ ├── TestLiveContributorRelationship.test_update_invite__none.json │ │ ├── TestLiveThread.test_contributor.json │ │ ├── TestLiveThread.test_contributor__with_manage_permission.json │ │ ├── TestLiveThread.test_discussions.json │ │ ├── TestLiveThread.test_init.json │ │ ├── TestLiveThread.test_report.json │ │ ├── TestLiveThread.test_updates.json │ │ ├── TestLiveThreadContribution.test_add.json │ │ ├── TestLiveThreadContribution.test_close.json │ │ ├── TestLiveThreadContribution.test_update__full_settings.json │ │ ├── TestLiveThreadContribution.test_update__other_settings.json │ │ ├── TestLiveThreadContribution.test_update__partial_settings.json │ │ ├── TestLiveThreadStream.test_updates.json │ │ ├── TestLiveUpdate.test_attributes.json │ │ ├── TestLiveUpdateContribution.test_remove.json │ │ ├── TestLiveUpdateContribution.test_strike.json │ │ ├── TestMenu.test_create_and_update_and_delete.json │ │ ├── TestMessage.test_attributes.json │ │ ├── TestMessage.test_block.json │ │ ├── TestMessage.test_delete.json │ │ ├── TestMessage.test_mark_read.json │ │ ├── TestMessage.test_mark_unread.json │ │ ├── TestMessage.test_message_collapse.json │ │ ├── TestMessage.test_message_uncollapse.json │ │ ├── TestMessage.test_parent.json │ │ ├── TestMessage.test_parent__from_inbox_listing.json │ │ ├── TestMessage.test_reply.json │ │ ├── TestModNotes.test_create_note__submission.json │ │ ├── TestModNotes.test_create_note__thing_fullname.json │ │ ├── TestModNotes.test_delete_note.json │ │ ├── TestModNotes.test_delete_note__all_notes.json │ │ ├── TestModeratorsWidget.test_update.json │ │ ├── TestModmailConversation.test_archive.json │ │ ├── TestModmailConversation.test_highlight.json │ │ ├── TestModmailConversation.test_mute.json │ │ ├── TestModmailConversation.test_mute_duration.json │ │ ├── TestModmailConversation.test_read.json │ │ ├── TestModmailConversation.test_read__other_conversations.json │ │ ├── TestModmailConversation.test_reply.json │ │ ├── TestModmailConversation.test_reply__internal.json │ │ ├── TestModmailConversation.test_unarchive.json │ │ ├── TestModmailConversation.test_unhighlight.json │ │ ├── TestModmailConversation.test_unmute.json │ │ ├── TestModmailConversation.test_unread.json │ │ ├── TestMore.test_comments.json │ │ ├── TestMore.test_comments__continue_thread_type.json │ │ ├── TestMultireddit.test_add.json │ │ ├── TestMultireddit.test_copy.json │ │ ├── TestMultireddit.test_copy__with_display_name.json │ │ ├── TestMultireddit.test_create.json │ │ ├── TestMultireddit.test_delete.json │ │ ├── TestMultireddit.test_remove.json │ │ ├── TestMultireddit.test_subreddits.json │ │ ├── TestMultireddit.test_update.json │ │ ├── TestMultiredditListings.test_comments.json │ │ ├── TestMultiredditListings.test_controversial.json │ │ ├── TestMultiredditListings.test_hot.json │ │ ├── TestMultiredditListings.test_new.json │ │ ├── TestMultiredditListings.test_new__self_multi.json │ │ ├── TestMultiredditListings.test_rising.json │ │ ├── TestMultiredditListings.test_top.json │ │ ├── TestMultiredditStreams.test_comments.json │ │ ├── TestMultiredditStreams.test_comments__with_pause.json │ │ ├── TestMultiredditStreams.test_submissions.json │ │ ├── TestObjector.test_raise_api_exception.json │ │ ├── TestPollData.test_get_attrs.json │ │ ├── TestPollData.test_get_user_selection.json │ │ ├── TestPostFlairWidget.test_create_and_update_and_delete.json │ │ ├── TestPreferences.test_update.json │ │ ├── TestPreferences.test_view.json │ │ ├── TestReddit.test_bad_request_without_json_text_html_response.json │ │ ├── TestReddit.test_bad_request_without_json_text_plain_response.json │ │ ├── TestReddit.test_bare_badrequest.json │ │ ├── TestReddit.test_info.json │ │ ├── TestReddit.test_info_sr_names.json │ │ ├── TestReddit.test_info_url.json │ │ ├── TestReddit.test_live_call.json │ │ ├── TestReddit.test_live_create.json │ │ ├── TestReddit.test_live_info.json │ │ ├── TestReddit.test_live_info__contain_invalid_id.json │ │ ├── TestReddit.test_live_now__no_featured.json │ │ ├── TestReddit.test_notes__call__.json │ │ ├── TestReddit.test_notes__things.json │ │ ├── TestReddit.test_username_available__available.json │ │ ├── TestReddit.test_username_available__unavailable.json │ │ ├── TestReddit.test_username_available_exception.json │ │ ├── TestRedditor.test_block.json │ │ ├── TestRedditor.test_friend.json │ │ ├── TestRedditor.test_friend__with_note__no_gold.json │ │ ├── TestRedditor.test_friend_info.json │ │ ├── TestRedditor.test_fullname_init.json │ │ ├── TestRedditor.test_message.json │ │ ├── TestRedditor.test_message_from_subreddit.json │ │ ├── TestRedditor.test_moderated.json │ │ ├── TestRedditor.test_multireddits.json │ │ ├── TestRedditor.test_notes__subreddits.json │ │ ├── TestRedditor.test_stream__comments.json │ │ ├── TestRedditor.test_stream__submissions.json │ │ ├── TestRedditor.test_trophies.json │ │ ├── TestRedditor.test_trophies__user_not_exist.json │ │ ├── TestRedditor.test_unblock.json │ │ ├── TestRedditor.test_unfriend.json │ │ ├── TestRedditorListings.test_comments__controversial.json │ │ ├── TestRedditorListings.test_comments__hot.json │ │ ├── TestRedditorListings.test_comments__new.json │ │ ├── TestRedditorListings.test_comments__top.json │ │ ├── TestRedditorListings.test_controversial.json │ │ ├── TestRedditorListings.test_downvoted.json │ │ ├── TestRedditorListings.test_downvoted__in_read_only_mode.json │ │ ├── TestRedditorListings.test_downvoted__other_user.json │ │ ├── TestRedditorListings.test_hidden.json │ │ ├── TestRedditorListings.test_hidden__in_read_only_mode.json │ │ ├── TestRedditorListings.test_hidden__other_user.json │ │ ├── TestRedditorListings.test_hot.json │ │ ├── TestRedditorListings.test_new.json │ │ ├── TestRedditorListings.test_saved.json │ │ ├── TestRedditorListings.test_saved__in_read_only_mode.json │ │ ├── TestRedditorListings.test_saved__other_user.json │ │ ├── TestRedditorListings.test_submissions__controversial.json │ │ ├── TestRedditorListings.test_submissions__hot.json │ │ ├── TestRedditorListings.test_submissions__new.json │ │ ├── TestRedditorListings.test_submissions__top.json │ │ ├── TestRedditorListings.test_top.json │ │ ├── TestRedditorListings.test_trust_and_distrust.json │ │ ├── TestRedditorListings.test_trust_blocked_user.json │ │ ├── TestRedditorListings.test_upvoted.json │ │ ├── TestRedditorListings.test_upvoted__in_read_only_mode.json │ │ ├── TestRedditorListings.test_upvoted__other_user.json │ │ ├── TestRedditors.test_new.json │ │ ├── TestRedditors.test_partial_redditors.json │ │ ├── TestRedditors.test_partial_redditors__not_found.json │ │ ├── TestRedditors.test_popular.json │ │ ├── TestRedditors.test_search.json │ │ ├── TestRedditors.test_stream.json │ │ ├── TestRemovalReason.test__fetch.json │ │ ├── TestRemovalReason.test__fetch__invalid_reason.json │ │ ├── TestRemovalReason.test_delete.json │ │ ├── TestRemovalReason.test_update.json │ │ ├── TestRemovalReason.test_update_empty.json │ │ ├── TestRule.test_add_rule.json │ │ ├── TestRule.test_add_rule_without_violation_reason.json │ │ ├── TestRule.test_aiter_rules.json │ │ ├── TestRule.test_delete_rule.json │ │ ├── TestRule.test_reorder_rules.json │ │ ├── TestRule.test_reorder_rules_double.json │ │ ├── TestRule.test_reorder_rules_empty.json │ │ ├── TestRule.test_reorder_rules_no_reorder.json │ │ ├── TestRule.test_reorder_rules_omit.json │ │ ├── TestRule.test_update_rule.json │ │ ├── TestRule.test_update_rule_no_params.json │ │ ├── TestRule.test_update_rule_short_name.json │ │ ├── TestRulesWidget.test_update.json │ │ ├── TestSubmission.test_clear_vote.json │ │ ├── TestSubmission.test_comments.json │ │ ├── TestSubmission.test_crosspost.json │ │ ├── TestSubmission.test_crosspost__custom_title.json │ │ ├── TestSubmission.test_crosspost__flair.json │ │ ├── TestSubmission.test_crosspost__nsfw.json │ │ ├── TestSubmission.test_crosspost__spoiler.json │ │ ├── TestSubmission.test_crosspost__subreddit_object.json │ │ ├── TestSubmission.test_delete.json │ │ ├── TestSubmission.test_disable_inbox_replies.json │ │ ├── TestSubmission.test_downvote.json │ │ ├── TestSubmission.test_duplicates.json │ │ ├── TestSubmission.test_edit.json │ │ ├── TestSubmission.test_edit__existing_and_new_inline_media.json │ │ ├── TestSubmission.test_edit__existing_inline_media.json │ │ ├── TestSubmission.test_edit__experimental.json │ │ ├── TestSubmission.test_edit__new_inline_media.json │ │ ├── TestSubmission.test_edit_invalid.json │ │ ├── TestSubmission.test_enable_inbox_replies.json │ │ ├── TestSubmission.test_hide.json │ │ ├── TestSubmission.test_hide_multiple.json │ │ ├── TestSubmission.test_hide_multiple_in_batches.json │ │ ├── TestSubmission.test_invalid_attribute.json │ │ ├── TestSubmission.test_mark_visited.json │ │ ├── TestSubmission.test_reply.json │ │ ├── TestSubmission.test_report.json │ │ ├── TestSubmission.test_resolve_from_share_url.json │ │ ├── TestSubmission.test_resolve_from_share_url__invalid_url.json │ │ ├── TestSubmission.test_save.json │ │ ├── TestSubmission.test_unhide.json │ │ ├── TestSubmission.test_unhide_multiple.json │ │ ├── TestSubmission.test_unhide_multiple_in_batches.json │ │ ├── TestSubmission.test_unsave.json │ │ ├── TestSubmission.test_upvote.json │ │ ├── TestSubmissionFlair.test_choices.json │ │ ├── TestSubmissionFlair.test_select.json │ │ ├── TestSubmissionModeration.test_add_removal_reason.json │ │ ├── TestSubmissionModeration.test_add_removal_reason_without_id.json │ │ ├── TestSubmissionModeration.test_add_removal_reason_without_id_or_note.json │ │ ├── TestSubmissionModeration.test_approve.json │ │ ├── TestSubmissionModeration.test_contest_mode.json │ │ ├── TestSubmissionModeration.test_contest_mode__disable.json │ │ ├── TestSubmissionModeration.test_distinguish.json │ │ ├── TestSubmissionModeration.test_flair.json │ │ ├── TestSubmissionModeration.test_flair_all.json │ │ ├── TestSubmissionModeration.test_flair_just_css_class.json │ │ ├── TestSubmissionModeration.test_flair_just_template_id.json │ │ ├── TestSubmissionModeration.test_flair_template_id.json │ │ ├── TestSubmissionModeration.test_flair_text_and_css_class.json │ │ ├── TestSubmissionModeration.test_flair_text_only.json │ │ ├── TestSubmissionModeration.test_ignore_reports.json │ │ ├── TestSubmissionModeration.test_lock.json │ │ ├── TestSubmissionModeration.test_notes.json │ │ ├── TestSubmissionModeration.test_nsfw.json │ │ ├── TestSubmissionModeration.test_remove.json │ │ ├── TestSubmissionModeration.test_remove_with_reason_id.json │ │ ├── TestSubmissionModeration.test_send_removal_message.json │ │ ├── TestSubmissionModeration.test_set_original_content.json │ │ ├── TestSubmissionModeration.test_sfw.json │ │ ├── TestSubmissionModeration.test_spoiler.json │ │ ├── TestSubmissionModeration.test_sticky.json │ │ ├── TestSubmissionModeration.test_sticky__ignore_conflicts.json │ │ ├── TestSubmissionModeration.test_sticky__remove.json │ │ ├── TestSubmissionModeration.test_sticky__top.json │ │ ├── TestSubmissionModeration.test_suggested_sort.json │ │ ├── TestSubmissionModeration.test_suggested_sort__clear.json │ │ ├── TestSubmissionModeration.test_undistinguish.json │ │ ├── TestSubmissionModeration.test_unignore_reports.json │ │ ├── TestSubmissionModeration.test_unlock.json │ │ ├── TestSubmissionModeration.test_unset_original_content.json │ │ ├── TestSubmissionModeration.test_unspoiler.json │ │ ├── TestSubmissionModeration.test_update_crowd_control_level.json │ │ ├── TestSubreddit.test_create.json │ │ ├── TestSubreddit.test_create__exists.json │ │ ├── TestSubreddit.test_create__invalid_parameter.json │ │ ├── TestSubreddit.test_create__missing_parameter.json │ │ ├── TestSubreddit.test_message.json │ │ ├── TestSubreddit.test_post_requirements.json │ │ ├── TestSubreddit.test_search.json │ │ ├── TestSubreddit.test_sticky.json │ │ ├── TestSubreddit.test_sticky__not_set.json │ │ ├── TestSubreddit.test_submit__flair.json │ │ ├── TestSubreddit.test_submit__nsfw.json │ │ ├── TestSubreddit.test_submit__selftext.json │ │ ├── TestSubreddit.test_submit__selftext_blank.json │ │ ├── TestSubreddit.test_submit__selftext_inline_media.json │ │ ├── TestSubreddit.test_submit__spoiler.json │ │ ├── TestSubreddit.test_submit__url.json │ │ ├── TestSubreddit.test_submit__url_selftext.json │ │ ├── TestSubreddit.test_submit__verify_invalid.json │ │ ├── TestSubreddit.test_submit_gallery.json │ │ ├── TestSubreddit.test_submit_gallery__disabled.json │ │ ├── TestSubreddit.test_submit_gallery__flair.json │ │ ├── TestSubreddit.test_submit_gallery__selftext.json │ │ ├── TestSubreddit.test_submit_image.json │ │ ├── TestSubreddit.test_submit_image__flair.json │ │ ├── TestSubreddit.test_submit_image__large.json │ │ ├── TestSubreddit.test_submit_image__selftext.json │ │ ├── TestSubreddit.test_submit_image__without_websockets.json │ │ ├── TestSubreddit.test_submit_image_chat.json │ │ ├── TestSubreddit.test_submit_image_verify_invalid.json │ │ ├── TestSubreddit.test_submit_live_chat.json │ │ ├── TestSubreddit.test_submit_poll.json │ │ ├── TestSubreddit.test_submit_poll__flair.json │ │ ├── TestSubreddit.test_submit_poll__live_chat.json │ │ ├── TestSubreddit.test_submit_video.json │ │ ├── TestSubreddit.test_submit_video__flair.json │ │ ├── TestSubreddit.test_submit_video__selftext.json │ │ ├── TestSubreddit.test_submit_video__thumbnail.json │ │ ├── TestSubreddit.test_submit_video__videogif.json │ │ ├── TestSubreddit.test_submit_video__without_websockets.json │ │ ├── TestSubreddit.test_submit_video_chat.json │ │ ├── TestSubreddit.test_submit_video_verify_invalid.json │ │ ├── TestSubreddit.test_subscribe.json │ │ ├── TestSubreddit.test_subscribe__multiple.json │ │ ├── TestSubreddit.test_traffic.json │ │ ├── TestSubreddit.test_traffic__not_public.json │ │ ├── TestSubreddit.test_unsubscribe.json │ │ ├── TestSubreddit.test_unsubscribe__multiple.json │ │ ├── TestSubredditCollections.test_call.json │ │ ├── TestSubredditCollections.test_iter.json │ │ ├── TestSubredditCollectionsModeration.test_create.json │ │ ├── TestSubredditCollectionsModeration.test_create__empty_layout.json │ │ ├── TestSubredditCollectionsModeration.test_create__gallery_layout.json │ │ ├── TestSubredditCollectionsModeration.test_create__invalid_layout.json │ │ ├── TestSubredditCollectionsModeration.test_create__lowercase_layout.json │ │ ├── TestSubredditCollectionsModeration.test_create__none_layout.json │ │ ├── TestSubredditCollectionsModeration.test_create__timeline_layout.json │ │ ├── TestSubredditEmoji.test__iter.json │ │ ├── TestSubredditEmoji.test_add.json │ │ ├── TestSubredditEmoji.test_add_with_perms.json │ │ ├── TestSubredditFilters.test__aiter__all.json │ │ ├── TestSubredditFilters.test__aiter__mod.json │ │ ├── TestSubredditFilters.test_add.json │ │ ├── TestSubredditFilters.test_remove.json │ │ ├── TestSubredditFlair.test__call.json │ │ ├── TestSubredditFlair.test__call__user_filter.json │ │ ├── TestSubredditFlair.test_configure.json │ │ ├── TestSubredditFlair.test_configure__defaults.json │ │ ├── TestSubredditFlair.test_delete.json │ │ ├── TestSubredditFlair.test_delete_all.json │ │ ├── TestSubredditFlair.test_set__flair_id.json │ │ ├── TestSubredditFlair.test_set__flair_id_default_text.json │ │ ├── TestSubredditFlair.test_set__redditor.json │ │ ├── TestSubredditFlair.test_set__redditor_css_only.json │ │ ├── TestSubredditFlair.test_set__redditor_string.json │ │ ├── TestSubredditFlair.test_update.json │ │ ├── TestSubredditFlair.test_update__comma_in_text.json │ │ ├── TestSubredditFlair.test_update_quotes.json │ │ ├── TestSubredditFlairTemplates.test__aiter.json │ │ ├── TestSubredditFlairTemplates.test_add.json │ │ ├── TestSubredditFlairTemplates.test_clear.json │ │ ├── TestSubredditFlairTemplates.test_delete.json │ │ ├── TestSubredditFlairTemplates.test_reorder.json │ │ ├── TestSubredditFlairTemplates.test_update.json │ │ ├── TestSubredditFlairTemplates.test_update_false.json │ │ ├── TestSubredditFlairTemplates.test_update_fetch.json │ │ ├── TestSubredditFlairTemplates.test_update_fetch_no_css_class.json │ │ ├── TestSubredditFlairTemplates.test_update_fetch_no_text.json │ │ ├── TestSubredditFlairTemplates.test_update_fetch_no_text_or_css_class.json │ │ ├── TestSubredditFlairTemplates.test_update_fetch_only.json │ │ ├── TestSubredditFlairTemplates.test_update_invalid.json │ │ ├── TestSubredditLinkFlairTemplates.test__aiter.json │ │ ├── TestSubredditLinkFlairTemplates.test_add.json │ │ ├── TestSubredditLinkFlairTemplates.test_clear.json │ │ ├── TestSubredditLinkFlairTemplates.test_reorder.json │ │ ├── TestSubredditLinkFlairTemplates.test_user_selectable.json │ │ ├── TestSubredditListings.test_comments.json │ │ ├── TestSubredditListings.test_controversial.json │ │ ├── TestSubredditListings.test_hot.json │ │ ├── TestSubredditListings.test_new.json │ │ ├── TestSubredditListings.test_rising.json │ │ ├── TestSubredditListings.test_top.json │ │ ├── TestSubredditModeration.test_accept_invite__no_invite.json │ │ ├── TestSubredditModeration.test_edited.json │ │ ├── TestSubredditModeration.test_edited__only_comments.json │ │ ├── TestSubredditModeration.test_edited__only_submissions.json │ │ ├── TestSubredditModeration.test_log.json │ │ ├── TestSubredditModeration.test_log__filters.json │ │ ├── TestSubredditModeration.test_modqueue.json │ │ ├── TestSubredditModeration.test_modqueue__only_comments.json │ │ ├── TestSubredditModeration.test_modqueue__only_submissions.json │ │ ├── TestSubredditModeration.test_notes.json │ │ ├── TestSubredditModeration.test_notes_iterate.json │ │ ├── TestSubredditModeration.test_reports.json │ │ ├── TestSubredditModeration.test_reports__only_comments.json │ │ ├── TestSubredditModeration.test_reports__only_submissions.json │ │ ├── TestSubredditModeration.test_spam.json │ │ ├── TestSubredditModeration.test_spam__only_comments.json │ │ ├── TestSubredditModeration.test_spam__only_submissions.json │ │ ├── TestSubredditModeration.test_unmoderated.json │ │ ├── TestSubredditModeration.test_update.json │ │ ├── TestSubredditModerationStreams.test_edited.json │ │ ├── TestSubredditModerationStreams.test_log.json │ │ ├── TestSubredditModerationStreams.test_modmail_conversations.json │ │ ├── TestSubredditModerationStreams.test_modqueue.json │ │ ├── TestSubredditModerationStreams.test_reports.json │ │ ├── TestSubredditModerationStreams.test_spam.json │ │ ├── TestSubredditModerationStreams.test_unmoderated.json │ │ ├── TestSubredditModmail.test_bulk_read.json │ │ ├── TestSubredditModmail.test_call.json │ │ ├── TestSubredditModmail.test_call__internal.json │ │ ├── TestSubredditModmail.test_call__mark_read.json │ │ ├── TestSubredditModmail.test_conversations.json │ │ ├── TestSubredditModmail.test_conversations__other_subreddits.json │ │ ├── TestSubredditModmail.test_conversations__params.json │ │ ├── TestSubredditModmail.test_create.json │ │ ├── TestSubredditModmail.test_subreddits.json │ │ ├── TestSubredditModmail.test_unread_count.json │ │ ├── TestSubredditQuarantine.test_opt_in.json │ │ ├── TestSubredditQuarantine.test_opt_out.json │ │ ├── TestSubredditRelationships.test_banned.json │ │ ├── TestSubredditRelationships.test_banned__user_filter.json │ │ ├── TestSubredditRelationships.test_contributor.json │ │ ├── TestSubredditRelationships.test_contributor__user_filter.json │ │ ├── TestSubredditRelationships.test_contributor_leave.json │ │ ├── TestSubredditRelationships.test_moderator.json │ │ ├── TestSubredditRelationships.test_moderator__limited_permissions.json │ │ ├── TestSubredditRelationships.test_moderator__user_filter.json │ │ ├── TestSubredditRelationships.test_moderator_aiter.json │ │ ├── TestSubredditRelationships.test_moderator_invite__invalid_perm.json │ │ ├── TestSubredditRelationships.test_moderator_invite__no_perms.json │ │ ├── TestSubredditRelationships.test_moderator_invited_moderators.json │ │ ├── TestSubredditRelationships.test_moderator_leave.json │ │ ├── TestSubredditRelationships.test_moderator_remove_invite.json │ │ ├── TestSubredditRelationships.test_moderator_update.json │ │ ├── TestSubredditRelationships.test_moderator_update_invite.json │ │ ├── TestSubredditRelationships.test_muted.json │ │ ├── TestSubredditRelationships.test_wiki_banned.json │ │ ├── TestSubredditRelationships.test_wiki_contributor.json │ │ ├── TestSubredditRemovalReasons.test__aiter.json │ │ ├── TestSubredditRemovalReasons.test_add.json │ │ ├── TestSubredditStreams.test_comments.json │ │ ├── TestSubredditStreams.test_comments__with_continue_after_id.json │ │ ├── TestSubredditStreams.test_comments__with_pause.json │ │ ├── TestSubredditStreams.test_comments__with_skip_existing.json │ │ ├── TestSubredditStreams.test_submissions.json │ │ ├── TestSubredditStylesheet.test_call.json │ │ ├── TestSubredditStylesheet.test_delete_banner.json │ │ ├── TestSubredditStylesheet.test_delete_banner_additional_image.json │ │ ├── TestSubredditStylesheet.test_delete_banner_hover_image.json │ │ ├── TestSubredditStylesheet.test_delete_header.json │ │ ├── TestSubredditStylesheet.test_delete_image.json │ │ ├── TestSubredditStylesheet.test_delete_mobile_banner.json │ │ ├── TestSubredditStylesheet.test_delete_mobile_header.json │ │ ├── TestSubredditStylesheet.test_delete_mobile_icon.json │ │ ├── TestSubredditStylesheet.test_update.json │ │ ├── TestSubredditStylesheet.test_update__with_reason.json │ │ ├── TestSubredditStylesheet.test_upload.json │ │ ├── TestSubredditStylesheet.test_upload__invalid.json │ │ ├── TestSubredditStylesheet.test_upload__invalid_ext.json │ │ ├── TestSubredditStylesheet.test_upload__others_invalid.json │ │ ├── TestSubredditStylesheet.test_upload__others_too_large.json │ │ ├── TestSubredditStylesheet.test_upload__too_large.json │ │ ├── TestSubredditStylesheet.test_upload_banner__jpg.json │ │ ├── TestSubredditStylesheet.test_upload_banner__png.json │ │ ├── TestSubredditStylesheet.test_upload_banner_additional_image__align.json │ │ ├── TestSubredditStylesheet.test_upload_banner_additional_image__jpg.json │ │ ├── TestSubredditStylesheet.test_upload_banner_additional_image__png.json │ │ ├── TestSubredditStylesheet.test_upload_banner_hover_image__jpg.json │ │ ├── TestSubredditStylesheet.test_upload_banner_hover_image__png.json │ │ ├── TestSubredditStylesheet.test_upload_header__jpg.json │ │ ├── TestSubredditStylesheet.test_upload_header__png.json │ │ ├── TestSubredditStylesheet.test_upload_mobile_banner__jpg.json │ │ ├── TestSubredditStylesheet.test_upload_mobile_banner__png.json │ │ ├── TestSubredditStylesheet.test_upload_mobile_header.json │ │ ├── TestSubredditStylesheet.test_upload_mobile_icon.json │ │ ├── TestSubredditWidgets.fetch_widgets.json │ │ ├── TestSubredditWidgets.test_refresh.json │ │ ├── TestSubredditWidgets.test_specials.json │ │ ├── TestSubredditWidgets.test_topbar.json │ │ ├── TestSubredditWidgetsModeration.test_reorder.json │ │ ├── TestSubredditWidgetsModeration.test_upload_image.json │ │ ├── TestSubredditWiki.test__aiter.json │ │ ├── TestSubredditWiki.test_create.json │ │ ├── TestSubredditWiki.test_revisions.json │ │ ├── TestSubreddits.test_default.json │ │ ├── TestSubreddits.test_new.json │ │ ├── TestSubreddits.test_popular.json │ │ ├── TestSubreddits.test_premium__with_premium.json │ │ ├── TestSubreddits.test_premium__without_premium.json │ │ ├── TestSubreddits.test_recommended.json │ │ ├── TestSubreddits.test_recommended__with_multiple.json │ │ ├── TestSubreddits.test_search.json │ │ ├── TestSubreddits.test_search_by_name.json │ │ ├── TestSubreddits.test_stream.json │ │ ├── TestTextArea.test_create_and_update_and_delete.json │ │ ├── TestTrophy.test_equality.json │ │ ├── TestUser.test_blocked.json │ │ ├── TestUser.test_blocked_fullname.json │ │ ├── TestUser.test_contributor_subreddits.json │ │ ├── TestUser.test_friend_exist.json │ │ ├── TestUser.test_friend_not_exist.json │ │ ├── TestUser.test_friends.json │ │ ├── TestUser.test_karma.json │ │ ├── TestUser.test_me.json │ │ ├── TestUser.test_me__bypass_cache.json │ │ ├── TestUser.test_moderator_subreddits.json │ │ ├── TestUser.test_multireddits.json │ │ ├── TestUser.test_pin.json │ │ ├── TestUser.test_pin__comment.json │ │ ├── TestUser.test_pin__deleted_submission.json │ │ ├── TestUser.test_pin__empty_slot.json │ │ ├── TestUser.test_pin__ignore_conflicts.json │ │ ├── TestUser.test_pin__invalid_num.json │ │ ├── TestUser.test_pin__num.json │ │ ├── TestUser.test_pin__remove.json │ │ ├── TestUser.test_pin__remove_num.json │ │ ├── TestUser.test_pin__removed_submission.json │ │ ├── TestUser.test_pin__replace_slot.json │ │ ├── TestUser.test_subreddits.json │ │ ├── TestUserSubredditModeration.test_accept_invite__no_invite.json │ │ ├── TestUserSubredditModeration.test_update.json │ │ ├── TestWikiPage.test_content_md.json │ │ ├── TestWikiPage.test_content_md__invalid_name.json │ │ ├── TestWikiPage.test_discussions.json │ │ ├── TestWikiPage.test_edit.json │ │ ├── TestWikiPage.test_edit__usernotes.json │ │ ├── TestWikiPage.test_edit__with_reason.json │ │ ├── TestWikiPage.test_init__with_revision.json │ │ ├── TestWikiPage.test_init__with_revision__author_deleted.json │ │ ├── TestWikiPage.test_invalid_page.json │ │ ├── TestWikiPage.test_revision.json │ │ ├── TestWikiPage.test_revision_by.json │ │ ├── TestWikiPage.test_revisions.json │ │ ├── TestWikiPage.test_revisions__author_deleted.json │ │ ├── TestWikiPageModeration.test_add.json │ │ ├── TestWikiPageModeration.test_remove.json │ │ ├── TestWikiPageModeration.test_revert.json │ │ ├── TestWikiPageModeration.test_revert_css_fail.json │ │ ├── TestWikiPageModeration.test_settings.json │ │ └── TestWikiPageModeration.test_update.json │ ├── files │ │ ├── comment_ids.txt │ │ ├── header.jpg │ │ ├── icon.jpg │ │ ├── invalid.jpg │ │ ├── test.gif │ │ ├── test.jpg │ │ ├── test.mov │ │ ├── test.mp4 │ │ ├── test.png │ │ ├── too_large.jpg │ │ ├── white-square.jpg │ │ └── white-square.png │ ├── models │ │ ├── __init__.py │ │ ├── listing │ │ │ ├── __init__.py │ │ │ └── test_generator.py │ │ ├── reddit │ │ │ ├── __init__.py │ │ │ ├── test_collections.py │ │ │ ├── test_comment.py │ │ │ ├── test_draft.py │ │ │ ├── test_emoji.py │ │ │ ├── test_live.py │ │ │ ├── test_message.py │ │ │ ├── test_modmail.py │ │ │ ├── test_more.py │ │ │ ├── test_multi.py │ │ │ ├── test_poll.py │ │ │ ├── test_redditor.py │ │ │ ├── test_removal_reasons.py │ │ │ ├── test_rules.py │ │ │ ├── test_submission.py │ │ │ ├── test_subreddit.py │ │ │ ├── test_user_subreddit.py │ │ │ ├── test_widgets.py │ │ │ └── test_wikipage.py │ │ ├── test_auth.py │ │ ├── test_comment_forest.py │ │ ├── test_front.py │ │ ├── test_inbox.py │ │ ├── test_mod_notes.py │ │ ├── test_preferences.py │ │ ├── test_redditors.py │ │ ├── test_subreddits.py │ │ ├── test_trophy.py │ │ └── test_user.py │ ├── test_github_actions.py │ ├── test_objector.py │ └── test_reddit.py ├── unit │ ├── __init__.py │ ├── conftest.py │ ├── models │ │ ├── __init__.py │ │ ├── list │ │ │ ├── __init__.py │ │ │ └── test_base.py │ │ ├── listing │ │ │ ├── __init__.py │ │ │ ├── test_generator.py │ │ │ └── test_listing.py │ │ ├── reddit │ │ │ ├── __init__.py │ │ │ ├── mixins │ │ │ │ ├── __init__.py │ │ │ │ └── test__init__.py │ │ │ ├── test_collections.py │ │ │ ├── test_comment.py │ │ │ ├── test_draft.py │ │ │ ├── test_emoji.py │ │ │ ├── test_inline_media.py │ │ │ ├── test_live.py │ │ │ ├── test_message.py │ │ │ ├── test_modmail.py │ │ │ ├── test_more.py │ │ │ ├── test_poll.py │ │ │ ├── test_redditor.py │ │ │ ├── test_removal_reasons.py │ │ │ ├── test_rules.py │ │ │ ├── test_submission.py │ │ │ ├── test_subreddit.py │ │ │ ├── test_widgets.py │ │ │ └── test_wikipage.py │ │ ├── test_auth.py │ │ ├── test_front.py │ │ ├── test_mod_note.py │ │ ├── test_mod_notes.py │ │ ├── test_preferences.py │ │ ├── test_redditors.py │ │ ├── test_subreddits.py │ │ ├── test_trophy.py │ │ ├── test_user.py │ │ └── test_util.py │ ├── praw.ini │ ├── test_config.py │ ├── test_exceptions.py │ ├── test_objector.py │ ├── test_reddit.py │ └── util │ │ ├── __init__.py │ │ ├── test_cache.py │ │ └── test_snake.py └── utils.py ├── tools ├── __init__.py ├── bump_version.py ├── check_documentation.py ├── extract_log_entry.py ├── set_active_docs.py ├── set_version.py └── static_word_checks.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/CONTRIBUTING.rst -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/manual_tag_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/manual_tag_release.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit_autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/pre-commit_autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/prepare_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/prepare_release.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/set_active_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/set_active_docs.yml -------------------------------------------------------------------------------- /.github/workflows/stale_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/stale_action.yml -------------------------------------------------------------------------------- /.github/workflows/tag_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.github/workflows/tag_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/SECURITY.md -------------------------------------------------------------------------------- /asyncpraw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/__init__.py -------------------------------------------------------------------------------- /asyncpraw/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/config.py -------------------------------------------------------------------------------- /asyncpraw/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/const.py -------------------------------------------------------------------------------- /asyncpraw/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/endpoints.py -------------------------------------------------------------------------------- /asyncpraw/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/exceptions.py -------------------------------------------------------------------------------- /asyncpraw/images/PRAW logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/images/PRAW logo.png -------------------------------------------------------------------------------- /asyncpraw/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/__init__.py -------------------------------------------------------------------------------- /asyncpraw/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/auth.py -------------------------------------------------------------------------------- /asyncpraw/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/base.py -------------------------------------------------------------------------------- /asyncpraw/models/comment_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/comment_forest.py -------------------------------------------------------------------------------- /asyncpraw/models/front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/front.py -------------------------------------------------------------------------------- /asyncpraw/models/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/helpers.py -------------------------------------------------------------------------------- /asyncpraw/models/inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/inbox.py -------------------------------------------------------------------------------- /asyncpraw/models/list/__init__.py: -------------------------------------------------------------------------------- 1 | """Package providing models that act like a list.""" 2 | -------------------------------------------------------------------------------- /asyncpraw/models/list/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/list/base.py -------------------------------------------------------------------------------- /asyncpraw/models/list/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/list/draft.py -------------------------------------------------------------------------------- /asyncpraw/models/list/moderated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/list/moderated.py -------------------------------------------------------------------------------- /asyncpraw/models/list/redditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/list/redditor.py -------------------------------------------------------------------------------- /asyncpraw/models/list/trophy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/list/trophy.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/__init__.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/domain.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/generator.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/listing.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/__init__.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/base.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/redditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/redditor.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/rising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/rising.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/submission.py -------------------------------------------------------------------------------- /asyncpraw/models/listing/mixins/subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/listing/mixins/subreddit.py -------------------------------------------------------------------------------- /asyncpraw/models/mod_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/mod_action.py -------------------------------------------------------------------------------- /asyncpraw/models/mod_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/mod_note.py -------------------------------------------------------------------------------- /asyncpraw/models/mod_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/mod_notes.py -------------------------------------------------------------------------------- /asyncpraw/models/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/preferences.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | """Provide all models that map to Reddit objects.""" 2 | -------------------------------------------------------------------------------- /asyncpraw/models/reddit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/base.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/collections.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/comment.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/draft.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/emoji.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/inline_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/inline_media.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/live.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/message.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/__init__.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/editable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/fullname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/fullname.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/inboxable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/inboxable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/inboxtoggleable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/inboxtoggleable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/messageable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/messageable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/modnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/modnote.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/replyable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/replyable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/reportable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/reportable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/savable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/savable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/mixins/votable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/mixins/votable.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/modmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/modmail.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/more.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/multi.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/poll.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/redditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/redditor.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/removal_reasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/removal_reasons.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/rules.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/submission.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/subreddit.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/user_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/user_subreddit.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/widgets.py -------------------------------------------------------------------------------- /asyncpraw/models/reddit/wikipage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/reddit/wikipage.py -------------------------------------------------------------------------------- /asyncpraw/models/redditors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/redditors.py -------------------------------------------------------------------------------- /asyncpraw/models/stylesheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/stylesheet.py -------------------------------------------------------------------------------- /asyncpraw/models/subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/subreddits.py -------------------------------------------------------------------------------- /asyncpraw/models/trophy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/trophy.py -------------------------------------------------------------------------------- /asyncpraw/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/user.py -------------------------------------------------------------------------------- /asyncpraw/models/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/models/util.py -------------------------------------------------------------------------------- /asyncpraw/objector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/objector.py -------------------------------------------------------------------------------- /asyncpraw/praw.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/praw.ini -------------------------------------------------------------------------------- /asyncpraw/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/reddit.py -------------------------------------------------------------------------------- /asyncpraw/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/util/__init__.py -------------------------------------------------------------------------------- /asyncpraw/util/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/util/cache.py -------------------------------------------------------------------------------- /asyncpraw/util/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/asyncpraw/util/snake.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/code_overview/asyncpraw_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/asyncpraw_models.rst -------------------------------------------------------------------------------- /docs/code_overview/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/exceptions.rst -------------------------------------------------------------------------------- /docs/code_overview/models/comment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/comment.rst -------------------------------------------------------------------------------- /docs/code_overview/models/draft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/draft.rst -------------------------------------------------------------------------------- /docs/code_overview/models/livethread.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/livethread.rst -------------------------------------------------------------------------------- /docs/code_overview/models/liveupdate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/liveupdate.rst -------------------------------------------------------------------------------- /docs/code_overview/models/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/message.rst -------------------------------------------------------------------------------- /docs/code_overview/models/modmailconversation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/modmailconversation.rst -------------------------------------------------------------------------------- /docs/code_overview/models/more.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/more.rst -------------------------------------------------------------------------------- /docs/code_overview/models/multireddit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/multireddit.rst -------------------------------------------------------------------------------- /docs/code_overview/models/redditor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/redditor.rst -------------------------------------------------------------------------------- /docs/code_overview/models/submission.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/submission.rst -------------------------------------------------------------------------------- /docs/code_overview/models/subreddit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/subreddit.rst -------------------------------------------------------------------------------- /docs/code_overview/models/wikipage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/models/wikipage.rst -------------------------------------------------------------------------------- /docs/code_overview/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other.rst -------------------------------------------------------------------------------- /docs/code_overview/other/asyncprawbase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/asyncprawbase.rst -------------------------------------------------------------------------------- /docs/code_overview/other/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/auth.rst -------------------------------------------------------------------------------- /docs/code_overview/other/base_mod_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/base_mod_notes.rst -------------------------------------------------------------------------------- /docs/code_overview/other/baselist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/baselist.rst -------------------------------------------------------------------------------- /docs/code_overview/other/button.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/button.rst -------------------------------------------------------------------------------- /docs/code_overview/other/buttonwidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/buttonwidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/calendar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/calendar.rst -------------------------------------------------------------------------------- /docs/code_overview/other/calendarconfiguration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/calendarconfiguration.rst -------------------------------------------------------------------------------- /docs/code_overview/other/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/collection.rst -------------------------------------------------------------------------------- /docs/code_overview/other/collectionmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/collectionmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/commentforest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/commentforest.rst -------------------------------------------------------------------------------- /docs/code_overview/other/commenthelper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/commenthelper.rst -------------------------------------------------------------------------------- /docs/code_overview/other/commentmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/commentmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/communitylist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/communitylist.rst -------------------------------------------------------------------------------- /docs/code_overview/other/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/config.rst -------------------------------------------------------------------------------- /docs/code_overview/other/contributorrelationship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/contributorrelationship.rst -------------------------------------------------------------------------------- /docs/code_overview/other/customwidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/customwidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/domainlisting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/domainlisting.rst -------------------------------------------------------------------------------- /docs/code_overview/other/draftlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/draftlist.rst -------------------------------------------------------------------------------- /docs/code_overview/other/emoji.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/emoji.rst -------------------------------------------------------------------------------- /docs/code_overview/other/fullnamemixin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/fullnamemixin.rst -------------------------------------------------------------------------------- /docs/code_overview/other/hover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/hover.rst -------------------------------------------------------------------------------- /docs/code_overview/other/idcard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/idcard.rst -------------------------------------------------------------------------------- /docs/code_overview/other/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/image.rst -------------------------------------------------------------------------------- /docs/code_overview/other/imagedata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/imagedata.rst -------------------------------------------------------------------------------- /docs/code_overview/other/imagewidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/imagewidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/inboxablemixin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/inboxablemixin.rst -------------------------------------------------------------------------------- /docs/code_overview/other/inlinegif.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/inlinegif.rst -------------------------------------------------------------------------------- /docs/code_overview/other/inlineimage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/inlineimage.rst -------------------------------------------------------------------------------- /docs/code_overview/other/inlinemedia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/inlinemedia.rst -------------------------------------------------------------------------------- /docs/code_overview/other/inlinevideo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/inlinevideo.rst -------------------------------------------------------------------------------- /docs/code_overview/other/listinggenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/listinggenerator.rst -------------------------------------------------------------------------------- /docs/code_overview/other/livecontributorrelationship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/livecontributorrelationship.rst -------------------------------------------------------------------------------- /docs/code_overview/other/livethreadcontribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/livethreadcontribution.rst -------------------------------------------------------------------------------- /docs/code_overview/other/livethreadstream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/livethreadstream.rst -------------------------------------------------------------------------------- /docs/code_overview/other/liveupdatecontribution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/liveupdatecontribution.rst -------------------------------------------------------------------------------- /docs/code_overview/other/menu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/menu.rst -------------------------------------------------------------------------------- /docs/code_overview/other/menulink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/menulink.rst -------------------------------------------------------------------------------- /docs/code_overview/other/mod_action.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/mod_action.rst -------------------------------------------------------------------------------- /docs/code_overview/other/mod_note.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/mod_note.rst -------------------------------------------------------------------------------- /docs/code_overview/other/mod_note_mixin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/mod_note_mixin.rst -------------------------------------------------------------------------------- /docs/code_overview/other/moderatedlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/moderatedlist.rst -------------------------------------------------------------------------------- /docs/code_overview/other/moderatorrelationship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/moderatorrelationship.rst -------------------------------------------------------------------------------- /docs/code_overview/other/moderatorswidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/moderatorswidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/modmail.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/modmail.rst -------------------------------------------------------------------------------- /docs/code_overview/other/modmailmessage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/modmailmessage.rst -------------------------------------------------------------------------------- /docs/code_overview/other/partialredditor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/partialredditor.rst -------------------------------------------------------------------------------- /docs/code_overview/other/polldata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/polldata.rst -------------------------------------------------------------------------------- /docs/code_overview/other/polloption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/polloption.rst -------------------------------------------------------------------------------- /docs/code_overview/other/postflairwidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/postflairwidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/preferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/preferences.rst -------------------------------------------------------------------------------- /docs/code_overview/other/reddit_mod_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/reddit_mod_notes.rst -------------------------------------------------------------------------------- /docs/code_overview/other/redditbase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/redditbase.rst -------------------------------------------------------------------------------- /docs/code_overview/other/redditor_mod_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/redditor_mod_notes.rst -------------------------------------------------------------------------------- /docs/code_overview/other/redditorlist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/redditorlist.rst -------------------------------------------------------------------------------- /docs/code_overview/other/redditorstream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/redditorstream.rst -------------------------------------------------------------------------------- /docs/code_overview/other/removalreason.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/removalreason.rst -------------------------------------------------------------------------------- /docs/code_overview/other/rule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/rule.rst -------------------------------------------------------------------------------- /docs/code_overview/other/rulemoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/rulemoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/ruleswidget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/ruleswidget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/styles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/styles.rst -------------------------------------------------------------------------------- /docs/code_overview/other/stylesheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/stylesheet.rst -------------------------------------------------------------------------------- /docs/code_overview/other/sublisting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/sublisting.rst -------------------------------------------------------------------------------- /docs/code_overview/other/submenu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/submenu.rst -------------------------------------------------------------------------------- /docs/code_overview/other/submissionflair.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/submissionflair.rst -------------------------------------------------------------------------------- /docs/code_overview/other/submissionmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/submissionmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subreddit_mod_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subreddit_mod_notes.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditcollections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditcollections.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditcollectionsmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditcollectionsmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditemoji.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditemoji.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditfilters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditfilters.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditflair.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditflair.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditflairtemplates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditflairtemplates.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditlinkflairtemplates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditlinkflairtemplates.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditlistingmixin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditlistingmixin.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditmessage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditmessage.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditmoderationstream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditmoderationstream.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditquarantine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditquarantine.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditredditorflairtemplates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditredditorflairtemplates.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditrelationship.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditrelationship.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditremovalreasons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditremovalreasons.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditrules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditrules.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditrulesmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditrulesmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditstream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditstream.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditstylesheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditstylesheet.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditwidgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditwidgets.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditwidgetsmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditwidgetsmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/subredditwiki.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/subredditwiki.rst -------------------------------------------------------------------------------- /docs/code_overview/other/textarea.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/textarea.rst -------------------------------------------------------------------------------- /docs/code_overview/other/thingmoderationmixin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/thingmoderationmixin.rst -------------------------------------------------------------------------------- /docs/code_overview/other/trophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/trophy.rst -------------------------------------------------------------------------------- /docs/code_overview/other/usersubreddit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/usersubreddit.rst -------------------------------------------------------------------------------- /docs/code_overview/other/usersubredditmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/usersubredditmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/util.rst -------------------------------------------------------------------------------- /docs/code_overview/other/widget.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/widget.rst -------------------------------------------------------------------------------- /docs/code_overview/other/widgetmoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/widgetmoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/other/wikipagemoderation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/other/wikipagemoderation.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/drafts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/drafts.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/front.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/front.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/inbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/inbox.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/live.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/live.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/multireddit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/multireddit.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/redditors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/redditors.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/subreddit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/subreddit.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/subreddits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/subreddits.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit/user.rst -------------------------------------------------------------------------------- /docs/code_overview/reddit_instance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/code_overview/reddit_instance.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docutils.conf: -------------------------------------------------------------------------------- 1 | [parsers] 2 | smart_quotes: true 3 | -------------------------------------------------------------------------------- /docs/examples/lmgtfy_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/examples/lmgtfy_bot.py -------------------------------------------------------------------------------- /docs/examples/obtain_refresh_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/examples/obtain_refresh_token.py -------------------------------------------------------------------------------- /docs/generate_local_docs.bat: -------------------------------------------------------------------------------- 1 | RMDIR /s /q _build 2 | make html 3 | -------------------------------------------------------------------------------- /docs/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/genindex.rst -------------------------------------------------------------------------------- /docs/getting_started/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/authentication.rst -------------------------------------------------------------------------------- /docs/getting_started/authentication_flow_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/authentication_flow_table.txt -------------------------------------------------------------------------------- /docs/getting_started/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/configuration.rst -------------------------------------------------------------------------------- /docs/getting_started/configuration/environment_variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/configuration/environment_variables.rst -------------------------------------------------------------------------------- /docs/getting_started/configuration/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/configuration/options.rst -------------------------------------------------------------------------------- /docs/getting_started/configuration/prawini.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/configuration/prawini.rst -------------------------------------------------------------------------------- /docs/getting_started/configuration/reddit_initialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/configuration/reddit_initialization.rst -------------------------------------------------------------------------------- /docs/getting_started/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/faq.rst -------------------------------------------------------------------------------- /docs/getting_started/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/installation.rst -------------------------------------------------------------------------------- /docs/getting_started/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/logging.rst -------------------------------------------------------------------------------- /docs/getting_started/multiple_instances.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/multiple_instances.rst -------------------------------------------------------------------------------- /docs/getting_started/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/quick_start.rst -------------------------------------------------------------------------------- /docs/getting_started/ratelimits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/getting_started/ratelimits.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/logo/png/Old PRAW logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/logo/png/Old PRAW logo.png -------------------------------------------------------------------------------- /docs/logo/png/PRAW banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/logo/png/PRAW banner.png -------------------------------------------------------------------------------- /docs/logo/png/PRAW logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/logo/png/PRAW logo.png -------------------------------------------------------------------------------- /docs/logo/svg/PRAW banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/logo/svg/PRAW banner.svg -------------------------------------------------------------------------------- /docs/logo/svg/PRAW logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/logo/svg/PRAW logo.svg -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/package_info/asyncpraw_migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/package_info/asyncpraw_migration.rst -------------------------------------------------------------------------------- /docs/package_info/change_log.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/package_info/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/package_info/contributing.rst -------------------------------------------------------------------------------- /docs/package_info/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/package_info/glossary.rst -------------------------------------------------------------------------------- /docs/package_info/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/package_info/references.rst -------------------------------------------------------------------------------- /docs/redirect_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/redirect_log.txt -------------------------------------------------------------------------------- /docs/tutorials/comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/tutorials/comments.rst -------------------------------------------------------------------------------- /docs/tutorials/refresh_token.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/tutorials/refresh_token.rst -------------------------------------------------------------------------------- /docs/tutorials/reply_bot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/tutorials/reply_bot.rst -------------------------------------------------------------------------------- /docs/typical_attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/docs/typical_attributes.rst -------------------------------------------------------------------------------- /praw_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/praw_license.txt -------------------------------------------------------------------------------- /pre_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/pre_push.py -------------------------------------------------------------------------------- /profile_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/profile_tests.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/cassettes/TestAuthImplicit.test_scopes__read_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestAuthImplicit.test_scopes__read_only.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestAuthScript.test_scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestAuthScript.test_scopes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestAuthWeb.test_authorize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestAuthWeb.test_authorize.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestAuthWeb.test_scopes__read_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestAuthWeb.test_scopes__read_only.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_bad_fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_bad_fetch.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_follow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_follow.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_init.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_iter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_iter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_subreddit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_subreddit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollection.test_unfollow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollection.test_unfollow.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollectionModeration.test_add_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollectionModeration.test_add_post.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollectionModeration.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollectionModeration.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollectionModeration.test_remove_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollectionModeration.test_remove_post.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCollectionModeration.test_reorder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCollectionModeration.test_reorder.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_attributes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_block.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_clear_vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_clear_vote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_disable_inbox_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_disable_inbox_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_downvote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_downvote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_edit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_enable_inbox_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_enable_inbox_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_invalid.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_mark_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_mark_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_mark_unread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_mark_unread.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_notes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_parent__chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_parent__chain.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_parent__comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_parent__comment.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_parent__from_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_parent__from_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_parent__submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_parent__submission.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_refresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_refresh.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_refresh__deleted_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_refresh__deleted_comment.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_refresh__removed_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_refresh__removed_comment.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_refresh__twice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_refresh__twice.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_reply.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_report.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_resolve_from_share_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_resolve_from_share_url.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_save.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_unsave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_unsave.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestComment.test_upvote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestComment.test_upvote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentForest.test_replace__all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentForest.test_replace__all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentForest.test_replace__all_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentForest.test_replace__all_large.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentForest.test_replace__skip_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentForest.test_replace__skip_all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_approve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_approve.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_distinguish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_distinguish.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_ignore_reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_ignore_reports.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_lock.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_show.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_show.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_undistinguish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_undistinguish.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestCommentModeration.test_unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestCommentModeration.test_unlock.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDomainListing.test_controversial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDomainListing.test_controversial.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDomainListing.test_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDomainListing.test_hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDomainListing.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDomainListing.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDomainListing.test_rising.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDomainListing.test_rising.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDomainListing.test_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDomainListing.test_top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_fetch.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_list.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_submit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_submit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_submit__different_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_submit__different_title.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestDraft.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestDraft.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestEmoji.test__fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestEmoji.test__fetch.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestEmoji.test__fetch__invalid_emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestEmoji.test__fetch__invalid_emoji.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestEmoji.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestEmoji.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestEmoji.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestEmoji.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestFront.test_best.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestFront.test_best.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestFront.test_controversial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestFront.test_controversial.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestFront.test_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestFront.test_hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestFront.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestFront.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestFront.test_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestFront.test_top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestIDCard.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestIDCard.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_all__with_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_all__with_limit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_comment_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_comment_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_comment_reply__refresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_comment_reply__refresh.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_mark_all_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_mark_all_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_mark_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_mark_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_mark_unread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_mark_unread.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_mention__refresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_mention__refresh.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_mentions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_mentions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_message.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_message__unauthorized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_message__unauthorized.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_message_collapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_message_collapse.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_message_uncollapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_message_uncollapse.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_messages.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_sent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_sent.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_stream.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_submission_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_submission_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestInbox.test_unread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestInbox.test_unread.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestListingGenerator.test_exhaust_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestListingGenerator.test_exhaust_items.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestListingGenerator.test_no_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestListingGenerator.test_no_items.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThread.test_contributor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThread.test_contributor.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThread.test_discussions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThread.test_discussions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThread.test_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThread.test_init.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThread.test_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThread.test_report.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThread.test_updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThread.test_updates.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThreadContribution.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThreadContribution.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThreadContribution.test_close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThreadContribution.test_close.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveThreadStream.test_updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveThreadStream.test_updates.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveUpdate.test_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveUpdate.test_attributes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveUpdateContribution.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveUpdateContribution.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestLiveUpdateContribution.test_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestLiveUpdateContribution.test_strike.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_attributes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_block.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_mark_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_mark_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_mark_unread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_mark_unread.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_message_collapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_message_collapse.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_message_uncollapse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_message_uncollapse.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_parent.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMessage.test_reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMessage.test_reply.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModNotes.test_create_note__submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModNotes.test_create_note__submission.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModNotes.test_delete_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModNotes.test_delete_note.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModNotes.test_delete_note__all_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModNotes.test_delete_note__all_notes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModeratorsWidget.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModeratorsWidget.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_archive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_archive.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_highlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_highlight.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_mute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_mute.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_reply.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_unarchive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_unarchive.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_unhighlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_unhighlight.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_unmute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_unmute.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestModmailConversation.test_unread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestModmailConversation.test_unread.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMore.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMore.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_copy.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultireddit.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultireddit.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditListings.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditListings.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditListings.test_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditListings.test_hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditListings.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditListings.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditListings.test_rising.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditListings.test_rising.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditListings.test_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditListings.test_top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditStreams.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditStreams.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestMultiredditStreams.test_submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestMultiredditStreams.test_submissions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestObjector.test_raise_api_exception.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestObjector.test_raise_api_exception.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestPollData.test_get_attrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestPollData.test_get_attrs.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestPollData.test_get_user_selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestPollData.test_get_user_selection.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestPreferences.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestPreferences.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestPreferences.test_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestPreferences.test_view.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_bare_badrequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_bare_badrequest.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_info.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_info_sr_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_info_sr_names.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_info_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_info_url.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_live_call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_live_call.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_live_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_live_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_live_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_live_info.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_live_now__no_featured.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_live_now__no_featured.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_notes__call__.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_notes__call__.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestReddit.test_notes__things.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestReddit.test_notes__things.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_block.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_friend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_friend.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_friend_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_friend_info.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_fullname_init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_fullname_init.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_message.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_message_from_subreddit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_message_from_subreddit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_moderated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_moderated.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_multireddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_multireddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_notes__subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_notes__subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_stream__comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_stream__comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_stream__submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_stream__submissions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_trophies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_trophies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_unblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_unblock.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditor.test_unfriend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditor.test_unfriend.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_comments__hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_comments__hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_comments__new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_comments__new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_comments__top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_comments__top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_controversial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_controversial.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_downvoted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_downvoted.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_hidden.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_saved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_saved.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditorListings.test_upvoted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditorListings.test_upvoted.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditors.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditors.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditors.test_partial_redditors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditors.test_partial_redditors.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditors.test_popular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditors.test_popular.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditors.test_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditors.test_search.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRedditors.test_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRedditors.test_stream.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRemovalReason.test__fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRemovalReason.test__fetch.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRemovalReason.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRemovalReason.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRemovalReason.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRemovalReason.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRemovalReason.test_update_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRemovalReason.test_update_empty.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_add_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_add_rule.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_aiter_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_aiter_rules.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_delete_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_delete_rule.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_reorder_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_reorder_rules.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_reorder_rules_double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_reorder_rules_double.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_reorder_rules_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_reorder_rules_empty.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_reorder_rules_no_reorder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_reorder_rules_no_reorder.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_reorder_rules_omit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_reorder_rules_omit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_update_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_update_rule.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_update_rule_no_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_update_rule_no_params.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRule.test_update_rule_short_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRule.test_update_rule_short_name.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestRulesWidget.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestRulesWidget.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_clear_vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_clear_vote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_crosspost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_crosspost.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_crosspost__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_crosspost__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_crosspost__nsfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_crosspost__nsfw.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_crosspost__spoiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_crosspost__spoiler.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_disable_inbox_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_disable_inbox_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_downvote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_downvote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_duplicates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_duplicates.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_edit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_edit__experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_edit__experimental.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_edit_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_edit_invalid.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_enable_inbox_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_enable_inbox_replies.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_hide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_hide.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_hide_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_hide_multiple.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_invalid_attribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_invalid_attribute.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_mark_visited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_mark_visited.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_reply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_reply.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_report.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_save.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_unhide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_unhide.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_unhide_multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_unhide_multiple.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_unsave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_unsave.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmission.test_upvote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmission.test_upvote.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionFlair.test_choices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionFlair.test_choices.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionFlair.test_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionFlair.test_select.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_approve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_approve.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_distinguish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_distinguish.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_flair_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_flair_all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_lock.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_notes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_nsfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_nsfw.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_sfw.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_spoiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_spoiler.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_sticky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_sticky.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_sticky__top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_sticky__top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_unlock.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubmissionModeration.test_unspoiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubmissionModeration.test_unspoiler.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_create__exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_create__exists.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_message.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_post_requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_post_requirements.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_search.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_sticky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_sticky.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_sticky__not_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_sticky__not_set.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__nsfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__nsfw.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__selftext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__selftext.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__selftext_blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__selftext_blank.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__spoiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__spoiler.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__url.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__url_selftext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__url_selftext.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit__verify_invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit__verify_invalid.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_gallery.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_gallery__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_gallery__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_image.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_image__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_image__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_image__large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_image__large.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_image__selftext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_image__selftext.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_image_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_image_chat.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_live_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_live_chat.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_poll.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_poll__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_poll__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_poll__live_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_poll__live_chat.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_video.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_video__flair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_video__flair.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_video__selftext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_video__selftext.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_video__videogif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_video__videogif.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_submit_video_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_submit_video_chat.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_subscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_subscribe.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_subscribe__multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_subscribe__multiple.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_traffic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_traffic.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_traffic__not_public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_traffic__not_public.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_unsubscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_unsubscribe.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddit.test_unsubscribe__multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddit.test_unsubscribe__multiple.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditCollections.test_call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditCollections.test_call.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditCollections.test_iter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditCollections.test_iter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditEmoji.test__iter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditEmoji.test__iter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditEmoji.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditEmoji.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditEmoji.test_add_with_perms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditEmoji.test_add_with_perms.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFilters.test__aiter__all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFilters.test__aiter__all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFilters.test__aiter__mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFilters.test__aiter__mod.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFilters.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFilters.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFilters.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFilters.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test__call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test__call.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_configure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_configure.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_delete_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_delete_all.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_set__flair_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_set__flair_id.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_set__redditor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_set__redditor.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlair.test_update_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlair.test_update_quotes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test__aiter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test__aiter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test_clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test_clear.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test_delete.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test_reorder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test_reorder.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditFlairTemplates.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditFlairTemplates.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditLinkFlairTemplates.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditLinkFlairTemplates.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_controversial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_controversial.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_hot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_rising.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_rising.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditListings.test_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditListings.test_top.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_edited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_edited.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_log.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_log__filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_log__filters.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_modqueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_modqueue.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_notes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_reports.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_spam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_spam.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_unmoderated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_unmoderated.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModeration.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModeration.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModerationStreams.test_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModerationStreams.test_log.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_bulk_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_bulk_read.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_call.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_conversations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_conversations.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditModmail.test_unread_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditModmail.test_unread_count.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditQuarantine.test_opt_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditQuarantine.test_opt_in.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditQuarantine.test_opt_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditQuarantine.test_opt_out.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditRelationships.test_banned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditRelationships.test_banned.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditRelationships.test_muted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditRelationships.test_muted.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditRemovalReasons.test__aiter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditRemovalReasons.test__aiter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditRemovalReasons.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditRemovalReasons.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditStreams.test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditStreams.test_comments.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditStreams.test_submissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditStreams.test_submissions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditStylesheet.test_call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditStylesheet.test_call.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditStylesheet.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditStylesheet.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditStylesheet.test_upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditStylesheet.test_upload.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWidgets.fetch_widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWidgets.fetch_widgets.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWidgets.test_refresh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWidgets.test_refresh.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWidgets.test_specials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWidgets.test_specials.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWidgets.test_topbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWidgets.test_topbar.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWiki.test__aiter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWiki.test__aiter.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWiki.test_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWiki.test_create.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubredditWiki.test_revisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubredditWiki.test_revisions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_default.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_new.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_popular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_popular.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_recommended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_recommended.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_search.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_search_by_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_search_by_name.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestSubreddits.test_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestSubreddits.test_stream.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestTrophy.test_equality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestTrophy.test_equality.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_blocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_blocked.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_blocked_fullname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_blocked_fullname.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_contributor_subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_contributor_subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_friend_exist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_friend_exist.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_friend_not_exist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_friend_not_exist.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_friends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_friends.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_karma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_karma.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_me.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_me.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_me__bypass_cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_me__bypass_cache.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_moderator_subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_moderator_subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_multireddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_multireddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__comment.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__deleted_submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__deleted_submission.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__empty_slot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__empty_slot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__ignore_conflicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__ignore_conflicts.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__invalid_num.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__invalid_num.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__num.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__num.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__remove_num.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__remove_num.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__removed_submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__removed_submission.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_pin__replace_slot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_pin__replace_slot.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUser.test_subreddits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUser.test_subreddits.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestUserSubredditModeration.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestUserSubredditModeration.test_update.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_content_md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_content_md.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_discussions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_discussions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_edit.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_edit__usernotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_edit__usernotes.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_edit__with_reason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_edit__with_reason.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_init__with_revision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_init__with_revision.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_invalid_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_invalid_page.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_revision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_revision.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_revision_by.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_revision_by.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPage.test_revisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPage.test_revisions.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPageModeration.test_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPageModeration.test_add.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPageModeration.test_remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPageModeration.test_remove.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPageModeration.test_revert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPageModeration.test_revert.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPageModeration.test_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPageModeration.test_settings.json -------------------------------------------------------------------------------- /tests/integration/cassettes/TestWikiPageModeration.test_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/cassettes/TestWikiPageModeration.test_update.json -------------------------------------------------------------------------------- /tests/integration/files/comment_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/comment_ids.txt -------------------------------------------------------------------------------- /tests/integration/files/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/header.jpg -------------------------------------------------------------------------------- /tests/integration/files/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/icon.jpg -------------------------------------------------------------------------------- /tests/integration/files/invalid.jpg: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /tests/integration/files/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/test.gif -------------------------------------------------------------------------------- /tests/integration/files/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/test.jpg -------------------------------------------------------------------------------- /tests/integration/files/test.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/test.mov -------------------------------------------------------------------------------- /tests/integration/files/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/test.mp4 -------------------------------------------------------------------------------- /tests/integration/files/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/test.png -------------------------------------------------------------------------------- /tests/integration/files/too_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/too_large.jpg -------------------------------------------------------------------------------- /tests/integration/files/white-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/white-square.jpg -------------------------------------------------------------------------------- /tests/integration/files/white-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/files/white-square.png -------------------------------------------------------------------------------- /tests/integration/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/models/listing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/models/listing/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/listing/test_generator.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_collections.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_comment.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_draft.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_emoji.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_live.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_message.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_modmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_modmail.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_more.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_multi.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_poll.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_redditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_redditor.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_removal_reasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_removal_reasons.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_rules.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_submission.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_subreddit.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_user_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_user_subreddit.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_widgets.py -------------------------------------------------------------------------------- /tests/integration/models/reddit/test_wikipage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/reddit/test_wikipage.py -------------------------------------------------------------------------------- /tests/integration/models/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_auth.py -------------------------------------------------------------------------------- /tests/integration/models/test_comment_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_comment_forest.py -------------------------------------------------------------------------------- /tests/integration/models/test_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_front.py -------------------------------------------------------------------------------- /tests/integration/models/test_inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_inbox.py -------------------------------------------------------------------------------- /tests/integration/models/test_mod_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_mod_notes.py -------------------------------------------------------------------------------- /tests/integration/models/test_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_preferences.py -------------------------------------------------------------------------------- /tests/integration/models/test_redditors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_redditors.py -------------------------------------------------------------------------------- /tests/integration/models/test_subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_subreddits.py -------------------------------------------------------------------------------- /tests/integration/models/test_trophy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_trophy.py -------------------------------------------------------------------------------- /tests/integration/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/models/test_user.py -------------------------------------------------------------------------------- /tests/integration/test_github_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/test_github_actions.py -------------------------------------------------------------------------------- /tests/integration/test_objector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/test_objector.py -------------------------------------------------------------------------------- /tests/integration/test_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/integration/test_reddit.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/list/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/list/test_base.py -------------------------------------------------------------------------------- /tests/unit/models/listing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/listing/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/listing/test_generator.py -------------------------------------------------------------------------------- /tests/unit/models/listing/test_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/listing/test_listing.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/reddit/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/reddit/mixins/test__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/mixins/test__init__.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_collections.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_comment.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_draft.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_emoji.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_inline_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_inline_media.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_live.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_message.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_modmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_modmail.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_more.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_poll.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_redditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_redditor.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_removal_reasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_removal_reasons.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_rules.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_submission.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_subreddit.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_widgets.py -------------------------------------------------------------------------------- /tests/unit/models/reddit/test_wikipage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/reddit/test_wikipage.py -------------------------------------------------------------------------------- /tests/unit/models/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_auth.py -------------------------------------------------------------------------------- /tests/unit/models/test_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_front.py -------------------------------------------------------------------------------- /tests/unit/models/test_mod_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_mod_note.py -------------------------------------------------------------------------------- /tests/unit/models/test_mod_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_mod_notes.py -------------------------------------------------------------------------------- /tests/unit/models/test_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_preferences.py -------------------------------------------------------------------------------- /tests/unit/models/test_redditors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_redditors.py -------------------------------------------------------------------------------- /tests/unit/models/test_subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_subreddits.py -------------------------------------------------------------------------------- /tests/unit/models/test_trophy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_trophy.py -------------------------------------------------------------------------------- /tests/unit/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_user.py -------------------------------------------------------------------------------- /tests/unit/models/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/models/test_util.py -------------------------------------------------------------------------------- /tests/unit/praw.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/praw.ini -------------------------------------------------------------------------------- /tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/test_config.py -------------------------------------------------------------------------------- /tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/test_objector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/test_objector.py -------------------------------------------------------------------------------- /tests/unit/test_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/test_reddit.py -------------------------------------------------------------------------------- /tests/unit/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/util/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/util/test_cache.py -------------------------------------------------------------------------------- /tests/unit/util/test_snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/unit/util/test_snake.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/bump_version.py -------------------------------------------------------------------------------- /tools/check_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/check_documentation.py -------------------------------------------------------------------------------- /tools/extract_log_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/extract_log_entry.py -------------------------------------------------------------------------------- /tools/set_active_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/set_active_docs.py -------------------------------------------------------------------------------- /tools/set_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/set_version.py -------------------------------------------------------------------------------- /tools/static_word_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tools/static_word_checks.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praw-dev/asyncpraw/HEAD/tox.ini --------------------------------------------------------------------------------