{"id":28378395,"url":"https://github.com/mbrell/system-profiler","last_synced_at":"2025-08-29T03:43:04.738Z","repository":{"id":288620917,"uuid":"968699701","full_name":"mbrell/system-profiler","owner":"mbrell","description":"Easy to use system profiler tool.","archived":false,"fork":false,"pushed_at":"2025-06-26T07:33:12.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T08:35:57.509Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mbrell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-18T15:09:20.000Z","updated_at":"2025-06-26T07:33:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"7655099f-d0e3-4490-ab6c-def1d599eeb7","html_url":"https://github.com/mbrell/system-profiler","commit_stats":null,"previous_names":["ufuayk/system-profiler"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mbrell/system-profiler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrell%2Fsystem-profiler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrell%2Fsystem-profiler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrell%2Fsystem-profiler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrell%2Fsystem-profiler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbrell","download_url":"https://codeload.github.com/mbrell/system-profiler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbrell%2Fsystem-profiler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272620249,"owners_count":24965509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-29T02:00:10.610Z","response_time":87,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-30T02:06:26.042Z","updated_at":"2025-08-29T03:43:04.720Z","avatar_url":"https://github.com/mbrell.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# System Profiler\n\nA tool for collecting detailed system information on Linux systems.\n\n## Installation\n\n```bash\ngit clone https://github.com/mbrell/system-profiler\n```\n\n```bash\ncd system-profiler\n```\n\n```bash\npip install -r requirements.txt\n```\n\n```bash\npython3 main.py\n```\n\nThe script saves all system information to `system_profile.json` in the current directory.\n\n## Empty Profile\n\n```json\n{\n    \"os_info\": {\n        \"hostname\": \"\",\n        \"platform\": \"\",\n        \"platform-release\": \"\",\n        \"platform-version\": \"\",\n        \"architecture\": \"\",\n        \"kernel\": \"\",\n        \"distro\": \"\",\n        \"uptime\": \"\",\n        \"boot_time\": \"\"\n    },\n    \"cpu_info\": {\n        \"physical_cores\": 0,\n        \"total_cores\": 0,\n        \"max_frequency_mhz\": 0.0,\n        \"min_frequency_mhz\": 0.0,\n        \"current_frequency_mhz\": 0.0,\n        \"cpu_usage_per_core\": [],\n        \"total_cpu_usage\": 0.0\n    },\n    \"memory_info\": {\n        \"total_ram\": 0,\n        \"available_ram\": 0,\n        \"used_ram\": 0,\n        \"ram_percent\": 0.0,\n        \"total_swap\": 0,\n        \"used_swap\": 0,\n        \"swap_percent\": 0.0\n    },\n    \"disk_info\": [\n        {\n            \"device\": \"\",\n            \"mountpoint\": \"\",\n            \"fstype\": \"\",\n            \"total\": 0,\n            \"used\": 0,\n            \"free\": 0,\n            \"percent\": 0.0\n        }\n    ],\n    \"network_info\": {\n        \"eth0\": {\n            \"mac\": \"\",\n            \"ipv4\": \"\",\n            \"ipv6\": \"\"\n        },\n        \"default_gateway\": \"\"\n    },\n    \"user_info\": {\n        \"current_user\": \"\",\n        \"uid\": 0,\n        \"gid\": 0,\n        \"home\": \"\",\n        \"shell\": \"\"\n    },\n    \"load_info\": {\n        \"load_1min\": 0.0,\n        \"load_5min\": 0.0,\n        \"load_15min\": 0.0,\n        \"process_count\": 0\n    },\n    \"serial_number\": \"\",\n    \"time_info\": {\n        \"system_time\": \"\",\n        \"timezone\": [\"\", \"\"]\n    },\n    \"installed_packages\": []\n}\n```\n\n## Note\n\nSome functions (etc: the serial number) may require root.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbrell%2Fsystem-profiler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbrell%2Fsystem-profiler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbrell%2Fsystem-profiler/lists"}