GetFromFile
This module contains functions for reading manga data from a CSV file, getting the difference between the current and previous file, getting the manga names and their details, and printing the manga found in the CSV file.
Get_File_Diff
¶
Gets the difference between the current and previous file.
This function reads the current file and checks if there is a previous file. If there is a previous file, it reads it. If the file is not found, it prints an error message.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[DataFrame, None]
|
None |
Source code in AnilistMangaUpdater/Utils/GetFromFile.py
Get_Manga_Names
¶
Gets the manga names from a file and stores them in a dictionary.
This function gets the difference between the current and previous file, iterates through each row in the file, and gets the title, last chapter read, status, and last read at from the row. It then gets the alternative title and adds it and its details to the manga_names_chapters dictionary.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object.
TYPE:
|
alt_titles_dict
|
A dictionary where keys are manga names and
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None |
Source code in AnilistMangaUpdater/Utils/GetFromFile.py
Manga_Found_In_CSV
¶
Prints the manga found in the CSV file.
This function gets the manga with the last chapter from the CSV file and prints the title, last chapter read, and last read at for each manga.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Utils/GetFromFile.py
get_alternative_title
¶
Gets the alternative title of a manga.
This function checks if a manga title is in a dictionary of alternative titles. If it is, it returns the alternative title. If it's not, it returns the original title.
PARAMETER | DESCRIPTION |
---|---|
title
|
The title of the manga.
TYPE:
|
alt_titles_dict
|
A dictionary of alternative titles.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The alternative title if it exists, otherwise the original title.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/GetFromFile.py
process_manga_details
¶
Process the details of a manga.
Args: title (str): The title of the manga. details (dict): A dictionary containing details about the manga.
Returns: str: A formatted string containing the processed information.