# 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/3yovlia
XML 處理,Go 標準庫太簡單了怎麼辦?**
閱讀本文大概需要 4 分鐘。雖然官方有 xml 處理的庫,但比較簡單。今天介紹一個基於官方 xml 庫的增強庫:etree https://github.com/beevik/etree,它是一個輕量級的純 Go 包,它可以用於以元素樹的形式表示 XML 文檔。它的設計受到了 Python ElementTree 模塊的啓發。etree 的特點---------支持導入、序列化、修改或從頭創建 X ⌘ Read more