absfuyu.general.content module

Absfuyu: Content

Handle .txt file

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

Usage:

>>> from absfuyu.general.content import ContentLoader
class absfuyu.general.content.ContentLoader(file_path: Path | str, characteristic_detect: bool = True, tag_dictionary: dict | None = None, *, comment_symbol: str = '#', split_symbol: str = '|', tag_separate_symbol: str = ',')[source]

Bases: BaseClass

This load data from .txt file

Content format: <content><split_symbol><tags separated by <tag_separate_symbol>>

content_format() str[source]

Shows current content format

Returns:

Current content format

Return type:

str

Example:

>>> ContentLoader(".").content_format()
# This line will be ignored
<content> | <tag1>, <tag2>
load() list[source]

Load content from self.file

Returns:

List of content

Return type:

list

load_content() LoadedContent[source]

Load data into a list of Content

Returns:

Loaded content

Return type:

LoadedContent

class absfuyu.general.content.Content(data: list)[source]

Bases: BaseClass

Contain data

Data format: list[str, list[str]]

where: str: data; list[str]: data tags

unidecoded() Self[source]

Convert data through unidecode package

Returns:

unidecoded Content

Return type:

Content

to_text() str[source]

Convert back into text

Returns:

Text

Return type:

str

short_form(separator: str = ',') str[source]

Short form show only first item when separated by separator

Parameters:

separator (str) – Default: ","

Returns:

Short form

Return type:

str

handle_address(address_separator: str = ',', *, first_item_not_address: bool = True) Self[source]

Handle self.data as address and then update the address into self.tag

Parameters:
  • address_separator (str) –

    Split the address by which character
    (Default: ",")

  • first_item_not_address (bool) – Set to False when <splited data>[0] is not part of an address

Returns:

Handled Content

Return type:

Content

Example:

>>> test = "Shop A, 22 ABC Street, DEF District, GHI City"
>>> # After handle_address()
["Shop A", "22 ABC Street", "DEF District", "GHI City"]
>>> # After handle_address(first_item_not_address = False)
["22 ABC Street", "DEF District", "GHI City"]
class absfuyu.general.content.LoadedContent(iterable=(), /)[source]

Bases: list[Content], ShowAllMethodsMixin

Contain list of Content

apply(func) Self[source]

Apply function to each entry

Parameters:

func (Callable) – Callable function

Return type:

LoadedContent

classmethod load_from_json(file: Path) Self[source]

Use this method to load data from .json file from to_json() method

Parameters:

file (Path) – Path to .json file

Returns:

Loaded content from .json file

Return type:

LoadedContent

property tags: list

A list contains all available tag

tag_count() Counter[source]

Count number of tags

Return type:

Counter

filter(tag: str) Self[source]

Filter out entry with tag

Parameters:

tag (str) – Tag to filter

Return type:

LoadedContent

find(keyword: str) Self[source]

Return all entries that include keyword

Parameters:

keyword (str) – Keyword to find

Return type:

LoadedContent

short_form(separator: str = ',') list[str][source]

Shows only first item when separated by separator of Content.data

Parameters:

separator (str) – Default: ","

Returns:

Short form

Return type:

list[str]

pick_one(tag: str | None = None) Content[source]

Pick a random entry

Parameters:

tag (str | None) – Pick a random entry with tag (Default: None)

Returns:

Random entry

Return type:

Content

handle_address(address_separator: str = ',', *, first_item_not_address: bool = True) Self[source]

Execute Content.handle_address() on every self.data of Content

Parameters:
  • address_separator (str) –

    Split the address by which character
    (Default: ",")

  • first_item_not_address (bool) – Set to False when <splited data>[0] is not part of an address

Returns:

Handled Content

Return type:

LoadedContent

Example:

>>> test = "Shop A, 22 ABC Street, DEF District, GHI City"
>>> # After handle_address()
["Shop A", "22 ABC Street", "DEF District", "GHI City"]
>>> # After handle_address(first_item_not_address = False)
["22 ABC Street", "DEF District", "GHI City"]
to_json(no_accent: bool = False) str[source]

Convert data into .json file

Parameters:

no_accent (bool) –

when True: convert the data through unidecode package
(Default: False)

Returns:

Data

Return type:

str

to_text(no_accent: bool = False) str[source]

Convert data into .txt file

Parameters:

no_accent (bool) –

when True: convert the data through unidecode package
(Default: False)

Returns:

Data

Return type:

str