(debian_installer_url, temp_filename)
| 493 | return os.path.basename(urlparse(url).path.rstrip("/")) |
| 494 | |
| 495 | def wget(debian_installer_url, temp_filename): |
| 496 | subprocess.run(["wget", "-O", temp_filename, debian_installer_url], |
| 497 | check=True, stderr=subprocess.STDOUT) |
| 498 | |
| 499 | def get_package_name_from_debian_url(debian_installer_url): |
| 500 | """ |
no outgoing calls
no test coverage detected