absfuyu.fun package

Absfuyu: Fun

Some fun or weird stuff

Version: 5.1.0 Date updated: 10/03/2025 (dd/mm/yyyy)

absfuyu.fun.zodiac_sign(day: int, month: int, zodiac13: bool = False) str[source]

Calculate zodiac sign

Parameters:
  • day (int) – Day (in range [1, 31])

  • month (int) – Month (in range [1, 12])

  • zodiac13 (bool) – 13 zodiacs mode (Default: False)

Returns:

Zodiac sign

Return type:

str

Changed in version 5.0.0: Updated functionality

absfuyu.fun.im_bored() str[source]

Get random activity from boredapi website

Returns:

Random activity

Return type:

str

Deprecated in version 5.0.0: API shutdown, will be removed later

absfuyu.fun.happy_new_year(forced: bool = False, include_lunar: bool = False) None[source]

Only occurs on 01/01 every year

Parameters:
  • forced (bool) – Shutdown ASAP (Default: False)

  • include_lunar (bool) – Include Lunar New Year (Default: False)

absfuyu.fun.human_year_to_dog_year(human_year: int | float, is_small: bool = True) int | float[source]

Convert human’s year to dog’s year

General Guidelines: 1. First Year: The first year of a dog’s life is roughly equal to 15 human years. 2. Second Year: The second year adds about 9 human years, making a 2-year-old dog equivalent to about 24 human years. 3. Subsequent Years: After the second year, each additional yeartypically equals about 4-5 human years, depending on the dog’s size and breed. (Small-4, Large-5)

Parameters:
  • human_year (int | float) – Dog’s age in human year

  • is_small (bool, optional) – Is the dog small or not, by default True

Returns:

Dog’s year/age

Return type:

int | float

Raises:

ValueError – When human_year < 0

Added in version 5.0.0

Submodules