Skip to content

Instantly share code, notes, and snippets.

View ncloward's full-sized avatar

Nick Cloward ncloward

View GitHub Profile
@DoWhileGeek
DoWhileGeek / uuid
Created January 12, 2016 07:29
A handy command line app for quickly generating uuids.
#!/usr/bin/env python3
from uuid import uuid4
import argparse
import pyperclip
def parse():
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--clipboard", action="store_true", help="store contents in system clipboard")