absfuyu.util.api module
Absufyu: API
Fetch data stuff
Version: 5.1.0 Date updated: 10/03/2025 (dd/mm/yyyy)
- class absfuyu.util.api.APIRequest(api_url: str, *, encoding: str | None = 'utf-8')[source]
Bases:
object
API data with cache feature
- absfuyu.util.api.ping_windows(host: list[str], ping_count: int = 3) list[PingResult] [source]
Ping web
- Parameters:
host (list[str]) – List of host to ping
ping_count (int) – Number of time to ping to take average (Default:
3
)
- Returns:
List of host with pinged value
- Return type:
list
Example:
>>> ping_windows(["1.1.1.1", "google.com"]) ['1.1.1.1 : xxms', 'google.com : xxms']
Added in version 2.5.0
Changed in version 3.4.0: Updated functionality