v7.5.0
7.5.0 (2021/11/13)
Added
- Log a warning if a submission's
comment_sort
attribute is updated after the
submission has already been fetched and awarn_comment_sort
config setting to turn
off the warning. - :meth:
.user_selectable
to get available subreddit link flairs. - Automatic RateLimit handling will support errors with millisecond resolution.
- :class:
.Draft
to represent a submission draft. - :meth:
.Draft.delete
to delete drafts. - :meth:
.Draft.submit
to submit drafts. - :meth:
.Draft.update
to modify drafts. - :class:
.DraftHelper
to fetch or create drafts on new Reddit. - :class:
.DraftList
to represent a list of :class:.Draft
objects.
Deprecated
- Ability to use :class:
.CommentForest
as an asynchronous iterator. - :meth:
.CommentForest.list
no longer needs to be awaited. - :attr:
.Submission.comments
no longer needs to be awaited and is now a property.
Fixed
- Fixed return value type of methods returning a listing in :class:
.Subreddit
and its
helper classes. - An import error when using Async PRAW in environments where
libsqlite3-dev
is
needed to utilizeaiosqlite
package which depends on thesqlite3
builtin.
Deprecated
- The keyword argument
lazy
has been replace byfetch
to consolidate the keyword
argument used to explicitly perform a fetch when initializing an object.