# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/v4f73xa
一日一技:Python 類型標註的高級用法**
攝影:產品經理蜜汁叉燒假設你正在寫後端代碼,其中一個函數的功能是傳入文章 id,返回文章詳情。因爲項目比較大,因此在定義函數時,把類型標註加上,標明瞭參數的類型和返回的類型。例如:from typing import Listfrom dataclasses import dataclass@dataclassclass ArticleDetail:    id: int    title: st ⌘ Read more