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
# -*- coding: utf-8 -*- | |
""" | |
I ran the following code with Python 3.9 | |
The only dependency was the requests library | |
https://docs.python-requests.org/en/latest/user/quickstart/ | |
The core concepts for the API calls are explained here | |
https://www.census.gov/data/developers/guidance/api-user-guide.Core_Concepts.html | |
You will notice that I use a KEY variable in the code that is not defined anywhere. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# git | |
source ~/.git-prompt.sh # copied from https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh | |
alias glog="git log --oneline --graph --all --decorate" |