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
File details
Details for the file tinytools-1.1.1.tar.gz
.
File metadata
- Download URL: tinytools-1.1.1.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c6fcbb7dca77d29ab44697ce0a19dcdc40b39801d06f85786424db5c87445a2 |
|
MD5 | f9a5d5e5889e9a508860e5c558845bed |
|
BLAKE2b-256 | ed2770172a7d6c94157d5b7be7f680a7f0118ac06665eebd99084c6942ecc2a1 |
File details
Details for the file tinytools-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: tinytools-1.1.1-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32ee2e6022ed934482fbbc27e7772ab0f12aca43d4534d498d7531c631487471 |
|
MD5 | 217fe838b0663f63bdd82f549ef5c85b |
|
BLAKE2b-256 | 1f1b26f99b024c884a4a49b805f832eb2ab9eaf7cebcbf0a298277eba79e66ed |