Python package for converting various units.
Project description
unic
unic is a python package that can convert various units.
Conversion Targets
-
The current available conversion targets are as follows.
Time Unit
- TimeModel
- minute / second / milisecond → hour
- hour / second / milisecond → minute
- hour / minute / milisecond → second
- hour / minute / second → milisecond
- DatetimeModel
- unixtime / unixtime+timezone → datetime.datetime
- unixtime / unixtime+timezone → datetime.date
- UnixtimeModel
- string(yyyy-mm-dd hh:mm:ss) / string(yyyy-mm-dd hh:mm:ss)+timezone → unixtime
- string(yyyy/mm/dd hh:mm:ss) / string(yyyy/mm/dd hh:mm:ss)+timezone → unixtime
Length Unit
- MetricSystemModel
-
Target Metric System Units
nm, um, mm, cm, m, km, Mm, Gm, Tm※ um : represents ㎛.
-
The target metric system units are can be converted to each other.
-
- TimeModel
Installing
pip install unic
How to
- See the UserGuide.
Example
Time Unit
TimeModel
import unic
convert_model = unic.load_model("time")
# Convert hour to minute
convert_min = convert_model.convert(2, from_unit="hour", to_unit="min")
# Convert hour to minute (batch processing)
convert_min = convert_model.convert_batch([2,4,6], from_unit="hour", to_unit="min")
DatetimeModel
import unic
convert_model = unic.load_model("datetime")
# Convert to datatime
convert_datetime = convert_model.convert(1577841753, format="datetime")
# Convert to datatime (batch processing)
convert_datetime = convert_model.convert_batch([1577841753,1577941753], format="datetime")
# Convert to date
convert_datetime = convert_model.convert(1577841753, format="date")
UnixtimeModel
import unic
convert_model = unic.load_model("unixtime")
# Specify time zone
convert_unixtime = convert_model.convert("2023-05-12 10:15:20", tz="Asia/Tokyo")
# Specify time zone (batch processing)
convert_unixtime = convert_model.convert_batch(["2023-05-12 10:15:20","2023-05-13 10:15:20","2023-05-14 10:15:20"], tz="Asia/Tokyo")
Length Unit
MetricSystemModel
import unic
convert_model = unic.load_model("metric_system")
# Convert cm to m
convert_m = convert_model.convert(20, from_unit="cm", to_unit="m")
# Convert cm to m (batch processing)
convert_m = convert_model.convert_batch([20,50,100,200], from_unit="cm", to_unit="m")
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
unic-1.3.3.tar.gz
(8.2 kB
view details)
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
unic-1.3.3-py3-none-any.whl
(12.4 kB
view details)
File details
Details for the file unic-1.3.3.tar.gz.
File metadata
- Download URL: unic-1.3.3.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
316126893d2f1357b60d1254fee976942dbbffbfb2f93aeb24fa0f63d1bfa9a0
|
|
| MD5 |
d8174532276f9fd33046342c735f316f
|
|
| BLAKE2b-256 |
57837ee1f9883843f6d9682f724b6e3993890b03374531e88bf1f691085d1e54
|
File details
Details for the file unic-1.3.3-py3-none-any.whl.
File metadata
- Download URL: unic-1.3.3-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60d2fe67505121d53125011019e2824ca3c922ba3aa4d8b6c2a7d164d2e8b264
|
|
| MD5 |
2b1c3d048ff59c3da8e576d0f7e1887c
|
|
| BLAKE2b-256 |
fa92a69402315f1705f59632779170d191decb4c30f978915dd0ec930df29e59
|