search_user¶
- PyPtt.API.search_user(self, ptt_id: str, min_page: int | None = None, max_page: int | None = None) List[str]
搜尋使用者。
- 參數:
ptt_id (str) – PTT ID。
min_page (int) – 最小頁數。
max_page (int) – 最大頁數。
- 回傳:
List[str],搜尋結果。
- 引發:
RequireLogin – 需要登入。
UnregisteredUser – 未註冊使用者。
範例:
import PyPtt ptt_bot = PyPtt.API() try: # .. login .. search_result = ptt_bot.search_user(ptt_id='Coding') # .. do something .. finally: ptt_bot.logout()