--- license: mit dataset_info: features: - name: url dtype: string - name: edition dtype: int64 - name: authors sequence: string - name: champions sequence: string - name: description dtype: string - name: id dtype: string - name: rationale dtype: string - name: name dtype: string - name: has-specification dtype: bool - name: notes list: - name: date dtype: string - name: url dtype: string - name: pushed_at dtype: string - name: stage dtype: int64 - name: tags sequence: string splits: - name: train num_bytes: 117768.0 num_examples: 201 - name: test num_bytes: 39256.0 num_examples: 67 download_size: 66630 dataset_size: 157024.0 configs: - config_name: default data_files: - split: train path: data/train-* - split: test path: data/test-* --- # Usage: ```python from datasets import load_dataset proposals = load_dataset("gnumanth/tc39", split="train") ``` ```python print(proposals[0]) { 'url': 'https://github.com/tc39/proposal-array-is-template-object', 'edition': None, 'authors': ['Mike Samuel', 'Krzysztof Kotowicz'], 'champions': ['Krzysztof Kotowicz'], 'description': 'TC39 proposal to identify template strings', 'id': 'proposal-array-is-template-object', 'rationale': None, 'name': 'Array.isTemplateObject', 'has-specification': True, 'notes': [{'date': '2019-12-04T00:00:00.000Z', 'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md#arrayistemplateobject-update'}, {'date': '2019-12-04T00:00:00.000Z', 'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md'}, {'date': '2021-01-25T00:00:00.000Z', 'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2021-01/jan-25.md'}], 'pushed_at': '2021-01-25T20:25:40.000Z', 'stage': 2, 'tags': ['ECMA-262'] } ```