an unit converter based on graph network and classes to operate with units.
Project description
unyts
I identified the opportunity to use a directed graph (digraph) network to build a unit converter capable of converting between any two units without the need to populate an endless table of predefined conversions. Powered by the Breadth-First Search (BFS) algorithm to traverse the network, the converter determines conversion paths from a given unit (or ratio of units) to any other compatible unit (or ratio), provided that a connecting path exists.
This package is currently under active development and is regularly updated. Backward compatibility will be maintained whenever possible.
What do this package contains:
- It is loaded with a network of units preloaded for distances, area, volume, mass and time conversions defined for SI and Imperial systems according to the definition of each Unit, i.e.: 1_foot = 12_inches.
- Prefixes applied to the basic units, like in SI units k to m to make km, are loaded as a network of conversion paths allowing the algorithm to apply the prefix to any other unit in the same system.
- It provides a class Unit powered with arithmetic and logic operations to intrinsically consider unit conversions when making calculations.
How to use this package:
This package is intended to be used in three ways:
- Calling the function
units()to define instances of the Units class, that holds values associated to units, or, quantities. - As unit converter with the function
convert()to explicitly make conversion of numeric variables and instances. - As unit converter for single numerical values, using the GUI.
A comprehensive user manual is also available here: UNYTS_User_Manual.
To launch the GUI
From an OS terminal or console, execute python -m unyts
In the interface, simply type in the units to convert and the value to be converted and click the convert button or hit Enter key.
To use the units converter function convert():
from unyts import convert
convert(value, from_units, to_units)
where:
- value is a number (int, float, numpy.array, etc)
- from_units is a string defining the units of value (i.e.: 'ft')
- to_units is a string representing the units to convert value (i.e.: 'km')
To create instances of the Unit class using the units() function:
from unyts import units
variable = units(value, units)
- value is a number (
int,float,numpy.array, etc) - units is a string defining the units of value (i.e.: 'ft')
Then simply operate with the Unit instances or the variables related to them:
In: units(6, 'in') + units(1, 'ft')
Out: 18_in
Referring to the Unit class:
from unyts import Unit
- The
Unitclass is not intended to be used to create Unit instances, but to allow checking if other objectisinstanceof Unit: i.e.:isinstance(variable, Unit) - In order to create instances of Unit it is convenient to use the
units()function as it will return the appropriate Unit subclass.
Uses examples:
For further examples of use, the following Jupyter notebook unyts_demo intends to be a guide on how to use this converter and units classes.
To install this package:
Install it from the pypi.org repository:
pip install unyts
or upgrade to the latest version:
pip install --upgrade unyts !
Optional requisites:
The main functionalities are purely Python powered and does not require any other package to work but, if present, some commonly known packages are used to improve the operability of unyts:
NumPyto be able to deal with iterables not of nparray type, like (list of values)Pandasto be able to recognize Series and DataFramescloudpickleto be able to save internal dictionaries and network to cache file, for faster loadingopenpyxlif willing to export the units network to a pandas DataFrame
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unyts-1.0.1.tar.gz.
File metadata
- Download URL: unyts-1.0.1.tar.gz
- Upload date:
- Size: 282.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2f202bbcdccc58d5fea3469dddd93acd9a5d30e5f0ff53c27837d976e622892
|
|
| MD5 |
48b613ce2e88e55dccbd69588004efd5
|
|
| BLAKE2b-256 |
6dc090cc5101fc05501ab416299f756831444afb23973045b77a3dc0673bea45
|
File details
Details for the file unyts-1.0.1-py3-none-any.whl.
File metadata
- Download URL: unyts-1.0.1-py3-none-any.whl
- Upload date:
- Size: 281.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f46d4729cb39f83042ae21fe95415df769d9295cfe49e630b5c7f5cd3a1589c9
|
|
| MD5 |
572de86209155059992180fbb813abfb
|
|
| BLAKE2b-256 |
909d129aede867f833df5d5dffdfc1b4517670e500e21434234f9ac93a1e91b7
|