--- license: mit --- # Animals Dataset This dataset contains information about various animals. ## File - `animals.jsonl` ## Columns / Fields - `id` – unique identifier - `name` – common name of the animal - `species` – scientific name - `habitat` – natural habitat - `diet` – dietary type ## Usage Load in Python: ```python import json animals = [] with open("animals.jsonl", "r") as f: for line in f: animals.append(json.loads(line)) print(animals[:5])