The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    DataFilesNotFoundError
Message:      No (supported) data files found in GriddleDean/mangaupdates
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 66, in compute_config_names_response
                  config_names = get_dataset_config_names(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 347, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1873, in dataset_module_factory
                  raise e1 from None
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1854, in dataset_module_factory
                  return HubDatasetModuleFactoryWithoutScript(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1245, in get_module
                  module_name, default_builder_kwargs = infer_module_for_data_files(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 595, in infer_module_for_data_files
                  raise DataFilesNotFoundError("No (supported) data files found" + (f" in {path}" if path else ""))
              datasets.exceptions.DataFilesNotFoundError: No (supported) data files found in GriddleDean/mangaupdates

Need help to make the dataset viewer work? Open a discussion for direct support.

I scraped mangaupdates for a project and i am sharing the data. There is a tar file which contians the json response from every infos entry. I parsed it and added it to a postgres database. The pgdump was uploaded too. There are some entries that do not exist anymore. It can be found in the removed ids json.

SQL structure I didnt try to make it a optimal strucure, but i tried to remove the redundancy of strings.

Info

 create table info
 (
   id                 serial primary key,
   private_id         int,
   public_id          bigint    not null,
   forum_id           bigint    not null,
   url_key            text      not null,
   url_name           text,
   titles             text[] not null,
   description        text,
   image_name         text,
   typ                int       not null,
   year               int,
   latest_chapter     integer   not null,
   rating             integer   not null,
   bayesian_rating    float,
   genres             int[] not null,
   tags               int[] not null,
   tags_upvotes       int[] not null,
   tags_downvotes     int[] not null,
   tags_uploader      bigint[] not null,
   status             text,
   licensed           boolean   not null,
   completed          boolean   not null,
   author             int[] not null,
   artist             int[] not null,
   publisher_original int[] not null,
   publisher_english  int[] not null,
   publication  text[] not null,
   publication_publisher  int[] not null,
   relations       text[] not null,
   anime_start text,
   anime_end text,
   last_updated_mu    TIMESTAMP,
   last_updated       TIMESTAMP not null,
   created            TIMESTAMP not null
 );

Types

create table if not exists mtypes
(
   id   serial primary key,
   name text not null
);

Genres

create table if not exists genres
(
   id   serial primary key,
   name text not null
);

Tags

create table if not exists tags
(
   id   serial primary key,
   name text not null
);

People

create table if not exists ppl
(
   id    serial primary key,
   mu_id bigint,
   name  text not null
);
Downloads last month
0
Edit dataset card