Metadata-Version: 2.1
Name: mixemup
Version: 0.3.0
Summary: Lists out permutations of lines in files.
Home-page: https://github.com/tonikarppi/mixemup
License: MIT
Keywords: string,combinations
Author: Toni Karppi
Author-email: karppitoni@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: click (>=7.0,<8.0)
Project-URL: Repository, https://github.com/tonikarppi/mixemup
Description-Content-Type: text/markdown

# mixemup

### Combine and mix strings

This program takes in a file of strings, and produces combinations of different lengths of these strings. This is pretty useful for when you want to test parameter input for programs.

## Installation
Requires Python 3.7 or greater.
```
pip install mixemup
```

## Usage


```
$ cat names.txt 

bob
alice
john
jack
sally
```

```
$ mixemup names.txt


bob 
alice 
john 
jack 
sally 
bob alice 
bob john 
bob jack 
bob sally 
alice john 
alice jack 
alice sally 
john jack 
john sally 
jack sally 
bob alice john 
bob alice jack 
bob alice sally 
bob john jack 
bob john sally 
bob jack sally 
alice john jack 
alice john sally 
alice jack sally 
john jack sally 
bob alice john jack 
bob alice john sally 
bob alice jack sally 
bob john jack sally 
alice john jack sally 
bob alice john jack sally
```
