()
| 101 | |
| 102 | |
| 103 | def get_os_details(): |
| 104 | try: |
| 105 | return { |
| 106 | "Hostname": socket.gethostname(), |
| 107 | "OS": platform.system(), |
| 108 | "OS Version": platform.version(), |
| 109 | "OS Release": platform.release(), |
| 110 | } |
| 111 | except: |
| 112 | return {} |
| 113 | |
| 114 | |
| 115 | def get_cpu_details(): |
no outgoing calls
no test coverage detected
searching dependent graphs…