Skip to content

Instantly share code, notes, and snippets.

View Kipngetich33's full-sized avatar
🎯
Juggling my cares away

Kipngetich33 Kipngetich33

🎯
Juggling my cares away
View GitHub Profile
import builtins
input_values = []
print_values = []
def mock_input(s):
print_values.append(s)
return input_values.pop(0)
@howCodeORG
howCodeORG / key-generator.py
Created May 22, 2018 01:28
howCode's simple key generation script in Python.
import random
class Key:
def __init__(self, key=''):
if key == '':
self.key= self.generate()
else:
self.key = key.lower()