bitmath
bitmath copied to clipboard
Python module for representing file sizes with different prefix notations
This week I updated a lot of the community docs/pages. I need to update the readme and the docs site with clear links to the new items * Ensure the...
From @kapsh in #61 > What do you think about adding precision argument to best_prefix method as shortcut for most commonly required operation? This is a good idea. I also...
I began testing out adding support for the `ZiB`, `YiB`, `Zib`, and `Yib` units while working on #53. This broke the (new) unit tests immediately and in a non-obvious way....
A follow-up to issue #51, implement disk capacity support for Windows systems. Reference material: - https://stackoverflow.com/questions/1422368/fcntl-substitute-on-windows
Directories are like files.... kinda... listdir should return tuples for those too. Questions: - Return the size of the symbolic link to a directory or - Return the size of...
DESCRIPTION of the request - Make something like `sum()` but it must actually work for bitmath objects ---- Passing an array of bitmath objects into the built-in `sum()` function has...
In the 2.0 update bug #99, it was brought up that `parse_string_unsafe` can have negative side effects > Using an "unsafe" function will be flagged in every code review and...
2.0.0 is coming and it will be python 3 only. Keep up with progress on this [branch](https://github.com/tbielawa/bitmath/tree/2023-01-26-no-more-py2) as I work up to the release. Watch the news file for specifics....
**DESCRIPTION** Currently, all of the documentation refers to the 'print ' built-in of python 2.7 days. It should be updated to be the `print()` statement. While the code itself (as...
### Expected behaviour I was expecting _parse_string_unsafe()_ to parse all of the following units, but at the very least the ones that _parse_string()_ can parse: - b - bit -...