reader v3.3 Release Notes

  • ๐Ÿš€ Unreleased

    • ๐Ÿ‘Œ Support Python 3.11. (:issue:289)

    • ๐Ÿ”จ Refactor parser internals. (:issue:297)

    .. note::

    Plugins using the (unstable) session hooks should replace::
    
        reader._parser.session_hooks.request.append(...)
        reader._parser.session_hooks.response.append(...)
    
    with::
    
        reader._parser.session_factory.request_hooks.append(...)
        reader._parser.session_factory.response_hooks.append(...)
    
    • ๐Ÿ”Œ :mod:~reader._plugins.twitter plugin: don't fail when deserializing tweets with missing edit_history_tweet_ids (fails in tweepy 4.11, warns in tweepy >4.12).