Print the name banner, version, credits and the startup joke. Shown at the start of every scan. The verbose ``[*]`` progress lines that follow are gated by --debug.
()
| 122 | os.close(devnull_fd) |
| 123 | |
| 124 | |
| 125 | def _get_version() -> str: |
| 126 | try: |
| 127 | return _pkg_version("pyspector") |
| 128 | except PackageNotFoundError: |
| 129 | return "unknown" |
| 130 | |
| 131 | |
| 132 | def _print_banner() -> None: |
| 133 | """Print the name banner, version, credits and the startup joke. |
| 134 | |
| 135 | Shown at the start of every scan. The verbose ``[*]`` progress lines that |
| 136 | follow are gated by --debug. |
| 137 | """ |
no test coverage detected