Small, high-level tools that fill gaps in current Python tool sets.
Project description
Introduction
Tinytools is a collection of small, high-level tools that fill gaps in Python tool sets. The tools are broken up into a set of modules
bunch : Contains an OrderedBunch object class with associated bunchify/unbunchify methods, similar to other bunch implementations but built off an OrderedDict with ipython table-complete overloaded to the data memebers.
files : High-level filter and search functions with configurable search depth, case sensitivity, and search types.
cmd_list : Thin wrapper around subprocess to simplify command line calls.
pvl : Function to read and write PVL files.
class_csv : Functions to move columns in csv files - a common need for moving class-attributed csv files between machine learning tools.
np_img : Numpy operations to flip images - i.e. converting a numpy image array from (4,200,200) to (200,200,4).
py_styles : Display of python style suggestions.
Installing
pip install tinytools
Import
import tinytools
or in a more convenient alias:
import tinytools as tt
Quick Start
import tinytools as tt
## Search function
found = tt.files.search('/path/to/search',['*.til','proj1*.til'],depth=5,
case_sensitive=False)
## OrderedBunch
from collections import OrderedDict
# Create an OrderedBunch from and return it to an OrderedDict
od = OrderedDict({'a':1,'b':2,'c':{'aa':1.23,'bb':'string'}})
ob = tt.bunch.ordered_bunchify(od)
ob.a # Explore the OrderdBunch with tab complete
ob['a'] # Equivalent to above
ob.c.bb # orderd_bunchify is recursive on nested Dict objects
ob['c']['bb'] # Equivalent to above
od2 = tt.bunch.ordered_unbunchify(ob)
## Interacting with PVL files
# Read full PVL file
imd = tt.pvl.read_from_pvl('/path/to/image.IMD')
type(imd) # returns collections.OrderedDict
imdob = tt.bunch.ordered_bunchify(img) # Create an ordered bunch to ease
# interactive exploration
imdob.IMAGE_1.satID # Tab complete through the IMD files
# Read an item from a PVL file
tt.pvl.read_from_pvl('/path/to/image.IMD','satId') # return same as above
tt.pvl.read_from_pvl('/path/to/image.IMD','ULLon') # return a list of all
# items matching key
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
Hashes for tinytools-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9703784f1e772610383145b16bf79cb54bc2a0bfbcca990e12a80271272af45 |
|
MD5 | 9287e805b8adfcd8b058c9694f1ac15f |
|
BLAKE2b-256 | c3e6e335406a22be352c8b680ed5d4d28937ac911dbda9756625006e502bf787 |