chore: more info
Browse files
README.md
CHANGED
@@ -49,3 +49,35 @@ configs:
|
|
49 |
- split: test
|
50 |
path: data/test-*
|
51 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
- split: test
|
50 |
path: data/test-*
|
51 |
---
|
52 |
+
|
53 |
+
|
54 |
+
# Usage:
|
55 |
+
|
56 |
+
```python
|
57 |
+
from datasets import load_dataset
|
58 |
+
proposals = load_dataset("gnumanth/tc39", split="train")
|
59 |
+
```
|
60 |
+
|
61 |
+
```python
|
62 |
+
print(proposals[0])
|
63 |
+
|
64 |
+
account_circle
|
65 |
+
{'url': 'https://github.com/tc39/proposal-array-is-template-object',
|
66 |
+
'edition': None,
|
67 |
+
'authors': ['Mike Samuel', 'Krzysztof Kotowicz'],
|
68 |
+
'champions': ['Krzysztof Kotowicz'],
|
69 |
+
'description': 'TC39 proposal to identify template strings',
|
70 |
+
'id': 'proposal-array-is-template-object',
|
71 |
+
'rationale': None,
|
72 |
+
'name': 'Array.isTemplateObject',
|
73 |
+
'has-specification': True,
|
74 |
+
'notes': [{'date': '2019-12-04T00:00:00.000Z',
|
75 |
+
'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md#arrayistemplateobject-update'},
|
76 |
+
{'date': '2019-12-04T00:00:00.000Z',
|
77 |
+
'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-4.md'},
|
78 |
+
{'date': '2021-01-25T00:00:00.000Z',
|
79 |
+
'url': 'https://github.com/tc39/notes/blob/HEAD/meetings/2021-01/jan-25.md'}],
|
80 |
+
'pushed_at': '2021-01-25T20:25:40.000Z',
|
81 |
+
'stage': 2,
|
82 |
+
'tags': ['ECMA-262']}
|
83 |
+
```
|