Last active
August 29, 2015 14:04
-
-
Save mbohun/0d281b76311f663a1982 to your computer and use it in GitHub Desktop.
code.google.com issue tracker notes
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
# our code.google.com issue pages | |
# 1st page | |
https://code.google.com/p/ala/issues/list | |
# 1st page, link to Next | |
https://code.google.com/p/ala/issues/list?num=100&start=100 | |
# 2nd page, link to Next | |
https://code.google.com/p/ala/issues/list?num=100&start=200 | |
# 3rd page, link to Next | |
https://code.google.com/p/ala/issues/list?num=100&start=300 | |
# easy way to download "all" issues as one CSV file (we have 321 issues in total, | |
# the following will attempt to download up to 500 into one .csv file) | |
wget -O `date "+%Y-%m-%d"`-ala-google-code-issues-raw.csv https://code.google.com/p/ala/issues/csv?num=500 | |
# or using curl: | |
curl -s https://code.google.com/p/ala/issues/csv?num=500 > `date "+%Y-%m-%d"`-ala-google-code-issues-raw.csv | |
# chop off the first line (it contains the keys - column names) | |
# NOTE: one could modify the python script to use the first line to read the key | |
# names instead of having them hardcoded in the python; that would eliminate the | |
# need for this deletion too. | |
tail -n +2 2014-08-06-ala-google-code-issues-raw.csv > 2014-08-06-ala-google-code-issues.csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment