MangaSearch
This module contains the MangaSearch class which is used to search for a manga on Anilist.
MangaSearch
¶
MangaSearch(name: str, last_chapter_read: Union[int, None], app: object, max_retries: int = 3, delay: float = 60)
A class used to search for a manga on Anilist.
ATTRIBUTE | DESCRIPTION |
---|---|
name |
The name of the manga to search for.
TYPE:
|
last_chapter_read |
The last chapter read of the manga.
TYPE:
|
app |
The application object used to update the terminal and progress.
TYPE:
|
max_retries |
The maximum number of retries. Defaults to 5.
TYPE:
|
delay |
The delay between retries in seconds. Defaults to 15.
TYPE:
|
retry_count |
The current number of retries.
TYPE:
|
matches |
The list of matches from the search results.
TYPE:
|
id_list |
The list of IDs for the matches.
TYPE:
|
METHOD | DESCRIPTION |
---|---|
search_manga |
Searches for the manga on Anilist. |
process_manga_item |
Processes a manga item from the search results. |
process_title |
Processes the title by replacing certain characters. |
_check_title_match |
Checks if the title matches the name. |
get_id_list |
Gets the list of IDs from the matches. |
print_details |
Prints the details of the matches. |
handle_no_ids_found |
Handles the case where no IDs are found. |
handle_server_error |
Handles server errors. |
get_manga_id |
Retrieves the ID of the manga. |
PARAMETER | DESCRIPTION |
---|---|
name
|
The name of the manga to search for.
TYPE:
|
last_chapter_read
|
The last chapter read of the manga.
TYPE:
|
app
|
The application object used to update the terminal and progress.
TYPE:
|
max_retries
|
The maximum number of retries. Defaults to 5.
TYPE:
|
delay
|
The delay between retries in seconds. Defaults to 15.
TYPE:
|
retry_count
|
The current number of retries.
TYPE:
|
matches
|
The list of matches from the search results.
TYPE:
|
id_list
|
The list of IDs for the matches.
TYPE:
|
cache
|
The cache object used to store the manga data.
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
get_id_list
¶
Gets the list of IDs from the matches.
This method sorts the matches by the match score in descending order. Then it gets the list of IDs for the matches with a positive match score.
Source code in AnilistMangaUpdater/Manga/manga_search.py
get_manga_id
¶
Gets the ID of the manga.
RETURNS | DESCRIPTION |
---|---|
list
|
A list of manga IDs.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
handle_no_ids_found
¶
Handles the case where no IDs are found.
This method prints a message and adds the name and the last chapter read to the list of manga not found if no IDs are found.
Source code in AnilistMangaUpdater/Manga/manga_search.py
handle_search_errors
¶
Handles errors that occur during the search.
PARAMETER | DESCRIPTION |
---|---|
error
|
The error that occurred.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
handle_server_error
¶
Handles server errors.
This method checks if the error is a "Too Many Requests" error. If so, it waits for a delay and increments the retry count. If the error is not a "Too Many Requests" error, it prints an error message.
PARAMETER | DESCRIPTION |
---|---|
e
|
The server error to handle.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
print_details
¶
Prints the details of the matches.
This method prints the list of IDs, the romaji title, the English title, and the Anilist URL for the matches with a positive match score.
Source code in AnilistMangaUpdater/Manga/manga_search.py
process_manga_item
¶
Processes a manga item from the search results.
This method gets the English and Romaji titles and the synonyms from the manga item. It processes them and checks if they match the name. If they do, it adds the manga item to the matches.
PARAMETER | DESCRIPTION |
---|---|
manga_item
|
The manga item to process.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
process_title
staticmethod
¶
Processes the title by replacing certain characters.
PARAMETER | DESCRIPTION |
---|---|
title
|
The title to process.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The processed title.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
search_and_process_manga
¶
Searches for a manga and processes the search results.
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the search was successful, False otherwise.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
search_manga
¶
Searches for the manga on Anilist.
RETURNS | DESCRIPTION |
---|---|
list
|
A list of manga items from the search results. Returns None if an error occurs. |
Source code in AnilistMangaUpdater/Manga/manga_search.py
check_title_match
¶
Checks if all words in the search name are in the title.
This function removes punctuation from the title and the search name, splits them into words, and checks if all words in the search name are in the title.
PARAMETER | DESCRIPTION |
---|---|
title
|
The title to check.
TYPE:
|
name
|
The search name.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if all words in the search name are in the title, False otherwise.
TYPE:
|
Source code in AnilistMangaUpdater/Manga/manga_search.py
return_no_manga_found
¶
Returns the list of manga not found.
RETURNS | DESCRIPTION |
---|---|
list
|
A list of tuples containing the name and the last chapter read of the manga not found.
TYPE:
|