Metadata-Version: 2.1
Name: eevalue
Version: 1.5.3
Summary: A package that easilly 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
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Duckle29/EEvalue/issues
Platform: UNKNOWN
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

# 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)
>>> R.E(48, "ceil")
19.6
>>> EEV(17950.10).E(192,"floor")
17.8 k
```



