WriteToFile
This module contains functions to manage and write data to files.
It includes functions to save and retrieve alternative titles of manga, manage files in a directory, write names of not found manga and manga with multiple IDs to files, and write the number of chapters updated to a file.
Get_Alt_Titles_From_File
¶
Retrieves alternative titles from a file.
This function checks if the file 'alternative_titles.json' exists in the specified directory. If it does, it opens the file and loads the dictionary from it. If the file does not exist, it saves the alternative titles to the file and then opens it to load the dictionary.
PARAMETER | DESCRIPTION |
---|---|
alternative_titles_dict
|
A dictionary of alternative titles.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
The dictionary of alternative titles loaded from the file.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
Save_Alt_Titles_To_File
¶
Saves alternative titles to a file.
PARAMETER | DESCRIPTION |
---|---|
alternative_titles_dict
|
A dictionary of alternative titles.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
create_directory_and_get_timestamp
¶
Checks if the given directory exists, creates it if it doesn't, and then returns the current timestamp.
PARAMETER | DESCRIPTION |
---|---|
dir_path
|
The path of the directory to check or create.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The current timestamp in the format "YYYY-MM-DD_HH-MM-SS".
TYPE:
|
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
create_directory_if_not_exists
¶
Checks if the given directory exists, creates it if it doesn't.
PARAMETER | DESCRIPTION |
---|---|
dir_path
|
The path of the directory to check or create.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
formatter_multiple_ids
¶
Formats manga names with multiple IDs for writing to a file.
PARAMETER | DESCRIPTION |
---|---|
multiple_id_manga_names
|
A dictionary where keys are manga names and
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list
|
A list of strings formatted for writing to a file.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
formatter_not_found
¶
Formats not found manga names for writing to a file.
PARAMETER | DESCRIPTION |
---|---|
not_found_manga_names
|
A list of tuples, where each tuple contains a
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list
|
A list of strings formatted for writing to a file.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
manage_files
¶
Manages files in a directory by deleting the oldest file if there are more than 5.
This function gets a list of all files of the specified type in the directory, sorted by modification time. If there are more than 5 files, it deletes the oldest file.
PARAMETER | DESCRIPTION |
---|---|
dir_path
|
The directory where the files are located.
TYPE:
|
file_type
|
The type of the files to manage.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
write_chapters_updated_to_file
¶
Appends data to a chapters updated file.
PARAMETER | DESCRIPTION |
---|---|
filename
|
The name of the file to append to.
TYPE:
|
data
|
The number of updated chapters.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
Source code in AnilistMangaUpdater/Utils/WriteToFile.py
write_to_file
¶
Writes data to a file.
PARAMETER | DESCRIPTION |
---|---|
filename
|
The name of the file to write to.
TYPE:
|
data
|
The data to write to the file.
TYPE:
|
formatter
|
A function that formats the data into a string.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |