Metadata-Version: 2.1
Name: setdiff
Version: 1.0.2
Summary: Sizes of sets of lines of two files
Home-page: https://github.com/pixelneo/setdiff
License: MIT
Author: Ondřej Měkota
Author-email: ondrej.mekota@me.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Project-URL: Repository, https://github.com/pixelneo/setdiff
Description-Content-Type: text/markdown

# setdiff
Given two files, show the size of set difference, union, intersection, and more of their lines.

## Example:

File a:
```
123
a
a
ab
cd
```

File b:
```
a
a
ab
456
```
### Usage:

`sett a b` or alias `setdiff a b`

Output:
```
     {A}  4
       A  5
     {B}  3
       B  4
 |A|-|B|  1
   A ∖ B  2
   B ∖ A  1
   A ∪ B  5
   A ∩ B  2
```




