Created
March 7, 2019 19:56
-
-
Save TomFaulkner/dd586b17d219f8c03790a1ce4fc180e8 to your computer and use it in GitHub Desktop.
Generate x UUID4s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from uuid import uuid4 | |
def make(number): | |
for _ in range(number): | |
print(str(uuid4())) | |
if __name__ == '__main__': | |
make(int(sys.argv[1])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment