Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "your_email@example.com"
| def extract_attributes(data): | |
| attributes = [] | |
| if isinstance(data, dict): | |
| for key, value in data.items(): | |
| if key == 'attribute': | |
| attributes.append((value,data.get('value'))) | |
| elif key == 'arguments': | |
| for argument in value: | |
| attributes.extend(extract_attributes(argument)) |