diff --git a/twikit/tweet.py b/twikit/tweet.py index 07ac03b6..9febd8ce 100644 --- a/twikit/tweet.py +++ b/twikit/tweet.py @@ -198,6 +198,10 @@ def view_count_state(self) -> str | None: def has_community_notes(self) -> bool: return self._data.get('has_birdwatch_notes') + @property + def source(self) -> str | None: + return self._data.get('source') + @property def quote(self) -> Tweet | None: if self._data.get('quoted_status_result'):