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

fetch_data(*, update: bool = False, json_cache: str | Path)[source]

Fetch data from an API then cache it for later use

Parameters:
  • update – Refresh the cache when True (Default: False)

  • json_cache (Path | str) – Name of the cache

Returns:

  • Any – Data

  • None – No data fetched/unable to fetch data

fetch_data_only() Response[source]

Fetch data without cache

Returns:

requests.Response

Return type:

Response

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