Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Jan 2, 2025
1 parent 856b234 commit 78acb67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ and memory profiles without using any external dependencies.

> Although this project does not rely on external dependencies, it does use system tools, as outlined below.
| Datatype / Override key | Linux | Darwin (macOS) | Windows |
|-------------------------|------------------|-----------------------------|------------------------------------------|
| **CPU** - `cpu_lib` | `/proc/cpuinfo` | `/usr/sbin/sysctl` | `C:\Windows\System32\wbem\wmic.exe` |
| **PCI** - `gpu_lib` | `/usr/bin/lspci` | `/usr/sbin/system_profiler` | `C:\Windows\System32\wbem\wmic.exe` |
| **Memory** - `mem_lib` | `/proc/meminfo` | `/usr/sbin/sysctl` | N/A |
| **Disk** - `disk_lib` | `/usr/bin/lsblk` | `/usr/sbin/diskutil` | `C:\Program Files\PowerShell\7\pwsh.exe` |
| Library / Override | Linux | Darwin (macOS) | Windows |
|--------------------------|------------------|-----------------------------|------------------------------------------|
| **CPU**<br/>`cpu_lib` | `/proc/cpuinfo` | `/usr/sbin/sysctl` | `C:\Windows\System32\wbem\wmic.exe` |
| **PCI**<br/>`gpu_lib` | `/usr/bin/lspci` | `/usr/sbin/system_profiler` | `C:\Windows\System32\wbem\wmic.exe` |
| **Memory**<br/>`mem_lib` | `/proc/meminfo` | `/usr/sbin/sysctl` | N/A |
| **Disk**<br/>`disk_lib` | `/usr/bin/lsblk` | `/usr/sbin/diskutil` | `C:\Program Files\PowerShell\7\pwsh.exe` |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion pyarchitecture/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from pyarchitecture import cpu, disks, gpu, memory

version = "0.1.1a0"
version = "0.1.1a1"


def all_components() -> Dict[str, Any]:
Expand Down

0 comments on commit 78acb67

Please sign in to comment.