Add shuffle.py.
This commit is contained in:
parent
970575e949
commit
0fe7d7bda1
1 changed files with 25 additions and 0 deletions
25
shuffle.py
Normal file
25
shuffle.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
import argparse
|
||||
import random
|
||||
import sys
|
||||
|
||||
from voussoirkit import pipeable
|
||||
|
||||
def shuffle_argparse(args):
|
||||
lines = pipeable.input(args.source, read_files=True, skip_blank=True, strip=True)
|
||||
lines = list(lines)
|
||||
random.shuffle(lines)
|
||||
|
||||
for line in lines:
|
||||
pipeable.stdout(line)
|
||||
|
||||
def main(argv):
|
||||
parser = argparse.ArgumentParser(description=__doc__)
|
||||
|
||||
parser.add_argument('source')
|
||||
parser.set_defaults(func=shuffle_argparse)
|
||||
|
||||
args = parser.parse_args(argv)
|
||||
return args.func(args)
|
||||
|
||||
if __name__ == '__main__':
|
||||
raise SystemExit(main(sys.argv[1:]))
|
Loading…
Reference in a new issue