# 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/kmxt6pq
一篇文章帶你搞定 Python 匿名函數**
一、前言----當在傳入函數時,有些時候,不需要顯式地定義函數,直接傳入匿名函數更方便。二、匿名函數------在 Python 中,對匿名函數提供了有限支持。還是以 map() 函數爲例,計算 f(x)=x2 時,除了定義一個 f(x) 的函數外,還可以直接傳入匿名函數:print(list(map(lambda x: x x, [1, 2, 3, 4, 5, 6, 7, 8, 9])))通過 ⌘ Read more
=