Metadata-Version: 2.1
Name: unit-convert
Version: 1.0.0
Summary: Easy way of converting units.
Home-page: https://github.com/Peter92/unit-convert
Author: Peter Hunt
Author-email: peterh@blue-zoo.co.uk
License: MIT
Download-URL: https://github.com/Peter92/unit-convert/archive/1.0.0.tar.gz
Project-URL: Source, https://github.com/Peter92/unit-convert
Project-URL: Issues, https://github.com/Peter92/unit-convert/issues
Description: # unit-convert
        Easily convert units to different quantities.
        
        For conveniance, abbreviations are accepted, where an attempt will be made to calculate the type based on the other inputs (eg. "m" can evaluate as either "minute" or "metre").
        
        ## Example Usage
        ```python
        >>> from unit_convert import UnitConvert
        
        # Yards + kilometres to miles
        >>> UnitConvert(yards=136.23, kilometres=60).miles
        37.3597678005
        
        # Bytes to terabytes
        >>> UnitConvert(b=19849347813875).tb
        18.0528766704
        
        # Nanometres to metres
        >>> UnitConvert(nanometres=19849347813875).m
        19849.3478139
        ```
        
        Data, time, distance and mass are currently supported.
        
Keywords: unit,convert,conversion
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.5
Description-Content-Type: text/markdown
