Dataset Viewer
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
Public terminal recordings from asciinema.org
Total 79329 recordings.
Due to restrictions, converted GIF images are uploaded to Kaggle Dataset:
You can convert asciicast recordings into GIF using agg
Scraper code: https://github.com/James4Ever0/agi_computer_control/blob/master/scrape_asciinema_terminal_recordings
File structure:
./recordings.7z
|_ ./recordings
|_ <asciinema_public_record_id>
|_ record.<cast|json> // v2 and v3 uses .cast, v1 uses .json
|_ info.json // recording metadata
info.json pydantic schema:
from pydantic import BaseModel
from datetime import datetime
class AsciinemaPublicRecordMetadata(BaseModel):
href: str # "/a/<public_record_id>", full links is "https://asciinema.org%" href
title: str
duration: str # format: HH:MM:SS or MM:SS
author: str
submit_time: datetime
description: str
asciicast_version: str # "v1" or "v2" or "v3"
asciicast_file_extension_name: str # either ".json" or ".cast"
- Downloads last month
- 19