Manga, Manhwa And Manhua Dataset
A Dataset of Manga, Manhwa and Manhua on Anime-Planet Website
@kaggle.victorsoeiro_manga_manhwa_and_manhua_dataset
A Dataset of Manga, Manhwa and Manhua on Anime-Planet Website
@kaggle.victorsoeiro_manga_manhwa_and_manhua_dataset
The dataset contains +70k unique manga, manhwa, and manhua with 6 columns containing general information. With the increasing popularity of comics over the last decades, I thought this dataset could be useful for EDA and Recommender Systems.
The Anime-Planet website uses a system page to show all items in the database. Each row of the database represents a distinct manga, such as Solo Leveling or One Piece. The columns contain the main information of the mangas, like the title, rating, description, released year, tags, and image cover.
The code and explanations on how the code was scraped are available on a repository on GitHub.
This dataset is only possible because of Anime-Planet Website. and its amazing amount of information.
CREATE TABLE data (
"title" VARCHAR,
"description" VARCHAR,
"rating" DOUBLE,
"year" DOUBLE,
"tags" VARCHAR,
"cover" VARCHAR
);Anyone who has the link will be able to view this.