This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import requests | |
| from ruamel import yaml | |
| import sys | |
| versions = ["4.12", "4.13", "4.14", "4.15", | |
| "4.16", "4.17", "4.18", "4.19", "4.20", "4.21"] | |
| yml = yaml.YAML(typ='safe', pure=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import requests | |
| from ruamel import yaml | |
| import sys | |
| versions = ["4.10", "4.11", "4.12", "4.13", "4.14"] | |
| def get_data(): |
OlderNewer