Instantly share code, notes, and snippets.
JeffPaine /beautiful_idiomatic_python.md
Last activeAugust 10, 2025 21:23
Moved to:https://github.com/JeffPaine/beautiful_idiomatic_pythonNow located athttps://github.com/JeffPaine/beautiful_idiomatic_python.
Github gists don't support Pull Requests or any notifications, which made it impossible for me to maintain this (surprisingly popular) gist with fixes, respond to comments and so on. In the interest of maintaining the quality of this resource for others, I've moved it to a proper repo. Cheers!
JeffPaine /make_github_issue.py
CreatedJuly 19, 2012 17:24
Make an issue on github using API V3 and Python This file contains hidden or 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
importjson | |
importrequests | |
# Authentication for user filing issue (must have read/write access to | |
# repository to add issue to) | |
USERNAME='CHANGEME' | |
PASSWORD='CHANGEME' | |
# The repository to add this issue to | |
REPO_OWNER='CHANGEME' |
JeffPaine /us_state_abbreviations.py
Last activeMay 5, 2025 13:06
A python list of all US state abbreviations. This file contains hidden or 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
# United States Postal Service (USPS) abbreviations. | |
abbreviations= [ | |
# https://en.wikipedia.org/wiki/List_of_states_and_territories_of_the_United_States#States. | |
"AK","AL","AR","AZ","CA","CO","CT","DE","FL","GA","HI","IA", | |
"ID","IL","IN","KS","KY","LA","MA","MD","ME","MI","MN","MO", | |
"MS","MT","NC","ND","NE","NH","NJ","NM","NV","NY","OH","OK", | |
"OR","PA","RI","SC","SD","TN","TX","UT","VA","VT","WA","WI", | |
"WV","WY", | |
# https://en.wikipedia.org/wiki/List_of_states_and_territories_of_the_United_States#Federal_district. | |
"DC", |