Metadata-Version: 2.4
Name: eevalue
Version: 2.1.0
Summary: A package that easily lets you find nearest E-series values and printing values with Si prefixes.
Home-page: https://github.com/Duckle29/EEValue
Author: Mikkel Jeppesen
Author-email: mikkel+pypi@mikkel.cc
Project-URL: Bug Tracker, https://github.com/Duckle29/EEvalue/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# EEValues
[![Test and package](https://github.com/Duckle29/EEValue/actions/workflows/python-package.yml/badge.svg)](https://github.com/Duckle29/EEValue/actions/workflows/python-package.yml)
A simple class for dealing with engieering values

Will print with Si prefix, and has an easy method to get the closest E-series value.

```python
>>> from eevalue import EEValue as EEV
>>> R = EEV(18.91)
>>> str(R.E(48, "ceil"))
19.60
>>> str(EEV(17950.10).E(192,"floor"))
17.80 k
>>> str(EEV('2u2') * 2)
4.40 µ
>>> str(EEV('2K1234', precision=4) * 2)
4.2468 k
```

