Open
Description
sort of a follow up to https://memex.zulipchat.com/#narrow/stream/279601-hpi/topic/new.20HPI.20query.2Fserialization.20feature/near/270313599
To just track common patterns I see myself using with hpi query
, so they could possibly be moved into python instead of in the shell using jq
- a printf of sorts: converting a JSON blob into a single string, equivalent of
hpi query modulename | jq '"\(.attribute_one)|\(.attribute_two)"'
: e.g.,: https://github.com/seanbreckenridge/HPI-personal/blob/d1e7bae2fddcba2c2f655456eb7d2b7155641e97/scripts/history_fzf#L10-L12- possibly after that, running something like
awk '!seen[$0]++'
, which dedupes and returns you unique items. this would be equivalent to amore_itertools.unique_everseen
in python. i.e. some way to produce 'unique' output - another example of that here: https://github.com/seanbreckenridge/HPI-personal/blob/d1e7bae2fddcba2c2f655456eb7d2b7155641e97/jobs/all/cache_zsh_history.job#L10, to get unique zsh commands
- possibly after that, running something like
- localizing datetimes - this is something I find myself writing pretty often, so much so that I have another script that can take JSON blobs as input, and localize dates based on a json key. Would be cool to support localizing and printing datetimes in different formats. could even in the future add an option to hook into
my.time.tz
to print datetimes localized to when you did them, or local to your current timezone - in general, picking/deleting keys from json output (including nested objects/
@property
values/calling functions on namedtuple/dataclass objects) seems like a good idea, probably related to printf
I will probably work on adding some of these, just wanted to track the ideas first
dont want to necessarily just add every possible jq-like query/map/filter function, but these are the ones I find myself doing very often. Probably better to leave more complex operations to jq
or something else
Metadata
Metadata
Assignees
Labels
No labels