Ubuntu Pastebin

Paste from Chad Smith at Fri, 22 Sep 2017 19:28:41 +0000

Download as text
1
2
3
4
5
6
7
8
csmith@uptown:~$ cat 3.yaml 
repos:
- id: 1
  name: myone
- id: 2
  name: mytwo
csmith@uptown:~$ python -c 'import yaml; print(yaml.load(open("3.yaml")));'
{'repos': [{'id': 1, 'name': 'myone'}, {'id': 2, 'name': 'mytwo'}]}
Download as text