I hereby claim:
- I am tedmiston on github.
- I am tedmiston (https://keybase.io/tedmiston) on keybase.
- I have a public key ASDcS_0ErBLjbjPfvkCIwRXWIuHJaUCvFhvs1JZ7qltKzAo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" | |
A style-izer / PascalCase-r / opinionated capitalizer for the docs site. | |
Capitalize the names of companies, services, etc as used on various generated | |
list pages on the Astronomer docs site <https://docs.astronomer.io/>, such as | |
Sources, Destinations, Transforms, Clickstream Collectors, and Clickstream | |
Connectors. |
aes128 | |
aes256 | |
all | |
allowoverwrite | |
analyse | |
analyze | |
and | |
any | |
array | |
as |
I hereby claim:
To claim this, I am signing this object:
""" | |
Fetch GitHub's MIT license template, populating this year and your name. | |
""" | |
import getpass | |
import pwd | |
from datetime import date | |
import requests |
import random | |
import urllib.request | |
WORD_LENGTH = 5 | |
MAX_GUESSES = 5 | |
WORD_LIST = 'https://raw.githubusercontent.com/tabatkins/wordle-list/main/words' | |
FORFEIT = 'forfeit' | |
response = urllib.request.urlopen(WORD_LIST) | |
content = response.read().decode('utf-8') |