Useful utilities I re-use in multiple projects
Project description
eli_utils
Install
pip install 'git+https://github.com/elifriedman/eli_utils.git'
How to use
Plotting Utils
from PIL import Image
import numpy as np
from eli_utils import imshow, image_grid
image1 = Image.open("file1.png")
image2 = np.zeros((128, 128, 3))
image3 = np.ones((128, 128, 3))
imshow(image3)
image_grid([image1, image2], shape=(2, 1))
IO Utils
from eli_utils import load_json, save_json
my_dict = {"a": 1, "b": 2}
save_json(my_dict, 'file.json')
loaded_dict = load_json('file.json')
Video Utils
from eli_utils import get_video_properties, load_frames
frames = load_frames("myvideo.mp4")
frame_count, fps, duration = get_video_properties("myvideo.mp4")
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
eli_utils-0.0.12.tar.gz
(5.8 kB
view details)
Built Distribution
File details
Details for the file eli_utils-0.0.12.tar.gz
.
File metadata
- Download URL: eli_utils-0.0.12.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec06c1fae7541ddf098ccbad806e6236708337b1e46df6f5921ff5dfda23c8c2 |
|
MD5 | 6364a7a49af06460faded13389060211 |
|
BLAKE2b-256 | e1fd325d1c7c21cbb7af0108e7189fa7b5a26a2444b6591642e4144a917562ad |
File details
Details for the file eli_utils-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: eli_utils-0.0.12-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba3f1af53a86bbab194384c202ec193d45da11433f3e2e0118b195d8de815686 |
|
MD5 | 9b745cba6a32ecb375d68118cd2baaaa |
|
BLAKE2b-256 | cb9f90da2f5657773f1bda3a22e44c342cba78514a22117bd06def6e8b00953e |