pyparted
pyparted copied to clipboard
Python bindings for GNU parted (libparted)
Pipy release
Is there a reason as to why the newest pyparted version was not pushed to pypi?
According to [the explanation at gnu.org](https://www.gnu.org/licenses/quick-guide-gplv3.html), GPL version can only increase, but never go lower. Also, if you are binding to the GPL project, your work is derivative, therefore should...
I am trying to use pyparted to automatically format and mount a MicroSD card when it is inserted into an embedded linux system. I basically copied the `make_one_primary_partition.py` example script,...
Hi, how can i distinguish if disk type is an hard disk or a cd/dvd? Is there any flag?
If I use a loop device as the disk when `getPedDevice()`, for example running the following code reliably has issues. ```python # Create a disk image then attach it to...
In the past there have been problems with pyparted not including all of the partition flags from libparted due to it's use of enums in the _LAST macros. These were...
Not so much 'fixes for Ubuntu' as 'fixes I found I needed when I tried to compile on Ubuntu'. Nothing here changes behaviour, though one change is a change to...
I have a device with model name `b"MMC H8G4a\x92"`, this is an 8GB Hynix eMMC module on a Dell/Wyse 3040 thin client. https://github.com/dcantrell/pyparted/blob/96213843607faa3919b7a7fdd0b6194e9687a23d/src/parted/device.py#L78 This raises `UnicodeDecodeError: 'utf-8' codec can't decode...
I've been asked to update an install script that I had written a couple of years to check that it still works correctly under the new(ish) version of Debian. On...
This seems to break, at least in python 3.7. I get `AttributeError: can't set attribute`: ```python3 Python 3.7.4 (default, Jul 16 2019, 07:12:58) [GCC 9.1.0] on linux Type "help", "copyright",...