Skip to content

Instantly share code, notes, and snippets.

@fandrefh
Created September 16, 2015 11:59
Show Gist options
  • Save fandrefh/644a51f2c504b2cffa6a to your computer and use it in GitHub Desktop.
Save fandrefh/644a51f2c504b2cffa6a to your computer and use it in GitHub Desktop.
import clipboard
import random
while True:
with open("cpf_vendedores.txt") as f:
cpfs = [line.strip() for line in f.readlines()]
cpf = random.choice(cpfs)
clipboard.copy(cpf)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment