Metadata-Version: 2.1
Name: unisci
Version: 1.2.0
Summary: Units Conversions, and Science Package
Author: Vivaan Singhvi
Author-email: singhvi.vivaan@gmail.com
License: MIT
Project-URL: Documentation, https://unisci.readthedocs.io/en/latest/
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# UniSci
A module to perform unit conversions for almost any scientific topic! This package is available on PyPI [here](https://pypi.org/project/unisci/).

## Why Use This?
Short for "Unit Science", UniSci is primarilty focused on being able to use any unit and easily convert it to another. It supports automatic conversions for formulas, condensation of complex units like `kg-m/s²` to `N`, and more!

## Installation 
To install, simply run the following:
```
$ pip install unisci
```

Then, you can use it as you please!
```python
>>> from unisci import Quantity
>>> length = Quantity(1, {'m': 1})
>>> print(length.converted(['ft']))
3.281*10⁰ ft
```

## Use Cases
See some use cases in the `use_cases.ipynb` notebook, [here](https://github.com/vivaansinghvi07/conversions/blob/main/use_cases.ipynb).

## Documentation
Full documentation can be found on the [readthedocs](https://unisci.readthedocs.io/en/latest/index.html) site for the module.

## Contribution
For adding conversions, formulas, or more, pull requests are greatly appreciated. Feel free to message me on my email singhvi.vivaan@gmail.com if you have any concerns!

## License
This project is released under the MIT license.
