頻繁に利用する処理を集めたライブラリ
Project description
reelib
頻繁に利用する処理を集めたライブラリ
インストール方法
pip install reelib
ライブラリの内容
timestamp
- 時刻文字列を扱う
from reelib import timestamp
# 現在時刻のタイムスタンプを取得
ts = timestamp.get_timestamp()
# ex) 20191025164844890916
# タイムスタンプをdatetimeに変換
t = timestamp.conv_time_from_timestamp(ts)
# ex) datetime.datetime(2019, 10, 25, 16, 48, 44, 890916, tzinfo=datetime.timezone(datetime.timedelta(0, 32400)))
contjson
- JSONを扱う
from reelib import contjson
# ファイルからの読み込み
json_obj = load_from_file('test.json')
# ファイルへの書き込み
save_to_file(json_obj, 'test.json')
# JSONを整形して標準出力
print_json(json_obj)
# str型文字列をJSONに変換
json_obj = json_from_str('{"a":2, "b":3}')
# JSONをstr型文字列に変換
json_text = json_to_str(json_obj)
contimg
- 画像ファイルを扱う
from reelib import contimg
# PIL型をOpenCV型に変換
img_cv = contimg.pil2cv(img_pil)
# OpenCV型をPIL型に変換
img_pil = contimg.cv2pil(img_cv)
# 画像のリサイズ (トリミング)
resized = contimg.resize(img_cv, (画像のサイズ(x,yのtuple)), fill=False)
# 画像のリサイズ (パディング)
resized = contimg.resize(img_cv, (画像のサイズ(x,yのtuple)), fill=True)
# 画像タイルの作成
img_tile = contimg.get_imagetile((画像パスのリスト), (タイルのサイズ(x,yのtuple)), (タイルの数(x,yのtuple)))
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
reelib-1.3.0.tar.gz
(4.2 kB
view details)
Built Distribution
File details
Details for the file reelib-1.3.0.tar.gz
.
File metadata
- Download URL: reelib-1.3.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.7.6 Linux/4.15.0-106-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d3abc52c8e699a43284442b2e7f073cd12b18cec9939f1de0065e9889801c3e |
|
MD5 | db95cd59f5c82596369b4a45d54bd56e |
|
BLAKE2b-256 | 16015a3f4f394ceb91dee9d8bd6c60b18fb748f736fbb13890bebed2d1d083db |
File details
Details for the file reelib-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: reelib-1.3.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.7.6 Linux/4.15.0-106-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7dba063fd96dd167dde3f3f579c7951c08cc98f8cb57b8389e303220c5ad12c |
|
MD5 | c6adf936469962c8499ead92513496d2 |
|
BLAKE2b-256 | 216634366cf376a31fb6c9ef34c2d5c6fc5f97b5a79d5d28ccdbb8d3528f6699 |