(url, retry=True)
| 9 | fout = open('README.md','w', encoding='utf-8') |
| 10 | fout.write("# Awesome React Native UI Components\n"); |
| 11 | def curl(url, retry=True): |
| 12 | try: |
| 13 | return urllib.request.urlopen(url).read().decode(encoding='utf-8') |
| 14 | except Exception as e: |
| 15 | print(url) |
| 16 | print(e) |
| 17 | |
| 18 | |
| 19 | def getRank(image): |
no outgoing calls
no test coverage detected