Queries set operators from files using python syntax
Project description
Setz is a command line utility used to run set operations on files using python syntax
Usage
setz “query” [a.txt b.txt ..]
Possible Queries
- Set Membership. Test if an element belongs to a set.
“‘test’ in a”
- Set Equality. Test if two sets contain the same elements.
“a == b”
- Set Cardinality. Return the number of elements in the set.
“len(a)”
- Subset Test. Test if a given set is a subset of another set.
“a < b”
- Set Union. Find union of two sets.
“a | b”
- Set Intersection. Find intersection of two sets.
“a & b”
- Set Complement. Given two sets A and B, find all elements in A that are not in B.
“a - b”
- Set Symmetric Difference. Find symmetric difference of two sets.
“a ^ b”
- Power Set. Generate all subsets of a set.
“power_set(a)”
- Set Cartesian Product. Find A x B.
“product(a, b, ..)”
- Disjoint Set Test. Test if two sets are disjoint.
“is_disjoint(a, b, ..)”
- Empty Set Test. Test if a given set is empty.
“is_empty(a)”
- Minimum. Find the smallest element of a set.
“max(a)”
- Maximum. Find the largest element of a set.
“min(a)”
Examples
> setz ‘“foo” in a’ <(echo foo) 1 > setz ‘len(a)’ <(echo for bar garply) 3 > setz ‘a < b’ <(echo foo bar baz) <(echo foo bar) 0 > setz ‘max(a)’ <(echo 9001 10) 9001 > setz ‘is_disjoint(a, b, c)’ <(echo foo) <(echo bar) <(echo baz garply) 1 > setz ‘a | b’ <(echo foo) <(echo baz garply) garply foo baz > setz ‘product(a, b)’ <(echo foo bar) <(echo baz garply) foo, garply foo, baz bar, garply bar, baz > setz ‘power_set(a)’ <(echo foo bar garply) garply foo garply, foo bar garply, bar foo, bar garply, foo, bar
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
File details
Details for the file Setz-0.0.1.tar.gz
.
File metadata
- Download URL: Setz-0.0.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc5da42a8faad4141b2fb04887e023b5fa7cef01f4a6c23fd73d9f17fe3350eb |
|
MD5 | 4b1a370cdddf0fed78e8e20eb24f2fd9 |
|
BLAKE2b-256 | 8464772bd35eabe383eae2121de00b73829906fb774fcfda31f2a88ba1dcc767 |