Skip to content

Instantly share code, notes, and snippets.

View ralpheweotto's full-sized avatar
🍔

Ralph Otto ralpheweotto

🍔
View GitHub Profile
# developer dotfiles
# https://github.com/mathiasbynens/dotfiles # No longer doing this for developers in favor of individual preferences
# install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# update and tap cask
brew update
brew doctor
brew tap caskroom/cask
@ralpheweotto
ralpheweotto / github_issues_to_csv.py
Created May 28, 2019 18:11 — forked from patrickfuller/github_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
Exports issues from a list of repositories to individual csv files.
Uses basic authentication (Github username + password) to retrieve issues
from a repository that username has access to. Supports Github API v3.
Forked from: unbracketed/export_repo_issues_to_csv.py
"""
import argparse
import csv
from getpass import getpass
import requests
@ralpheweotto
ralpheweotto / github_issues_to_csv.py
Created May 28, 2019 18:11 — forked from andydempster/github_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
Exports issues from a list of repositories to individual csv files.
Uses basic authentication (Github username + password) to retrieve issues
from a repository that username has access to. Supports Github API v3.
Forked from: unbracketed/export_repo_issues_to_csv.py
"""
import argparse
import csv
from getpass import getpass
import requests