An open API service indexing awesome lists of open source software.

https://github.com/jrd/pyreadpartitions

Read MBR and GPT partitions in python directly.
https://github.com/jrd/pyreadpartitions

disk gpt mbr

Last synced: 4 months ago
JSON representation

Read MBR and GPT partitions in python directly.

Awesome Lists containing this project

README

          

pyreadpartitions
================

Read MBR and GPT partitions directly in python.

Examples:

```python
from pyreadpartitions import get_disk_partitions_info
with open('/dev/sda', 'rb') as fp:
info = get_disk_partitions_info(fp)
print(info.mbr)
print(info.gpt)
```

```python
from pyreadpartitions import show_disk_partitions_info
with open('/dev/sda', 'rb') as fp:
show_disk_partitions_info(fp)
```

A console script is also available:

```sh
$ sudo cat /dev/sda | pyreadpartitions
```

or if you already have access to a file or directly to the disk:

```sh
# pyreadpartitions /dev/sda
```