Metadata-Version: 2.2
Name: pyFileSizeUtils
Version: 0.0.2
Summary: File size utils contains method for conversion between size unit like byte, kilobyte, megabyte...
Home-page: https://github.com/xh-dev/pyFileSizeUtils
Author: xethhung
Author-email: pypi@xethh.dev
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: pytest>=3.7; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: summary

# File Size Utils

A library provide function converting file size or memory size between different unit byte, kilo byte, mega byte...

# Installation

```
pip install pyFileSizeUtils
```

# Demo

```python
import pyFileSizeUtils 
```

```python
from pyFileSizeUtils import BinarySize,SizeUnit

oneMB = BinarySize.ofMBFromInt(1).inByte()
print(oneKB.inByte()) # 1024


```
