Online Data Collection

  • Shared
    • API based
    • Files and databases
  • Web Scrapping
  • Manual
    • Surveys
    • Observation (When desperate)

Online Data Collection Cont.

  • Data is likely to not be organized as rows and columns
  • You have to organize the data manually and contruct a DataFrame
  • Need to determine what your variables will be
  • Need to be very careful with level of analysis here

Constructing Data Frames Manually

Option 1: A List of Dictionaries

In [36]:
import pandas as pd

record1 = {"name":"mohammed", "id":1234, "age":45}
record2 = {"name":"Ali", "id":1235, "age":35}
record3 = {"name":"Sara", "id":1236, "age":25}

list_of_records = [record1, record2, record3]
In [2]:
# Here is another way to write the previous code

list_of_records = [
    {"name":"mohammed", "id":1234, "age":45},
    {"name":"Ali", "id":1235, "age":35},
    {"name":"Sara", "id":1236, "age":25},
]
In [3]:
# To create a DataFrame you construct an object

df = pd.DataFrame(list_of_records)
df
Out[3]:
age id name
0 45 1234 mohammed
1 35 1235 Ali
2 25 1236 Sara

Important Notes

  • All dictionaries must have the same keys
  • The keys will represent the column names
  • The values of the dictionary will represent the record values
  • Order of columns is unpredictable

Option 2: List of Lists

In [4]:
record1 = ["mohammed", 1234, 45]
record2 = ["Ali", 1235, 35]
record3 = ["Sara", 1236, 25]

list_of_records = [record1, record2, record3]
In [20]:
# Alternative way of constructing the list of records
list_of_records = [
    ["mohammed", 1234, 45],
    ["Ali", 1235, 35],
    ["Sara", 1236, 25],  
]
In [21]:
# To create a DataFrame you construct an object

df = pd.DataFrame(list_of_records)
df
Out[21]:
0 1 2
0 mohammed 1234 45
1 Ali 1235 35
2 Sara 1236 25

Important Notes

  • All lists must have the same number of items
  • Order of columns will be maintained, first item will be part of first column, and so on
  • Columns will be numbered, but you can rename them
In [22]:
df.columns = ["name", "id", "age"]
df
Out[22]:
name id age
0 mohammed 1234 45
1 Ali 1235 35
2 Sara 1236 25

Adding Rows

Assuming you are using the default index then you can do it this way

In [23]:
df.loc[len(df)] = ["zaid", 1237, 33]
df
Out[23]:
name id age
0 mohammed 1234 45
1 Ali 1235 35
2 Sara 1236 25
3 zaid 1237 33

API Based Data Collection

  • Search for the term "API" for online servies
    • Most social media services will have one
  • Each API will have a unique way to access it

API Protocols

  • Restful
    • Most popular
    • HTTP based
  • RPC/Soap
  • GraphML

Restful APIs

  • You can access the API through the browser or an HTTP library
    • Requests is the most popular for python
  • Dedicated libraries for specific services are available to make access easier
    • The libraries are called clients
    • Search pip, google, and github for available options

How Restful APIs Work

  • Connect and authenticate using an HTTP client, like requests
  • Execute API action by calling an HTTP url and setting the appropriate HTTP action
    • Main actions are: GET, POST, PUT, DELETE
    • You will mostly use get
  • Response is likely JSON or XML which you have to parse into python objects

The GET Restful Action

  • This is the standard browser action when you type a URL
    • You can view Restful responses in the browser if not authenticated
  • You choose what you want to fetch through the url, e.g.:
    • Fetch list of tweets using following url path: followers/list
    • See api here
  • Some require authentication
  • Other do not and can be viewed in browser

Restful APIs Cont.

  • Authentication is likely required (Difficult part)
  • Be aware of transfer/access limitations
  • You have to read the API documentation!
In [24]:
# Restful Example

import requests

# This is an authenticated example
# see documentation for service on how to authenticate
# It usually involves generating an access token

# fetch github /repositories/ using a GET request
data = requests.get("https://api.github.com/repositories")
In [26]:
# Response contains text
data.text

# You can parse this data
Out[26]:
'[{"id":1,"name":"grit","full_name":"mojombo/grit","owner":{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4","gravatar_id":"","url":"https://api.github.com/users/mojombo","html_url":"https://github.com/mojombo","followers_url":"https://api.github.com/users/mojombo/followers","following_url":"https://api.github.com/users/mojombo/following{/other_user}","gists_url":"https://api.github.com/users/mojombo/gists{/gist_id}","starred_url":"https://api.github.com/users/mojombo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojombo/subscriptions","organizations_url":"https://api.github.com/users/mojombo/orgs","repos_url":"https://api.github.com/users/mojombo/repos","events_url":"https://api.github.com/users/mojombo/events{/privacy}","received_events_url":"https://api.github.com/users/mojombo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mojombo/grit","description":"**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.","fork":false,"url":"https://api.github.com/repos/mojombo/grit","forks_url":"https://api.github.com/repos/mojombo/grit/forks","keys_url":"https://api.github.com/repos/mojombo/grit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mojombo/grit/teams","hooks_url":"https://api.github.com/repos/mojombo/grit/hooks","issue_events_url":"https://api.github.com/repos/mojombo/grit/issues/events{/number}","events_url":"https://api.github.com/repos/mojombo/grit/events","assignees_url":"https://api.github.com/repos/mojombo/grit/assignees{/user}","branches_url":"https://api.github.com/repos/mojombo/grit/branches{/branch}","tags_url":"https://api.github.com/repos/mojombo/grit/tags","blobs_url":"https://api.github.com/repos/mojombo/grit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mojombo/grit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mojombo/grit/git/refs{/sha}","trees_url":"https://api.github.com/repos/mojombo/grit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mojombo/grit/statuses/{sha}","languages_url":"https://api.github.com/repos/mojombo/grit/languages","stargazers_url":"https://api.github.com/repos/mojombo/grit/stargazers","contributors_url":"https://api.github.com/repos/mojombo/grit/contributors","subscribers_url":"https://api.github.com/repos/mojombo/grit/subscribers","subscription_url":"https://api.github.com/repos/mojombo/grit/subscription","commits_url":"https://api.github.com/repos/mojombo/grit/commits{/sha}","git_commits_url":"https://api.github.com/repos/mojombo/grit/git/commits{/sha}","comments_url":"https://api.github.com/repos/mojombo/grit/comments{/number}","issue_comment_url":"https://api.github.com/repos/mojombo/grit/issues/comments{/number}","contents_url":"https://api.github.com/repos/mojombo/grit/contents/{+path}","compare_url":"https://api.github.com/repos/mojombo/grit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mojombo/grit/merges","archive_url":"https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mojombo/grit/downloads","issues_url":"https://api.github.com/repos/mojombo/grit/issues{/number}","pulls_url":"https://api.github.com/repos/mojombo/grit/pulls{/number}","milestones_url":"https://api.github.com/repos/mojombo/grit/milestones{/number}","notifications_url":"https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mojombo/grit/labels{/name}","releases_url":"https://api.github.com/repos/mojombo/grit/releases{/id}","deployments_url":"https://api.github.com/repos/mojombo/grit/deployments"},{"id":26,"name":"merb-core","full_name":"wycats/merb-core","owner":{"login":"wycats","id":4,"avatar_url":"https://avatars0.githubusercontent.com/u/4?v=4","gravatar_id":"","url":"https://api.github.com/users/wycats","html_url":"https://github.com/wycats","followers_url":"https://api.github.com/users/wycats/followers","following_url":"https://api.github.com/users/wycats/following{/other_user}","gists_url":"https://api.github.com/users/wycats/gists{/gist_id}","starred_url":"https://api.github.com/users/wycats/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wycats/subscriptions","organizations_url":"https://api.github.com/users/wycats/orgs","repos_url":"https://api.github.com/users/wycats/repos","events_url":"https://api.github.com/users/wycats/events{/privacy}","received_events_url":"https://api.github.com/users/wycats/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wycats/merb-core","description":"Merb Core: All you need. None you don\'t.","fork":false,"url":"https://api.github.com/repos/wycats/merb-core","forks_url":"https://api.github.com/repos/wycats/merb-core/forks","keys_url":"https://api.github.com/repos/wycats/merb-core/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wycats/merb-core/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wycats/merb-core/teams","hooks_url":"https://api.github.com/repos/wycats/merb-core/hooks","issue_events_url":"https://api.github.com/repos/wycats/merb-core/issues/events{/number}","events_url":"https://api.github.com/repos/wycats/merb-core/events","assignees_url":"https://api.github.com/repos/wycats/merb-core/assignees{/user}","branches_url":"https://api.github.com/repos/wycats/merb-core/branches{/branch}","tags_url":"https://api.github.com/repos/wycats/merb-core/tags","blobs_url":"https://api.github.com/repos/wycats/merb-core/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wycats/merb-core/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wycats/merb-core/git/refs{/sha}","trees_url":"https://api.github.com/repos/wycats/merb-core/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wycats/merb-core/statuses/{sha}","languages_url":"https://api.github.com/repos/wycats/merb-core/languages","stargazers_url":"https://api.github.com/repos/wycats/merb-core/stargazers","contributors_url":"https://api.github.com/repos/wycats/merb-core/contributors","subscribers_url":"https://api.github.com/repos/wycats/merb-core/subscribers","subscription_url":"https://api.github.com/repos/wycats/merb-core/subscription","commits_url":"https://api.github.com/repos/wycats/merb-core/commits{/sha}","git_commits_url":"https://api.github.com/repos/wycats/merb-core/git/commits{/sha}","comments_url":"https://api.github.com/repos/wycats/merb-core/comments{/number}","issue_comment_url":"https://api.github.com/repos/wycats/merb-core/issues/comments{/number}","contents_url":"https://api.github.com/repos/wycats/merb-core/contents/{+path}","compare_url":"https://api.github.com/repos/wycats/merb-core/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wycats/merb-core/merges","archive_url":"https://api.github.com/repos/wycats/merb-core/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wycats/merb-core/downloads","issues_url":"https://api.github.com/repos/wycats/merb-core/issues{/number}","pulls_url":"https://api.github.com/repos/wycats/merb-core/pulls{/number}","milestones_url":"https://api.github.com/repos/wycats/merb-core/milestones{/number}","notifications_url":"https://api.github.com/repos/wycats/merb-core/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wycats/merb-core/labels{/name}","releases_url":"https://api.github.com/repos/wycats/merb-core/releases{/id}","deployments_url":"https://api.github.com/repos/wycats/merb-core/deployments"},{"id":27,"name":"rubinius","full_name":"rubinius/rubinius","owner":{"login":"rubinius","id":317747,"avatar_url":"https://avatars2.githubusercontent.com/u/317747?v=4","gravatar_id":"","url":"https://api.github.com/users/rubinius","html_url":"https://github.com/rubinius","followers_url":"https://api.github.com/users/rubinius/followers","following_url":"https://api.github.com/users/rubinius/following{/other_user}","gists_url":"https://api.github.com/users/rubinius/gists{/gist_id}","starred_url":"https://api.github.com/users/rubinius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rubinius/subscriptions","organizations_url":"https://api.github.com/users/rubinius/orgs","repos_url":"https://api.github.com/users/rubinius/repos","events_url":"https://api.github.com/users/rubinius/events{/privacy}","received_events_url":"https://api.github.com/users/rubinius/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/rubinius/rubinius","description":"The Rubinius Language Platform","fork":false,"url":"https://api.github.com/repos/rubinius/rubinius","forks_url":"https://api.github.com/repos/rubinius/rubinius/forks","keys_url":"https://api.github.com/repos/rubinius/rubinius/keys{/key_id}","collaborators_url":"https://api.github.com/repos/rubinius/rubinius/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/rubinius/rubinius/teams","hooks_url":"https://api.github.com/repos/rubinius/rubinius/hooks","issue_events_url":"https://api.github.com/repos/rubinius/rubinius/issues/events{/number}","events_url":"https://api.github.com/repos/rubinius/rubinius/events","assignees_url":"https://api.github.com/repos/rubinius/rubinius/assignees{/user}","branches_url":"https://api.github.com/repos/rubinius/rubinius/branches{/branch}","tags_url":"https://api.github.com/repos/rubinius/rubinius/tags","blobs_url":"https://api.github.com/repos/rubinius/rubinius/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/rubinius/rubinius/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/rubinius/rubinius/git/refs{/sha}","trees_url":"https://api.github.com/repos/rubinius/rubinius/git/trees{/sha}","statuses_url":"https://api.github.com/repos/rubinius/rubinius/statuses/{sha}","languages_url":"https://api.github.com/repos/rubinius/rubinius/languages","stargazers_url":"https://api.github.com/repos/rubinius/rubinius/stargazers","contributors_url":"https://api.github.com/repos/rubinius/rubinius/contributors","subscribers_url":"https://api.github.com/repos/rubinius/rubinius/subscribers","subscription_url":"https://api.github.com/repos/rubinius/rubinius/subscription","commits_url":"https://api.github.com/repos/rubinius/rubinius/commits{/sha}","git_commits_url":"https://api.github.com/repos/rubinius/rubinius/git/commits{/sha}","comments_url":"https://api.github.com/repos/rubinius/rubinius/comments{/number}","issue_comment_url":"https://api.github.com/repos/rubinius/rubinius/issues/comments{/number}","contents_url":"https://api.github.com/repos/rubinius/rubinius/contents/{+path}","compare_url":"https://api.github.com/repos/rubinius/rubinius/compare/{base}...{head}","merges_url":"https://api.github.com/repos/rubinius/rubinius/merges","archive_url":"https://api.github.com/repos/rubinius/rubinius/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/rubinius/rubinius/downloads","issues_url":"https://api.github.com/repos/rubinius/rubinius/issues{/number}","pulls_url":"https://api.github.com/repos/rubinius/rubinius/pulls{/number}","milestones_url":"https://api.github.com/repos/rubinius/rubinius/milestones{/number}","notifications_url":"https://api.github.com/repos/rubinius/rubinius/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/rubinius/rubinius/labels{/name}","releases_url":"https://api.github.com/repos/rubinius/rubinius/releases{/id}","deployments_url":"https://api.github.com/repos/rubinius/rubinius/deployments"},{"id":28,"name":"god","full_name":"mojombo/god","owner":{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4","gravatar_id":"","url":"https://api.github.com/users/mojombo","html_url":"https://github.com/mojombo","followers_url":"https://api.github.com/users/mojombo/followers","following_url":"https://api.github.com/users/mojombo/following{/other_user}","gists_url":"https://api.github.com/users/mojombo/gists{/gist_id}","starred_url":"https://api.github.com/users/mojombo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojombo/subscriptions","organizations_url":"https://api.github.com/users/mojombo/orgs","repos_url":"https://api.github.com/users/mojombo/repos","events_url":"https://api.github.com/users/mojombo/events{/privacy}","received_events_url":"https://api.github.com/users/mojombo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mojombo/god","description":"Ruby process monitor","fork":false,"url":"https://api.github.com/repos/mojombo/god","forks_url":"https://api.github.com/repos/mojombo/god/forks","keys_url":"https://api.github.com/repos/mojombo/god/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mojombo/god/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mojombo/god/teams","hooks_url":"https://api.github.com/repos/mojombo/god/hooks","issue_events_url":"https://api.github.com/repos/mojombo/god/issues/events{/number}","events_url":"https://api.github.com/repos/mojombo/god/events","assignees_url":"https://api.github.com/repos/mojombo/god/assignees{/user}","branches_url":"https://api.github.com/repos/mojombo/god/branches{/branch}","tags_url":"https://api.github.com/repos/mojombo/god/tags","blobs_url":"https://api.github.com/repos/mojombo/god/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mojombo/god/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mojombo/god/git/refs{/sha}","trees_url":"https://api.github.com/repos/mojombo/god/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mojombo/god/statuses/{sha}","languages_url":"https://api.github.com/repos/mojombo/god/languages","stargazers_url":"https://api.github.com/repos/mojombo/god/stargazers","contributors_url":"https://api.github.com/repos/mojombo/god/contributors","subscribers_url":"https://api.github.com/repos/mojombo/god/subscribers","subscription_url":"https://api.github.com/repos/mojombo/god/subscription","commits_url":"https://api.github.com/repos/mojombo/god/commits{/sha}","git_commits_url":"https://api.github.com/repos/mojombo/god/git/commits{/sha}","comments_url":"https://api.github.com/repos/mojombo/god/comments{/number}","issue_comment_url":"https://api.github.com/repos/mojombo/god/issues/comments{/number}","contents_url":"https://api.github.com/repos/mojombo/god/contents/{+path}","compare_url":"https://api.github.com/repos/mojombo/god/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mojombo/god/merges","archive_url":"https://api.github.com/repos/mojombo/god/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mojombo/god/downloads","issues_url":"https://api.github.com/repos/mojombo/god/issues{/number}","pulls_url":"https://api.github.com/repos/mojombo/god/pulls{/number}","milestones_url":"https://api.github.com/repos/mojombo/god/milestones{/number}","notifications_url":"https://api.github.com/repos/mojombo/god/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mojombo/god/labels{/name}","releases_url":"https://api.github.com/repos/mojombo/god/releases{/id}","deployments_url":"https://api.github.com/repos/mojombo/god/deployments"},{"id":29,"name":"jsawesome","full_name":"vanpelt/jsawesome","owner":{"login":"vanpelt","id":17,"avatar_url":"https://avatars1.githubusercontent.com/u/17?v=4","gravatar_id":"","url":"https://api.github.com/users/vanpelt","html_url":"https://github.com/vanpelt","followers_url":"https://api.github.com/users/vanpelt/followers","following_url":"https://api.github.com/users/vanpelt/following{/other_user}","gists_url":"https://api.github.com/users/vanpelt/gists{/gist_id}","starred_url":"https://api.github.com/users/vanpelt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vanpelt/subscriptions","organizations_url":"https://api.github.com/users/vanpelt/orgs","repos_url":"https://api.github.com/users/vanpelt/repos","events_url":"https://api.github.com/users/vanpelt/events{/privacy}","received_events_url":"https://api.github.com/users/vanpelt/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/vanpelt/jsawesome","description":"Awesome JSON","fork":false,"url":"https://api.github.com/repos/vanpelt/jsawesome","forks_url":"https://api.github.com/repos/vanpelt/jsawesome/forks","keys_url":"https://api.github.com/repos/vanpelt/jsawesome/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vanpelt/jsawesome/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vanpelt/jsawesome/teams","hooks_url":"https://api.github.com/repos/vanpelt/jsawesome/hooks","issue_events_url":"https://api.github.com/repos/vanpelt/jsawesome/issues/events{/number}","events_url":"https://api.github.com/repos/vanpelt/jsawesome/events","assignees_url":"https://api.github.com/repos/vanpelt/jsawesome/assignees{/user}","branches_url":"https://api.github.com/repos/vanpelt/jsawesome/branches{/branch}","tags_url":"https://api.github.com/repos/vanpelt/jsawesome/tags","blobs_url":"https://api.github.com/repos/vanpelt/jsawesome/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vanpelt/jsawesome/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vanpelt/jsawesome/git/refs{/sha}","trees_url":"https://api.github.com/repos/vanpelt/jsawesome/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vanpelt/jsawesome/statuses/{sha}","languages_url":"https://api.github.com/repos/vanpelt/jsawesome/languages","stargazers_url":"https://api.github.com/repos/vanpelt/jsawesome/stargazers","contributors_url":"https://api.github.com/repos/vanpelt/jsawesome/contributors","subscribers_url":"https://api.github.com/repos/vanpelt/jsawesome/subscribers","subscription_url":"https://api.github.com/repos/vanpelt/jsawesome/subscription","commits_url":"https://api.github.com/repos/vanpelt/jsawesome/commits{/sha}","git_commits_url":"https://api.github.com/repos/vanpelt/jsawesome/git/commits{/sha}","comments_url":"https://api.github.com/repos/vanpelt/jsawesome/comments{/number}","issue_comment_url":"https://api.github.com/repos/vanpelt/jsawesome/issues/comments{/number}","contents_url":"https://api.github.com/repos/vanpelt/jsawesome/contents/{+path}","compare_url":"https://api.github.com/repos/vanpelt/jsawesome/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vanpelt/jsawesome/merges","archive_url":"https://api.github.com/repos/vanpelt/jsawesome/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vanpelt/jsawesome/downloads","issues_url":"https://api.github.com/repos/vanpelt/jsawesome/issues{/number}","pulls_url":"https://api.github.com/repos/vanpelt/jsawesome/pulls{/number}","milestones_url":"https://api.github.com/repos/vanpelt/jsawesome/milestones{/number}","notifications_url":"https://api.github.com/repos/vanpelt/jsawesome/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vanpelt/jsawesome/labels{/name}","releases_url":"https://api.github.com/repos/vanpelt/jsawesome/releases{/id}","deployments_url":"https://api.github.com/repos/vanpelt/jsawesome/deployments"},{"id":31,"name":"jspec","full_name":"wycats/jspec","owner":{"login":"wycats","id":4,"avatar_url":"https://avatars0.githubusercontent.com/u/4?v=4","gravatar_id":"","url":"https://api.github.com/users/wycats","html_url":"https://github.com/wycats","followers_url":"https://api.github.com/users/wycats/followers","following_url":"https://api.github.com/users/wycats/following{/other_user}","gists_url":"https://api.github.com/users/wycats/gists{/gist_id}","starred_url":"https://api.github.com/users/wycats/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wycats/subscriptions","organizations_url":"https://api.github.com/users/wycats/orgs","repos_url":"https://api.github.com/users/wycats/repos","events_url":"https://api.github.com/users/wycats/events{/privacy}","received_events_url":"https://api.github.com/users/wycats/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wycats/jspec","description":"A JavaScript BDD Testing Library","fork":false,"url":"https://api.github.com/repos/wycats/jspec","forks_url":"https://api.github.com/repos/wycats/jspec/forks","keys_url":"https://api.github.com/repos/wycats/jspec/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wycats/jspec/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wycats/jspec/teams","hooks_url":"https://api.github.com/repos/wycats/jspec/hooks","issue_events_url":"https://api.github.com/repos/wycats/jspec/issues/events{/number}","events_url":"https://api.github.com/repos/wycats/jspec/events","assignees_url":"https://api.github.com/repos/wycats/jspec/assignees{/user}","branches_url":"https://api.github.com/repos/wycats/jspec/branches{/branch}","tags_url":"https://api.github.com/repos/wycats/jspec/tags","blobs_url":"https://api.github.com/repos/wycats/jspec/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wycats/jspec/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wycats/jspec/git/refs{/sha}","trees_url":"https://api.github.com/repos/wycats/jspec/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wycats/jspec/statuses/{sha}","languages_url":"https://api.github.com/repos/wycats/jspec/languages","stargazers_url":"https://api.github.com/repos/wycats/jspec/stargazers","contributors_url":"https://api.github.com/repos/wycats/jspec/contributors","subscribers_url":"https://api.github.com/repos/wycats/jspec/subscribers","subscription_url":"https://api.github.com/repos/wycats/jspec/subscription","commits_url":"https://api.github.com/repos/wycats/jspec/commits{/sha}","git_commits_url":"https://api.github.com/repos/wycats/jspec/git/commits{/sha}","comments_url":"https://api.github.com/repos/wycats/jspec/comments{/number}","issue_comment_url":"https://api.github.com/repos/wycats/jspec/issues/comments{/number}","contents_url":"https://api.github.com/repos/wycats/jspec/contents/{+path}","compare_url":"https://api.github.com/repos/wycats/jspec/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wycats/jspec/merges","archive_url":"https://api.github.com/repos/wycats/jspec/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wycats/jspec/downloads","issues_url":"https://api.github.com/repos/wycats/jspec/issues{/number}","pulls_url":"https://api.github.com/repos/wycats/jspec/pulls{/number}","milestones_url":"https://api.github.com/repos/wycats/jspec/milestones{/number}","notifications_url":"https://api.github.com/repos/wycats/jspec/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wycats/jspec/labels{/name}","releases_url":"https://api.github.com/repos/wycats/jspec/releases{/id}","deployments_url":"https://api.github.com/repos/wycats/jspec/deployments"},{"id":35,"name":"exception_logger","full_name":"defunkt/exception_logger","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/exception_logger","description":"Unmaintained. Sorry.","fork":false,"url":"https://api.github.com/repos/defunkt/exception_logger","forks_url":"https://api.github.com/repos/defunkt/exception_logger/forks","keys_url":"https://api.github.com/repos/defunkt/exception_logger/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/exception_logger/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/exception_logger/teams","hooks_url":"https://api.github.com/repos/defunkt/exception_logger/hooks","issue_events_url":"https://api.github.com/repos/defunkt/exception_logger/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/exception_logger/events","assignees_url":"https://api.github.com/repos/defunkt/exception_logger/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/exception_logger/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/exception_logger/tags","blobs_url":"https://api.github.com/repos/defunkt/exception_logger/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/exception_logger/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/exception_logger/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/exception_logger/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/exception_logger/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/exception_logger/languages","stargazers_url":"https://api.github.com/repos/defunkt/exception_logger/stargazers","contributors_url":"https://api.github.com/repos/defunkt/exception_logger/contributors","subscribers_url":"https://api.github.com/repos/defunkt/exception_logger/subscribers","subscription_url":"https://api.github.com/repos/defunkt/exception_logger/subscription","commits_url":"https://api.github.com/repos/defunkt/exception_logger/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/exception_logger/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/exception_logger/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/exception_logger/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/exception_logger/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/exception_logger/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/exception_logger/merges","archive_url":"https://api.github.com/repos/defunkt/exception_logger/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/exception_logger/downloads","issues_url":"https://api.github.com/repos/defunkt/exception_logger/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/exception_logger/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/exception_logger/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/exception_logger/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/exception_logger/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/exception_logger/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/exception_logger/deployments"},{"id":36,"name":"ambition","full_name":"defunkt/ambition","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/ambition","description":"include Enumerable — Unmaintained","fork":false,"url":"https://api.github.com/repos/defunkt/ambition","forks_url":"https://api.github.com/repos/defunkt/ambition/forks","keys_url":"https://api.github.com/repos/defunkt/ambition/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/ambition/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/ambition/teams","hooks_url":"https://api.github.com/repos/defunkt/ambition/hooks","issue_events_url":"https://api.github.com/repos/defunkt/ambition/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/ambition/events","assignees_url":"https://api.github.com/repos/defunkt/ambition/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/ambition/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/ambition/tags","blobs_url":"https://api.github.com/repos/defunkt/ambition/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/ambition/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/ambition/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/ambition/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/ambition/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/ambition/languages","stargazers_url":"https://api.github.com/repos/defunkt/ambition/stargazers","contributors_url":"https://api.github.com/repos/defunkt/ambition/contributors","subscribers_url":"https://api.github.com/repos/defunkt/ambition/subscribers","subscription_url":"https://api.github.com/repos/defunkt/ambition/subscription","commits_url":"https://api.github.com/repos/defunkt/ambition/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/ambition/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/ambition/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/ambition/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/ambition/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/ambition/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/ambition/merges","archive_url":"https://api.github.com/repos/defunkt/ambition/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/ambition/downloads","issues_url":"https://api.github.com/repos/defunkt/ambition/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/ambition/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/ambition/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/ambition/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/ambition/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/ambition/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/ambition/deployments"},{"id":42,"name":"restful-authentication","full_name":"technoweenie/restful-authentication","owner":{"login":"technoweenie","id":21,"avatar_url":"https://avatars3.githubusercontent.com/u/21?v=4","gravatar_id":"","url":"https://api.github.com/users/technoweenie","html_url":"https://github.com/technoweenie","followers_url":"https://api.github.com/users/technoweenie/followers","following_url":"https://api.github.com/users/technoweenie/following{/other_user}","gists_url":"https://api.github.com/users/technoweenie/gists{/gist_id}","starred_url":"https://api.github.com/users/technoweenie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/technoweenie/subscriptions","organizations_url":"https://api.github.com/users/technoweenie/orgs","repos_url":"https://api.github.com/users/technoweenie/repos","events_url":"https://api.github.com/users/technoweenie/events{/privacy}","received_events_url":"https://api.github.com/users/technoweenie/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/technoweenie/restful-authentication","description":"Generates common user authentication code for Rails/Merb, with a full test/unit and rspec suite and optional Acts as State Machine support built-in.","fork":false,"url":"https://api.github.com/repos/technoweenie/restful-authentication","forks_url":"https://api.github.com/repos/technoweenie/restful-authentication/forks","keys_url":"https://api.github.com/repos/technoweenie/restful-authentication/keys{/key_id}","collaborators_url":"https://api.github.com/repos/technoweenie/restful-authentication/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/technoweenie/restful-authentication/teams","hooks_url":"https://api.github.com/repos/technoweenie/restful-authentication/hooks","issue_events_url":"https://api.github.com/repos/technoweenie/restful-authentication/issues/events{/number}","events_url":"https://api.github.com/repos/technoweenie/restful-authentication/events","assignees_url":"https://api.github.com/repos/technoweenie/restful-authentication/assignees{/user}","branches_url":"https://api.github.com/repos/technoweenie/restful-authentication/branches{/branch}","tags_url":"https://api.github.com/repos/technoweenie/restful-authentication/tags","blobs_url":"https://api.github.com/repos/technoweenie/restful-authentication/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/technoweenie/restful-authentication/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/technoweenie/restful-authentication/git/refs{/sha}","trees_url":"https://api.github.com/repos/technoweenie/restful-authentication/git/trees{/sha}","statuses_url":"https://api.github.com/repos/technoweenie/restful-authentication/statuses/{sha}","languages_url":"https://api.github.com/repos/technoweenie/restful-authentication/languages","stargazers_url":"https://api.github.com/repos/technoweenie/restful-authentication/stargazers","contributors_url":"https://api.github.com/repos/technoweenie/restful-authentication/contributors","subscribers_url":"https://api.github.com/repos/technoweenie/restful-authentication/subscribers","subscription_url":"https://api.github.com/repos/technoweenie/restful-authentication/subscription","commits_url":"https://api.github.com/repos/technoweenie/restful-authentication/commits{/sha}","git_commits_url":"https://api.github.com/repos/technoweenie/restful-authentication/git/commits{/sha}","comments_url":"https://api.github.com/repos/technoweenie/restful-authentication/comments{/number}","issue_comment_url":"https://api.github.com/repos/technoweenie/restful-authentication/issues/comments{/number}","contents_url":"https://api.github.com/repos/technoweenie/restful-authentication/contents/{+path}","compare_url":"https://api.github.com/repos/technoweenie/restful-authentication/compare/{base}...{head}","merges_url":"https://api.github.com/repos/technoweenie/restful-authentication/merges","archive_url":"https://api.github.com/repos/technoweenie/restful-authentication/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/technoweenie/restful-authentication/downloads","issues_url":"https://api.github.com/repos/technoweenie/restful-authentication/issues{/number}","pulls_url":"https://api.github.com/repos/technoweenie/restful-authentication/pulls{/number}","milestones_url":"https://api.github.com/repos/technoweenie/restful-authentication/milestones{/number}","notifications_url":"https://api.github.com/repos/technoweenie/restful-authentication/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/technoweenie/restful-authentication/labels{/name}","releases_url":"https://api.github.com/repos/technoweenie/restful-authentication/releases{/id}","deployments_url":"https://api.github.com/repos/technoweenie/restful-authentication/deployments"},{"id":43,"name":"attachment_fu","full_name":"technoweenie/attachment_fu","owner":{"login":"technoweenie","id":21,"avatar_url":"https://avatars3.githubusercontent.com/u/21?v=4","gravatar_id":"","url":"https://api.github.com/users/technoweenie","html_url":"https://github.com/technoweenie","followers_url":"https://api.github.com/users/technoweenie/followers","following_url":"https://api.github.com/users/technoweenie/following{/other_user}","gists_url":"https://api.github.com/users/technoweenie/gists{/gist_id}","starred_url":"https://api.github.com/users/technoweenie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/technoweenie/subscriptions","organizations_url":"https://api.github.com/users/technoweenie/orgs","repos_url":"https://api.github.com/users/technoweenie/repos","events_url":"https://api.github.com/users/technoweenie/events{/privacy}","received_events_url":"https://api.github.com/users/technoweenie/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/technoweenie/attachment_fu","description":"Treat an ActiveRecord model as a file attachment, storing its patch, size, content type, etc.","fork":false,"url":"https://api.github.com/repos/technoweenie/attachment_fu","forks_url":"https://api.github.com/repos/technoweenie/attachment_fu/forks","keys_url":"https://api.github.com/repos/technoweenie/attachment_fu/keys{/key_id}","collaborators_url":"https://api.github.com/repos/technoweenie/attachment_fu/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/technoweenie/attachment_fu/teams","hooks_url":"https://api.github.com/repos/technoweenie/attachment_fu/hooks","issue_events_url":"https://api.github.com/repos/technoweenie/attachment_fu/issues/events{/number}","events_url":"https://api.github.com/repos/technoweenie/attachment_fu/events","assignees_url":"https://api.github.com/repos/technoweenie/attachment_fu/assignees{/user}","branches_url":"https://api.github.com/repos/technoweenie/attachment_fu/branches{/branch}","tags_url":"https://api.github.com/repos/technoweenie/attachment_fu/tags","blobs_url":"https://api.github.com/repos/technoweenie/attachment_fu/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/technoweenie/attachment_fu/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/technoweenie/attachment_fu/git/refs{/sha}","trees_url":"https://api.github.com/repos/technoweenie/attachment_fu/git/trees{/sha}","statuses_url":"https://api.github.com/repos/technoweenie/attachment_fu/statuses/{sha}","languages_url":"https://api.github.com/repos/technoweenie/attachment_fu/languages","stargazers_url":"https://api.github.com/repos/technoweenie/attachment_fu/stargazers","contributors_url":"https://api.github.com/repos/technoweenie/attachment_fu/contributors","subscribers_url":"https://api.github.com/repos/technoweenie/attachment_fu/subscribers","subscription_url":"https://api.github.com/repos/technoweenie/attachment_fu/subscription","commits_url":"https://api.github.com/repos/technoweenie/attachment_fu/commits{/sha}","git_commits_url":"https://api.github.com/repos/technoweenie/attachment_fu/git/commits{/sha}","comments_url":"https://api.github.com/repos/technoweenie/attachment_fu/comments{/number}","issue_comment_url":"https://api.github.com/repos/technoweenie/attachment_fu/issues/comments{/number}","contents_url":"https://api.github.com/repos/technoweenie/attachment_fu/contents/{+path}","compare_url":"https://api.github.com/repos/technoweenie/attachment_fu/compare/{base}...{head}","merges_url":"https://api.github.com/repos/technoweenie/attachment_fu/merges","archive_url":"https://api.github.com/repos/technoweenie/attachment_fu/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/technoweenie/attachment_fu/downloads","issues_url":"https://api.github.com/repos/technoweenie/attachment_fu/issues{/number}","pulls_url":"https://api.github.com/repos/technoweenie/attachment_fu/pulls{/number}","milestones_url":"https://api.github.com/repos/technoweenie/attachment_fu/milestones{/number}","notifications_url":"https://api.github.com/repos/technoweenie/attachment_fu/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/technoweenie/attachment_fu/labels{/name}","releases_url":"https://api.github.com/repos/technoweenie/attachment_fu/releases{/id}","deployments_url":"https://api.github.com/repos/technoweenie/attachment_fu/deployments"},{"id":48,"name":"microsis","full_name":"Caged/microsis","owner":{"login":"Caged","id":25,"avatar_url":"https://avatars3.githubusercontent.com/u/25?v=4","gravatar_id":"","url":"https://api.github.com/users/Caged","html_url":"https://github.com/Caged","followers_url":"https://api.github.com/users/Caged/followers","following_url":"https://api.github.com/users/Caged/following{/other_user}","gists_url":"https://api.github.com/users/Caged/gists{/gist_id}","starred_url":"https://api.github.com/users/Caged/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Caged/subscriptions","organizations_url":"https://api.github.com/users/Caged/orgs","repos_url":"https://api.github.com/users/Caged/repos","events_url":"https://api.github.com/users/Caged/events{/privacy}","received_events_url":"https://api.github.com/users/Caged/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/Caged/microsis","description":"SUPER OLD STUFF","fork":false,"url":"https://api.github.com/repos/Caged/microsis","forks_url":"https://api.github.com/repos/Caged/microsis/forks","keys_url":"https://api.github.com/repos/Caged/microsis/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Caged/microsis/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Caged/microsis/teams","hooks_url":"https://api.github.com/repos/Caged/microsis/hooks","issue_events_url":"https://api.github.com/repos/Caged/microsis/issues/events{/number}","events_url":"https://api.github.com/repos/Caged/microsis/events","assignees_url":"https://api.github.com/repos/Caged/microsis/assignees{/user}","branches_url":"https://api.github.com/repos/Caged/microsis/branches{/branch}","tags_url":"https://api.github.com/repos/Caged/microsis/tags","blobs_url":"https://api.github.com/repos/Caged/microsis/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Caged/microsis/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Caged/microsis/git/refs{/sha}","trees_url":"https://api.github.com/repos/Caged/microsis/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Caged/microsis/statuses/{sha}","languages_url":"https://api.github.com/repos/Caged/microsis/languages","stargazers_url":"https://api.github.com/repos/Caged/microsis/stargazers","contributors_url":"https://api.github.com/repos/Caged/microsis/contributors","subscribers_url":"https://api.github.com/repos/Caged/microsis/subscribers","subscription_url":"https://api.github.com/repos/Caged/microsis/subscription","commits_url":"https://api.github.com/repos/Caged/microsis/commits{/sha}","git_commits_url":"https://api.github.com/repos/Caged/microsis/git/commits{/sha}","comments_url":"https://api.github.com/repos/Caged/microsis/comments{/number}","issue_comment_url":"https://api.github.com/repos/Caged/microsis/issues/comments{/number}","contents_url":"https://api.github.com/repos/Caged/microsis/contents/{+path}","compare_url":"https://api.github.com/repos/Caged/microsis/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Caged/microsis/merges","archive_url":"https://api.github.com/repos/Caged/microsis/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Caged/microsis/downloads","issues_url":"https://api.github.com/repos/Caged/microsis/issues{/number}","pulls_url":"https://api.github.com/repos/Caged/microsis/pulls{/number}","milestones_url":"https://api.github.com/repos/Caged/microsis/milestones{/number}","notifications_url":"https://api.github.com/repos/Caged/microsis/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Caged/microsis/labels{/name}","releases_url":"https://api.github.com/repos/Caged/microsis/releases{/id}","deployments_url":"https://api.github.com/repos/Caged/microsis/deployments"},{"id":52,"name":"s3","full_name":"anotherjesse/s3","owner":{"login":"anotherjesse","id":27,"avatar_url":"https://avatars3.githubusercontent.com/u/27?v=4","gravatar_id":"","url":"https://api.github.com/users/anotherjesse","html_url":"https://github.com/anotherjesse","followers_url":"https://api.github.com/users/anotherjesse/followers","following_url":"https://api.github.com/users/anotherjesse/following{/other_user}","gists_url":"https://api.github.com/users/anotherjesse/gists{/gist_id}","starred_url":"https://api.github.com/users/anotherjesse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anotherjesse/subscriptions","organizations_url":"https://api.github.com/users/anotherjesse/orgs","repos_url":"https://api.github.com/users/anotherjesse/repos","events_url":"https://api.github.com/users/anotherjesse/events{/privacy}","received_events_url":"https://api.github.com/users/anotherjesse/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/anotherjesse/s3","description":"psuedo s3 protocol for mozilla browsers","fork":false,"url":"https://api.github.com/repos/anotherjesse/s3","forks_url":"https://api.github.com/repos/anotherjesse/s3/forks","keys_url":"https://api.github.com/repos/anotherjesse/s3/keys{/key_id}","collaborators_url":"https://api.github.com/repos/anotherjesse/s3/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/anotherjesse/s3/teams","hooks_url":"https://api.github.com/repos/anotherjesse/s3/hooks","issue_events_url":"https://api.github.com/repos/anotherjesse/s3/issues/events{/number}","events_url":"https://api.github.com/repos/anotherjesse/s3/events","assignees_url":"https://api.github.com/repos/anotherjesse/s3/assignees{/user}","branches_url":"https://api.github.com/repos/anotherjesse/s3/branches{/branch}","tags_url":"https://api.github.com/repos/anotherjesse/s3/tags","blobs_url":"https://api.github.com/repos/anotherjesse/s3/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/anotherjesse/s3/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/anotherjesse/s3/git/refs{/sha}","trees_url":"https://api.github.com/repos/anotherjesse/s3/git/trees{/sha}","statuses_url":"https://api.github.com/repos/anotherjesse/s3/statuses/{sha}","languages_url":"https://api.github.com/repos/anotherjesse/s3/languages","stargazers_url":"https://api.github.com/repos/anotherjesse/s3/stargazers","contributors_url":"https://api.github.com/repos/anotherjesse/s3/contributors","subscribers_url":"https://api.github.com/repos/anotherjesse/s3/subscribers","subscription_url":"https://api.github.com/repos/anotherjesse/s3/subscription","commits_url":"https://api.github.com/repos/anotherjesse/s3/commits{/sha}","git_commits_url":"https://api.github.com/repos/anotherjesse/s3/git/commits{/sha}","comments_url":"https://api.github.com/repos/anotherjesse/s3/comments{/number}","issue_comment_url":"https://api.github.com/repos/anotherjesse/s3/issues/comments{/number}","contents_url":"https://api.github.com/repos/anotherjesse/s3/contents/{+path}","compare_url":"https://api.github.com/repos/anotherjesse/s3/compare/{base}...{head}","merges_url":"https://api.github.com/repos/anotherjesse/s3/merges","archive_url":"https://api.github.com/repos/anotherjesse/s3/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/anotherjesse/s3/downloads","issues_url":"https://api.github.com/repos/anotherjesse/s3/issues{/number}","pulls_url":"https://api.github.com/repos/anotherjesse/s3/pulls{/number}","milestones_url":"https://api.github.com/repos/anotherjesse/s3/milestones{/number}","notifications_url":"https://api.github.com/repos/anotherjesse/s3/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/anotherjesse/s3/labels{/name}","releases_url":"https://api.github.com/repos/anotherjesse/s3/releases{/id}","deployments_url":"https://api.github.com/repos/anotherjesse/s3/deployments"},{"id":53,"name":"taboo","full_name":"anotherjesse/taboo","owner":{"login":"anotherjesse","id":27,"avatar_url":"https://avatars3.githubusercontent.com/u/27?v=4","gravatar_id":"","url":"https://api.github.com/users/anotherjesse","html_url":"https://github.com/anotherjesse","followers_url":"https://api.github.com/users/anotherjesse/followers","following_url":"https://api.github.com/users/anotherjesse/following{/other_user}","gists_url":"https://api.github.com/users/anotherjesse/gists{/gist_id}","starred_url":"https://api.github.com/users/anotherjesse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anotherjesse/subscriptions","organizations_url":"https://api.github.com/users/anotherjesse/orgs","repos_url":"https://api.github.com/users/anotherjesse/repos","events_url":"https://api.github.com/users/anotherjesse/events{/privacy}","received_events_url":"https://api.github.com/users/anotherjesse/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/anotherjesse/taboo","description":"The solution for tabitus of the browser ","fork":false,"url":"https://api.github.com/repos/anotherjesse/taboo","forks_url":"https://api.github.com/repos/anotherjesse/taboo/forks","keys_url":"https://api.github.com/repos/anotherjesse/taboo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/anotherjesse/taboo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/anotherjesse/taboo/teams","hooks_url":"https://api.github.com/repos/anotherjesse/taboo/hooks","issue_events_url":"https://api.github.com/repos/anotherjesse/taboo/issues/events{/number}","events_url":"https://api.github.com/repos/anotherjesse/taboo/events","assignees_url":"https://api.github.com/repos/anotherjesse/taboo/assignees{/user}","branches_url":"https://api.github.com/repos/anotherjesse/taboo/branches{/branch}","tags_url":"https://api.github.com/repos/anotherjesse/taboo/tags","blobs_url":"https://api.github.com/repos/anotherjesse/taboo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/anotherjesse/taboo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/anotherjesse/taboo/git/refs{/sha}","trees_url":"https://api.github.com/repos/anotherjesse/taboo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/anotherjesse/taboo/statuses/{sha}","languages_url":"https://api.github.com/repos/anotherjesse/taboo/languages","stargazers_url":"https://api.github.com/repos/anotherjesse/taboo/stargazers","contributors_url":"https://api.github.com/repos/anotherjesse/taboo/contributors","subscribers_url":"https://api.github.com/repos/anotherjesse/taboo/subscribers","subscription_url":"https://api.github.com/repos/anotherjesse/taboo/subscription","commits_url":"https://api.github.com/repos/anotherjesse/taboo/commits{/sha}","git_commits_url":"https://api.github.com/repos/anotherjesse/taboo/git/commits{/sha}","comments_url":"https://api.github.com/repos/anotherjesse/taboo/comments{/number}","issue_comment_url":"https://api.github.com/repos/anotherjesse/taboo/issues/comments{/number}","contents_url":"https://api.github.com/repos/anotherjesse/taboo/contents/{+path}","compare_url":"https://api.github.com/repos/anotherjesse/taboo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/anotherjesse/taboo/merges","archive_url":"https://api.github.com/repos/anotherjesse/taboo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/anotherjesse/taboo/downloads","issues_url":"https://api.github.com/repos/anotherjesse/taboo/issues{/number}","pulls_url":"https://api.github.com/repos/anotherjesse/taboo/pulls{/number}","milestones_url":"https://api.github.com/repos/anotherjesse/taboo/milestones{/number}","notifications_url":"https://api.github.com/repos/anotherjesse/taboo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/anotherjesse/taboo/labels{/name}","releases_url":"https://api.github.com/repos/anotherjesse/taboo/releases{/id}","deployments_url":"https://api.github.com/repos/anotherjesse/taboo/deployments"},{"id":54,"name":"foxtracs","full_name":"anotherjesse/foxtracs","owner":{"login":"anotherjesse","id":27,"avatar_url":"https://avatars3.githubusercontent.com/u/27?v=4","gravatar_id":"","url":"https://api.github.com/users/anotherjesse","html_url":"https://github.com/anotherjesse","followers_url":"https://api.github.com/users/anotherjesse/followers","following_url":"https://api.github.com/users/anotherjesse/following{/other_user}","gists_url":"https://api.github.com/users/anotherjesse/gists{/gist_id}","starred_url":"https://api.github.com/users/anotherjesse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anotherjesse/subscriptions","organizations_url":"https://api.github.com/users/anotherjesse/orgs","repos_url":"https://api.github.com/users/anotherjesse/repos","events_url":"https://api.github.com/users/anotherjesse/events{/privacy}","received_events_url":"https://api.github.com/users/anotherjesse/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/anotherjesse/foxtracs","description":"firefox trac integration","fork":false,"url":"https://api.github.com/repos/anotherjesse/foxtracs","forks_url":"https://api.github.com/repos/anotherjesse/foxtracs/forks","keys_url":"https://api.github.com/repos/anotherjesse/foxtracs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/anotherjesse/foxtracs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/anotherjesse/foxtracs/teams","hooks_url":"https://api.github.com/repos/anotherjesse/foxtracs/hooks","issue_events_url":"https://api.github.com/repos/anotherjesse/foxtracs/issues/events{/number}","events_url":"https://api.github.com/repos/anotherjesse/foxtracs/events","assignees_url":"https://api.github.com/repos/anotherjesse/foxtracs/assignees{/user}","branches_url":"https://api.github.com/repos/anotherjesse/foxtracs/branches{/branch}","tags_url":"https://api.github.com/repos/anotherjesse/foxtracs/tags","blobs_url":"https://api.github.com/repos/anotherjesse/foxtracs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/anotherjesse/foxtracs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/anotherjesse/foxtracs/git/refs{/sha}","trees_url":"https://api.github.com/repos/anotherjesse/foxtracs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/anotherjesse/foxtracs/statuses/{sha}","languages_url":"https://api.github.com/repos/anotherjesse/foxtracs/languages","stargazers_url":"https://api.github.com/repos/anotherjesse/foxtracs/stargazers","contributors_url":"https://api.github.com/repos/anotherjesse/foxtracs/contributors","subscribers_url":"https://api.github.com/repos/anotherjesse/foxtracs/subscribers","subscription_url":"https://api.github.com/repos/anotherjesse/foxtracs/subscription","commits_url":"https://api.github.com/repos/anotherjesse/foxtracs/commits{/sha}","git_commits_url":"https://api.github.com/repos/anotherjesse/foxtracs/git/commits{/sha}","comments_url":"https://api.github.com/repos/anotherjesse/foxtracs/comments{/number}","issue_comment_url":"https://api.github.com/repos/anotherjesse/foxtracs/issues/comments{/number}","contents_url":"https://api.github.com/repos/anotherjesse/foxtracs/contents/{+path}","compare_url":"https://api.github.com/repos/anotherjesse/foxtracs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/anotherjesse/foxtracs/merges","archive_url":"https://api.github.com/repos/anotherjesse/foxtracs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/anotherjesse/foxtracs/downloads","issues_url":"https://api.github.com/repos/anotherjesse/foxtracs/issues{/number}","pulls_url":"https://api.github.com/repos/anotherjesse/foxtracs/pulls{/number}","milestones_url":"https://api.github.com/repos/anotherjesse/foxtracs/milestones{/number}","notifications_url":"https://api.github.com/repos/anotherjesse/foxtracs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/anotherjesse/foxtracs/labels{/name}","releases_url":"https://api.github.com/repos/anotherjesse/foxtracs/releases{/id}","deployments_url":"https://api.github.com/repos/anotherjesse/foxtracs/deployments"},{"id":56,"name":"fotomatic","full_name":"anotherjesse/fotomatic","owner":{"login":"anotherjesse","id":27,"avatar_url":"https://avatars3.githubusercontent.com/u/27?v=4","gravatar_id":"","url":"https://api.github.com/users/anotherjesse","html_url":"https://github.com/anotherjesse","followers_url":"https://api.github.com/users/anotherjesse/followers","following_url":"https://api.github.com/users/anotherjesse/following{/other_user}","gists_url":"https://api.github.com/users/anotherjesse/gists{/gist_id}","starred_url":"https://api.github.com/users/anotherjesse/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/anotherjesse/subscriptions","organizations_url":"https://api.github.com/users/anotherjesse/orgs","repos_url":"https://api.github.com/users/anotherjesse/repos","events_url":"https://api.github.com/users/anotherjesse/events{/privacy}","received_events_url":"https://api.github.com/users/anotherjesse/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/anotherjesse/fotomatic","description":"Flash photo widget prototype - hacked at last SHDH of 2007","fork":false,"url":"https://api.github.com/repos/anotherjesse/fotomatic","forks_url":"https://api.github.com/repos/anotherjesse/fotomatic/forks","keys_url":"https://api.github.com/repos/anotherjesse/fotomatic/keys{/key_id}","collaborators_url":"https://api.github.com/repos/anotherjesse/fotomatic/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/anotherjesse/fotomatic/teams","hooks_url":"https://api.github.com/repos/anotherjesse/fotomatic/hooks","issue_events_url":"https://api.github.com/repos/anotherjesse/fotomatic/issues/events{/number}","events_url":"https://api.github.com/repos/anotherjesse/fotomatic/events","assignees_url":"https://api.github.com/repos/anotherjesse/fotomatic/assignees{/user}","branches_url":"https://api.github.com/repos/anotherjesse/fotomatic/branches{/branch}","tags_url":"https://api.github.com/repos/anotherjesse/fotomatic/tags","blobs_url":"https://api.github.com/repos/anotherjesse/fotomatic/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/anotherjesse/fotomatic/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/anotherjesse/fotomatic/git/refs{/sha}","trees_url":"https://api.github.com/repos/anotherjesse/fotomatic/git/trees{/sha}","statuses_url":"https://api.github.com/repos/anotherjesse/fotomatic/statuses/{sha}","languages_url":"https://api.github.com/repos/anotherjesse/fotomatic/languages","stargazers_url":"https://api.github.com/repos/anotherjesse/fotomatic/stargazers","contributors_url":"https://api.github.com/repos/anotherjesse/fotomatic/contributors","subscribers_url":"https://api.github.com/repos/anotherjesse/fotomatic/subscribers","subscription_url":"https://api.github.com/repos/anotherjesse/fotomatic/subscription","commits_url":"https://api.github.com/repos/anotherjesse/fotomatic/commits{/sha}","git_commits_url":"https://api.github.com/repos/anotherjesse/fotomatic/git/commits{/sha}","comments_url":"https://api.github.com/repos/anotherjesse/fotomatic/comments{/number}","issue_comment_url":"https://api.github.com/repos/anotherjesse/fotomatic/issues/comments{/number}","contents_url":"https://api.github.com/repos/anotherjesse/fotomatic/contents/{+path}","compare_url":"https://api.github.com/repos/anotherjesse/fotomatic/compare/{base}...{head}","merges_url":"https://api.github.com/repos/anotherjesse/fotomatic/merges","archive_url":"https://api.github.com/repos/anotherjesse/fotomatic/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/anotherjesse/fotomatic/downloads","issues_url":"https://api.github.com/repos/anotherjesse/fotomatic/issues{/number}","pulls_url":"https://api.github.com/repos/anotherjesse/fotomatic/pulls{/number}","milestones_url":"https://api.github.com/repos/anotherjesse/fotomatic/milestones{/number}","notifications_url":"https://api.github.com/repos/anotherjesse/fotomatic/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/anotherjesse/fotomatic/labels{/name}","releases_url":"https://api.github.com/repos/anotherjesse/fotomatic/releases{/id}","deployments_url":"https://api.github.com/repos/anotherjesse/fotomatic/deployments"},{"id":61,"name":"glowstick","full_name":"mojombo/glowstick","owner":{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4","gravatar_id":"","url":"https://api.github.com/users/mojombo","html_url":"https://github.com/mojombo","followers_url":"https://api.github.com/users/mojombo/followers","following_url":"https://api.github.com/users/mojombo/following{/other_user}","gists_url":"https://api.github.com/users/mojombo/gists{/gist_id}","starred_url":"https://api.github.com/users/mojombo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojombo/subscriptions","organizations_url":"https://api.github.com/users/mojombo/orgs","repos_url":"https://api.github.com/users/mojombo/repos","events_url":"https://api.github.com/users/mojombo/events{/privacy}","received_events_url":"https://api.github.com/users/mojombo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mojombo/glowstick","description":"A realtime, OpenGL graphing library for Ruby","fork":false,"url":"https://api.github.com/repos/mojombo/glowstick","forks_url":"https://api.github.com/repos/mojombo/glowstick/forks","keys_url":"https://api.github.com/repos/mojombo/glowstick/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mojombo/glowstick/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mojombo/glowstick/teams","hooks_url":"https://api.github.com/repos/mojombo/glowstick/hooks","issue_events_url":"https://api.github.com/repos/mojombo/glowstick/issues/events{/number}","events_url":"https://api.github.com/repos/mojombo/glowstick/events","assignees_url":"https://api.github.com/repos/mojombo/glowstick/assignees{/user}","branches_url":"https://api.github.com/repos/mojombo/glowstick/branches{/branch}","tags_url":"https://api.github.com/repos/mojombo/glowstick/tags","blobs_url":"https://api.github.com/repos/mojombo/glowstick/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mojombo/glowstick/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mojombo/glowstick/git/refs{/sha}","trees_url":"https://api.github.com/repos/mojombo/glowstick/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mojombo/glowstick/statuses/{sha}","languages_url":"https://api.github.com/repos/mojombo/glowstick/languages","stargazers_url":"https://api.github.com/repos/mojombo/glowstick/stargazers","contributors_url":"https://api.github.com/repos/mojombo/glowstick/contributors","subscribers_url":"https://api.github.com/repos/mojombo/glowstick/subscribers","subscription_url":"https://api.github.com/repos/mojombo/glowstick/subscription","commits_url":"https://api.github.com/repos/mojombo/glowstick/commits{/sha}","git_commits_url":"https://api.github.com/repos/mojombo/glowstick/git/commits{/sha}","comments_url":"https://api.github.com/repos/mojombo/glowstick/comments{/number}","issue_comment_url":"https://api.github.com/repos/mojombo/glowstick/issues/comments{/number}","contents_url":"https://api.github.com/repos/mojombo/glowstick/contents/{+path}","compare_url":"https://api.github.com/repos/mojombo/glowstick/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mojombo/glowstick/merges","archive_url":"https://api.github.com/repos/mojombo/glowstick/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mojombo/glowstick/downloads","issues_url":"https://api.github.com/repos/mojombo/glowstick/issues{/number}","pulls_url":"https://api.github.com/repos/mojombo/glowstick/pulls{/number}","milestones_url":"https://api.github.com/repos/mojombo/glowstick/milestones{/number}","notifications_url":"https://api.github.com/repos/mojombo/glowstick/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mojombo/glowstick/labels{/name}","releases_url":"https://api.github.com/repos/mojombo/glowstick/releases{/id}","deployments_url":"https://api.github.com/repos/mojombo/glowstick/deployments"},{"id":63,"name":"starling","full_name":"defunkt/starling","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/starling","description":null,"fork":false,"url":"https://api.github.com/repos/defunkt/starling","forks_url":"https://api.github.com/repos/defunkt/starling/forks","keys_url":"https://api.github.com/repos/defunkt/starling/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/starling/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/starling/teams","hooks_url":"https://api.github.com/repos/defunkt/starling/hooks","issue_events_url":"https://api.github.com/repos/defunkt/starling/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/starling/events","assignees_url":"https://api.github.com/repos/defunkt/starling/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/starling/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/starling/tags","blobs_url":"https://api.github.com/repos/defunkt/starling/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/starling/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/starling/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/starling/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/starling/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/starling/languages","stargazers_url":"https://api.github.com/repos/defunkt/starling/stargazers","contributors_url":"https://api.github.com/repos/defunkt/starling/contributors","subscribers_url":"https://api.github.com/repos/defunkt/starling/subscribers","subscription_url":"https://api.github.com/repos/defunkt/starling/subscription","commits_url":"https://api.github.com/repos/defunkt/starling/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/starling/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/starling/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/starling/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/starling/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/starling/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/starling/merges","archive_url":"https://api.github.com/repos/defunkt/starling/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/starling/downloads","issues_url":"https://api.github.com/repos/defunkt/starling/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/starling/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/starling/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/starling/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/starling/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/starling/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/starling/deployments"},{"id":65,"name":"merb-more","full_name":"wycats/merb-more","owner":{"login":"wycats","id":4,"avatar_url":"https://avatars0.githubusercontent.com/u/4?v=4","gravatar_id":"","url":"https://api.github.com/users/wycats","html_url":"https://github.com/wycats","followers_url":"https://api.github.com/users/wycats/followers","following_url":"https://api.github.com/users/wycats/following{/other_user}","gists_url":"https://api.github.com/users/wycats/gists{/gist_id}","starred_url":"https://api.github.com/users/wycats/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wycats/subscriptions","organizations_url":"https://api.github.com/users/wycats/orgs","repos_url":"https://api.github.com/users/wycats/repos","events_url":"https://api.github.com/users/wycats/events{/privacy}","received_events_url":"https://api.github.com/users/wycats/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wycats/merb-more","description":"Merb More: The Full Stack. Take what you need; leave what you don\'t.","fork":false,"url":"https://api.github.com/repos/wycats/merb-more","forks_url":"https://api.github.com/repos/wycats/merb-more/forks","keys_url":"https://api.github.com/repos/wycats/merb-more/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wycats/merb-more/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wycats/merb-more/teams","hooks_url":"https://api.github.com/repos/wycats/merb-more/hooks","issue_events_url":"https://api.github.com/repos/wycats/merb-more/issues/events{/number}","events_url":"https://api.github.com/repos/wycats/merb-more/events","assignees_url":"https://api.github.com/repos/wycats/merb-more/assignees{/user}","branches_url":"https://api.github.com/repos/wycats/merb-more/branches{/branch}","tags_url":"https://api.github.com/repos/wycats/merb-more/tags","blobs_url":"https://api.github.com/repos/wycats/merb-more/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wycats/merb-more/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wycats/merb-more/git/refs{/sha}","trees_url":"https://api.github.com/repos/wycats/merb-more/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wycats/merb-more/statuses/{sha}","languages_url":"https://api.github.com/repos/wycats/merb-more/languages","stargazers_url":"https://api.github.com/repos/wycats/merb-more/stargazers","contributors_url":"https://api.github.com/repos/wycats/merb-more/contributors","subscribers_url":"https://api.github.com/repos/wycats/merb-more/subscribers","subscription_url":"https://api.github.com/repos/wycats/merb-more/subscription","commits_url":"https://api.github.com/repos/wycats/merb-more/commits{/sha}","git_commits_url":"https://api.github.com/repos/wycats/merb-more/git/commits{/sha}","comments_url":"https://api.github.com/repos/wycats/merb-more/comments{/number}","issue_comment_url":"https://api.github.com/repos/wycats/merb-more/issues/comments{/number}","contents_url":"https://api.github.com/repos/wycats/merb-more/contents/{+path}","compare_url":"https://api.github.com/repos/wycats/merb-more/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wycats/merb-more/merges","archive_url":"https://api.github.com/repos/wycats/merb-more/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wycats/merb-more/downloads","issues_url":"https://api.github.com/repos/wycats/merb-more/issues{/number}","pulls_url":"https://api.github.com/repos/wycats/merb-more/pulls{/number}","milestones_url":"https://api.github.com/repos/wycats/merb-more/milestones{/number}","notifications_url":"https://api.github.com/repos/wycats/merb-more/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wycats/merb-more/labels{/name}","releases_url":"https://api.github.com/repos/wycats/merb-more/releases{/id}","deployments_url":"https://api.github.com/repos/wycats/merb-more/deployments"},{"id":68,"name":"thin","full_name":"macournoyer/thin","owner":{"login":"macournoyer","id":22,"avatar_url":"https://avatars3.githubusercontent.com/u/22?v=4","gravatar_id":"","url":"https://api.github.com/users/macournoyer","html_url":"https://github.com/macournoyer","followers_url":"https://api.github.com/users/macournoyer/followers","following_url":"https://api.github.com/users/macournoyer/following{/other_user}","gists_url":"https://api.github.com/users/macournoyer/gists{/gist_id}","starred_url":"https://api.github.com/users/macournoyer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/macournoyer/subscriptions","organizations_url":"https://api.github.com/users/macournoyer/orgs","repos_url":"https://api.github.com/users/macournoyer/repos","events_url":"https://api.github.com/users/macournoyer/events{/privacy}","received_events_url":"https://api.github.com/users/macournoyer/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/macournoyer/thin","description":"A very fast & simple Ruby web server","fork":false,"url":"https://api.github.com/repos/macournoyer/thin","forks_url":"https://api.github.com/repos/macournoyer/thin/forks","keys_url":"https://api.github.com/repos/macournoyer/thin/keys{/key_id}","collaborators_url":"https://api.github.com/repos/macournoyer/thin/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/macournoyer/thin/teams","hooks_url":"https://api.github.com/repos/macournoyer/thin/hooks","issue_events_url":"https://api.github.com/repos/macournoyer/thin/issues/events{/number}","events_url":"https://api.github.com/repos/macournoyer/thin/events","assignees_url":"https://api.github.com/repos/macournoyer/thin/assignees{/user}","branches_url":"https://api.github.com/repos/macournoyer/thin/branches{/branch}","tags_url":"https://api.github.com/repos/macournoyer/thin/tags","blobs_url":"https://api.github.com/repos/macournoyer/thin/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/macournoyer/thin/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/macournoyer/thin/git/refs{/sha}","trees_url":"https://api.github.com/repos/macournoyer/thin/git/trees{/sha}","statuses_url":"https://api.github.com/repos/macournoyer/thin/statuses/{sha}","languages_url":"https://api.github.com/repos/macournoyer/thin/languages","stargazers_url":"https://api.github.com/repos/macournoyer/thin/stargazers","contributors_url":"https://api.github.com/repos/macournoyer/thin/contributors","subscribers_url":"https://api.github.com/repos/macournoyer/thin/subscribers","subscription_url":"https://api.github.com/repos/macournoyer/thin/subscription","commits_url":"https://api.github.com/repos/macournoyer/thin/commits{/sha}","git_commits_url":"https://api.github.com/repos/macournoyer/thin/git/commits{/sha}","comments_url":"https://api.github.com/repos/macournoyer/thin/comments{/number}","issue_comment_url":"https://api.github.com/repos/macournoyer/thin/issues/comments{/number}","contents_url":"https://api.github.com/repos/macournoyer/thin/contents/{+path}","compare_url":"https://api.github.com/repos/macournoyer/thin/compare/{base}...{head}","merges_url":"https://api.github.com/repos/macournoyer/thin/merges","archive_url":"https://api.github.com/repos/macournoyer/thin/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/macournoyer/thin/downloads","issues_url":"https://api.github.com/repos/macournoyer/thin/issues{/number}","pulls_url":"https://api.github.com/repos/macournoyer/thin/pulls{/number}","milestones_url":"https://api.github.com/repos/macournoyer/thin/milestones{/number}","notifications_url":"https://api.github.com/repos/macournoyer/thin/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/macournoyer/thin/labels{/name}","releases_url":"https://api.github.com/repos/macournoyer/thin/releases{/id}","deployments_url":"https://api.github.com/repos/macournoyer/thin/deployments"},{"id":71,"name":"resource_controller","full_name":"jamesgolick/resource_controller","owner":{"login":"jamesgolick","id":37,"avatar_url":"https://avatars2.githubusercontent.com/u/37?v=4","gravatar_id":"","url":"https://api.github.com/users/jamesgolick","html_url":"https://github.com/jamesgolick","followers_url":"https://api.github.com/users/jamesgolick/followers","following_url":"https://api.github.com/users/jamesgolick/following{/other_user}","gists_url":"https://api.github.com/users/jamesgolick/gists{/gist_id}","starred_url":"https://api.github.com/users/jamesgolick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jamesgolick/subscriptions","organizations_url":"https://api.github.com/users/jamesgolick/orgs","repos_url":"https://api.github.com/users/jamesgolick/repos","events_url":"https://api.github.com/users/jamesgolick/events{/privacy}","received_events_url":"https://api.github.com/users/jamesgolick/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jamesgolick/resource_controller","description":"Rails RESTful controller abstraction plugin.","fork":false,"url":"https://api.github.com/repos/jamesgolick/resource_controller","forks_url":"https://api.github.com/repos/jamesgolick/resource_controller/forks","keys_url":"https://api.github.com/repos/jamesgolick/resource_controller/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jamesgolick/resource_controller/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jamesgolick/resource_controller/teams","hooks_url":"https://api.github.com/repos/jamesgolick/resource_controller/hooks","issue_events_url":"https://api.github.com/repos/jamesgolick/resource_controller/issues/events{/number}","events_url":"https://api.github.com/repos/jamesgolick/resource_controller/events","assignees_url":"https://api.github.com/repos/jamesgolick/resource_controller/assignees{/user}","branches_url":"https://api.github.com/repos/jamesgolick/resource_controller/branches{/branch}","tags_url":"https://api.github.com/repos/jamesgolick/resource_controller/tags","blobs_url":"https://api.github.com/repos/jamesgolick/resource_controller/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jamesgolick/resource_controller/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jamesgolick/resource_controller/git/refs{/sha}","trees_url":"https://api.github.com/repos/jamesgolick/resource_controller/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jamesgolick/resource_controller/statuses/{sha}","languages_url":"https://api.github.com/repos/jamesgolick/resource_controller/languages","stargazers_url":"https://api.github.com/repos/jamesgolick/resource_controller/stargazers","contributors_url":"https://api.github.com/repos/jamesgolick/resource_controller/contributors","subscribers_url":"https://api.github.com/repos/jamesgolick/resource_controller/subscribers","subscription_url":"https://api.github.com/repos/jamesgolick/resource_controller/subscription","commits_url":"https://api.github.com/repos/jamesgolick/resource_controller/commits{/sha}","git_commits_url":"https://api.github.com/repos/jamesgolick/resource_controller/git/commits{/sha}","comments_url":"https://api.github.com/repos/jamesgolick/resource_controller/comments{/number}","issue_comment_url":"https://api.github.com/repos/jamesgolick/resource_controller/issues/comments{/number}","contents_url":"https://api.github.com/repos/jamesgolick/resource_controller/contents/{+path}","compare_url":"https://api.github.com/repos/jamesgolick/resource_controller/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jamesgolick/resource_controller/merges","archive_url":"https://api.github.com/repos/jamesgolick/resource_controller/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jamesgolick/resource_controller/downloads","issues_url":"https://api.github.com/repos/jamesgolick/resource_controller/issues{/number}","pulls_url":"https://api.github.com/repos/jamesgolick/resource_controller/pulls{/number}","milestones_url":"https://api.github.com/repos/jamesgolick/resource_controller/milestones{/number}","notifications_url":"https://api.github.com/repos/jamesgolick/resource_controller/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jamesgolick/resource_controller/labels{/name}","releases_url":"https://api.github.com/repos/jamesgolick/resource_controller/releases{/id}","deployments_url":"https://api.github.com/repos/jamesgolick/resource_controller/deployments"},{"id":73,"name":"markaby","full_name":"jamesgolick/markaby","owner":{"login":"jamesgolick","id":37,"avatar_url":"https://avatars2.githubusercontent.com/u/37?v=4","gravatar_id":"","url":"https://api.github.com/users/jamesgolick","html_url":"https://github.com/jamesgolick","followers_url":"https://api.github.com/users/jamesgolick/followers","following_url":"https://api.github.com/users/jamesgolick/following{/other_user}","gists_url":"https://api.github.com/users/jamesgolick/gists{/gist_id}","starred_url":"https://api.github.com/users/jamesgolick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jamesgolick/subscriptions","organizations_url":"https://api.github.com/users/jamesgolick/orgs","repos_url":"https://api.github.com/users/jamesgolick/repos","events_url":"https://api.github.com/users/jamesgolick/events{/privacy}","received_events_url":"https://api.github.com/users/jamesgolick/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jamesgolick/markaby","description":"Markaby patched to run on rails 2.0.2","fork":false,"url":"https://api.github.com/repos/jamesgolick/markaby","forks_url":"https://api.github.com/repos/jamesgolick/markaby/forks","keys_url":"https://api.github.com/repos/jamesgolick/markaby/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jamesgolick/markaby/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jamesgolick/markaby/teams","hooks_url":"https://api.github.com/repos/jamesgolick/markaby/hooks","issue_events_url":"https://api.github.com/repos/jamesgolick/markaby/issues/events{/number}","events_url":"https://api.github.com/repos/jamesgolick/markaby/events","assignees_url":"https://api.github.com/repos/jamesgolick/markaby/assignees{/user}","branches_url":"https://api.github.com/repos/jamesgolick/markaby/branches{/branch}","tags_url":"https://api.github.com/repos/jamesgolick/markaby/tags","blobs_url":"https://api.github.com/repos/jamesgolick/markaby/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jamesgolick/markaby/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jamesgolick/markaby/git/refs{/sha}","trees_url":"https://api.github.com/repos/jamesgolick/markaby/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jamesgolick/markaby/statuses/{sha}","languages_url":"https://api.github.com/repos/jamesgolick/markaby/languages","stargazers_url":"https://api.github.com/repos/jamesgolick/markaby/stargazers","contributors_url":"https://api.github.com/repos/jamesgolick/markaby/contributors","subscribers_url":"https://api.github.com/repos/jamesgolick/markaby/subscribers","subscription_url":"https://api.github.com/repos/jamesgolick/markaby/subscription","commits_url":"https://api.github.com/repos/jamesgolick/markaby/commits{/sha}","git_commits_url":"https://api.github.com/repos/jamesgolick/markaby/git/commits{/sha}","comments_url":"https://api.github.com/repos/jamesgolick/markaby/comments{/number}","issue_comment_url":"https://api.github.com/repos/jamesgolick/markaby/issues/comments{/number}","contents_url":"https://api.github.com/repos/jamesgolick/markaby/contents/{+path}","compare_url":"https://api.github.com/repos/jamesgolick/markaby/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jamesgolick/markaby/merges","archive_url":"https://api.github.com/repos/jamesgolick/markaby/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jamesgolick/markaby/downloads","issues_url":"https://api.github.com/repos/jamesgolick/markaby/issues{/number}","pulls_url":"https://api.github.com/repos/jamesgolick/markaby/pulls{/number}","milestones_url":"https://api.github.com/repos/jamesgolick/markaby/milestones{/number}","notifications_url":"https://api.github.com/repos/jamesgolick/markaby/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jamesgolick/markaby/labels{/name}","releases_url":"https://api.github.com/repos/jamesgolick/markaby/releases{/id}","deployments_url":"https://api.github.com/repos/jamesgolick/markaby/deployments"},{"id":74,"name":"enum_field","full_name":"jamesgolick/enum_field","owner":{"login":"jamesgolick","id":37,"avatar_url":"https://avatars2.githubusercontent.com/u/37?v=4","gravatar_id":"","url":"https://api.github.com/users/jamesgolick","html_url":"https://github.com/jamesgolick","followers_url":"https://api.github.com/users/jamesgolick/followers","following_url":"https://api.github.com/users/jamesgolick/following{/other_user}","gists_url":"https://api.github.com/users/jamesgolick/gists{/gist_id}","starred_url":"https://api.github.com/users/jamesgolick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jamesgolick/subscriptions","organizations_url":"https://api.github.com/users/jamesgolick/orgs","repos_url":"https://api.github.com/users/jamesgolick/repos","events_url":"https://api.github.com/users/jamesgolick/events{/privacy}","received_events_url":"https://api.github.com/users/jamesgolick/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jamesgolick/enum_field","description":null,"fork":false,"url":"https://api.github.com/repos/jamesgolick/enum_field","forks_url":"https://api.github.com/repos/jamesgolick/enum_field/forks","keys_url":"https://api.github.com/repos/jamesgolick/enum_field/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jamesgolick/enum_field/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jamesgolick/enum_field/teams","hooks_url":"https://api.github.com/repos/jamesgolick/enum_field/hooks","issue_events_url":"https://api.github.com/repos/jamesgolick/enum_field/issues/events{/number}","events_url":"https://api.github.com/repos/jamesgolick/enum_field/events","assignees_url":"https://api.github.com/repos/jamesgolick/enum_field/assignees{/user}","branches_url":"https://api.github.com/repos/jamesgolick/enum_field/branches{/branch}","tags_url":"https://api.github.com/repos/jamesgolick/enum_field/tags","blobs_url":"https://api.github.com/repos/jamesgolick/enum_field/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jamesgolick/enum_field/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jamesgolick/enum_field/git/refs{/sha}","trees_url":"https://api.github.com/repos/jamesgolick/enum_field/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jamesgolick/enum_field/statuses/{sha}","languages_url":"https://api.github.com/repos/jamesgolick/enum_field/languages","stargazers_url":"https://api.github.com/repos/jamesgolick/enum_field/stargazers","contributors_url":"https://api.github.com/repos/jamesgolick/enum_field/contributors","subscribers_url":"https://api.github.com/repos/jamesgolick/enum_field/subscribers","subscription_url":"https://api.github.com/repos/jamesgolick/enum_field/subscription","commits_url":"https://api.github.com/repos/jamesgolick/enum_field/commits{/sha}","git_commits_url":"https://api.github.com/repos/jamesgolick/enum_field/git/commits{/sha}","comments_url":"https://api.github.com/repos/jamesgolick/enum_field/comments{/number}","issue_comment_url":"https://api.github.com/repos/jamesgolick/enum_field/issues/comments{/number}","contents_url":"https://api.github.com/repos/jamesgolick/enum_field/contents/{+path}","compare_url":"https://api.github.com/repos/jamesgolick/enum_field/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jamesgolick/enum_field/merges","archive_url":"https://api.github.com/repos/jamesgolick/enum_field/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jamesgolick/enum_field/downloads","issues_url":"https://api.github.com/repos/jamesgolick/enum_field/issues{/number}","pulls_url":"https://api.github.com/repos/jamesgolick/enum_field/pulls{/number}","milestones_url":"https://api.github.com/repos/jamesgolick/enum_field/milestones{/number}","notifications_url":"https://api.github.com/repos/jamesgolick/enum_field/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jamesgolick/enum_field/labels{/name}","releases_url":"https://api.github.com/repos/jamesgolick/enum_field/releases{/id}","deployments_url":"https://api.github.com/repos/jamesgolick/enum_field/deployments"},{"id":75,"name":"subtlety","full_name":"defunkt/subtlety","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/subtlety","description":"Subtlety: SVN => RSS, hAtom => Atom","fork":false,"url":"https://api.github.com/repos/defunkt/subtlety","forks_url":"https://api.github.com/repos/defunkt/subtlety/forks","keys_url":"https://api.github.com/repos/defunkt/subtlety/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/subtlety/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/subtlety/teams","hooks_url":"https://api.github.com/repos/defunkt/subtlety/hooks","issue_events_url":"https://api.github.com/repos/defunkt/subtlety/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/subtlety/events","assignees_url":"https://api.github.com/repos/defunkt/subtlety/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/subtlety/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/subtlety/tags","blobs_url":"https://api.github.com/repos/defunkt/subtlety/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/subtlety/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/subtlety/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/subtlety/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/subtlety/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/subtlety/languages","stargazers_url":"https://api.github.com/repos/defunkt/subtlety/stargazers","contributors_url":"https://api.github.com/repos/defunkt/subtlety/contributors","subscribers_url":"https://api.github.com/repos/defunkt/subtlety/subscribers","subscription_url":"https://api.github.com/repos/defunkt/subtlety/subscription","commits_url":"https://api.github.com/repos/defunkt/subtlety/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/subtlety/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/subtlety/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/subtlety/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/subtlety/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/subtlety/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/subtlety/merges","archive_url":"https://api.github.com/repos/defunkt/subtlety/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/subtlety/downloads","issues_url":"https://api.github.com/repos/defunkt/subtlety/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/subtlety/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/subtlety/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/subtlety/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/subtlety/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/subtlety/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/subtlety/deployments"},{"id":92,"name":"zippy","full_name":"defunkt/zippy","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/zippy","description":"Zippy lil’ zipcode lib.","fork":false,"url":"https://api.github.com/repos/defunkt/zippy","forks_url":"https://api.github.com/repos/defunkt/zippy/forks","keys_url":"https://api.github.com/repos/defunkt/zippy/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/zippy/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/zippy/teams","hooks_url":"https://api.github.com/repos/defunkt/zippy/hooks","issue_events_url":"https://api.github.com/repos/defunkt/zippy/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/zippy/events","assignees_url":"https://api.github.com/repos/defunkt/zippy/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/zippy/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/zippy/tags","blobs_url":"https://api.github.com/repos/defunkt/zippy/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/zippy/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/zippy/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/zippy/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/zippy/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/zippy/languages","stargazers_url":"https://api.github.com/repos/defunkt/zippy/stargazers","contributors_url":"https://api.github.com/repos/defunkt/zippy/contributors","subscribers_url":"https://api.github.com/repos/defunkt/zippy/subscribers","subscription_url":"https://api.github.com/repos/defunkt/zippy/subscription","commits_url":"https://api.github.com/repos/defunkt/zippy/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/zippy/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/zippy/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/zippy/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/zippy/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/zippy/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/zippy/merges","archive_url":"https://api.github.com/repos/defunkt/zippy/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/zippy/downloads","issues_url":"https://api.github.com/repos/defunkt/zippy/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/zippy/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/zippy/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/zippy/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/zippy/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/zippy/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/zippy/deployments"},{"id":93,"name":"cache_fu","full_name":"defunkt/cache_fu","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/cache_fu","description":"Ghost from Christmas past. Unmaintained.","fork":false,"url":"https://api.github.com/repos/defunkt/cache_fu","forks_url":"https://api.github.com/repos/defunkt/cache_fu/forks","keys_url":"https://api.github.com/repos/defunkt/cache_fu/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/cache_fu/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/cache_fu/teams","hooks_url":"https://api.github.com/repos/defunkt/cache_fu/hooks","issue_events_url":"https://api.github.com/repos/defunkt/cache_fu/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/cache_fu/events","assignees_url":"https://api.github.com/repos/defunkt/cache_fu/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/cache_fu/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/cache_fu/tags","blobs_url":"https://api.github.com/repos/defunkt/cache_fu/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/cache_fu/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/cache_fu/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/cache_fu/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/cache_fu/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/cache_fu/languages","stargazers_url":"https://api.github.com/repos/defunkt/cache_fu/stargazers","contributors_url":"https://api.github.com/repos/defunkt/cache_fu/contributors","subscribers_url":"https://api.github.com/repos/defunkt/cache_fu/subscribers","subscription_url":"https://api.github.com/repos/defunkt/cache_fu/subscription","commits_url":"https://api.github.com/repos/defunkt/cache_fu/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/cache_fu/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/cache_fu/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/cache_fu/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/cache_fu/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/cache_fu/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/cache_fu/merges","archive_url":"https://api.github.com/repos/defunkt/cache_fu/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/cache_fu/downloads","issues_url":"https://api.github.com/repos/defunkt/cache_fu/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/cache_fu/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/cache_fu/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/cache_fu/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/cache_fu/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/cache_fu/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/cache_fu/deployments"},{"id":95,"name":"phosphor","full_name":"KirinDave/phosphor","owner":{"login":"KirinDave","id":36,"avatar_url":"https://avatars2.githubusercontent.com/u/36?v=4","gravatar_id":"","url":"https://api.github.com/users/KirinDave","html_url":"https://github.com/KirinDave","followers_url":"https://api.github.com/users/KirinDave/followers","following_url":"https://api.github.com/users/KirinDave/following{/other_user}","gists_url":"https://api.github.com/users/KirinDave/gists{/gist_id}","starred_url":"https://api.github.com/users/KirinDave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KirinDave/subscriptions","organizations_url":"https://api.github.com/users/KirinDave/orgs","repos_url":"https://api.github.com/users/KirinDave/repos","events_url":"https://api.github.com/users/KirinDave/events{/privacy}","received_events_url":"https://api.github.com/users/KirinDave/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/KirinDave/phosphor","description":" A ruby library to inexpensively emit runtime events via Dtrace","fork":false,"url":"https://api.github.com/repos/KirinDave/phosphor","forks_url":"https://api.github.com/repos/KirinDave/phosphor/forks","keys_url":"https://api.github.com/repos/KirinDave/phosphor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/KirinDave/phosphor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/KirinDave/phosphor/teams","hooks_url":"https://api.github.com/repos/KirinDave/phosphor/hooks","issue_events_url":"https://api.github.com/repos/KirinDave/phosphor/issues/events{/number}","events_url":"https://api.github.com/repos/KirinDave/phosphor/events","assignees_url":"https://api.github.com/repos/KirinDave/phosphor/assignees{/user}","branches_url":"https://api.github.com/repos/KirinDave/phosphor/branches{/branch}","tags_url":"https://api.github.com/repos/KirinDave/phosphor/tags","blobs_url":"https://api.github.com/repos/KirinDave/phosphor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/KirinDave/phosphor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/KirinDave/phosphor/git/refs{/sha}","trees_url":"https://api.github.com/repos/KirinDave/phosphor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/KirinDave/phosphor/statuses/{sha}","languages_url":"https://api.github.com/repos/KirinDave/phosphor/languages","stargazers_url":"https://api.github.com/repos/KirinDave/phosphor/stargazers","contributors_url":"https://api.github.com/repos/KirinDave/phosphor/contributors","subscribers_url":"https://api.github.com/repos/KirinDave/phosphor/subscribers","subscription_url":"https://api.github.com/repos/KirinDave/phosphor/subscription","commits_url":"https://api.github.com/repos/KirinDave/phosphor/commits{/sha}","git_commits_url":"https://api.github.com/repos/KirinDave/phosphor/git/commits{/sha}","comments_url":"https://api.github.com/repos/KirinDave/phosphor/comments{/number}","issue_comment_url":"https://api.github.com/repos/KirinDave/phosphor/issues/comments{/number}","contents_url":"https://api.github.com/repos/KirinDave/phosphor/contents/{+path}","compare_url":"https://api.github.com/repos/KirinDave/phosphor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/KirinDave/phosphor/merges","archive_url":"https://api.github.com/repos/KirinDave/phosphor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/KirinDave/phosphor/downloads","issues_url":"https://api.github.com/repos/KirinDave/phosphor/issues{/number}","pulls_url":"https://api.github.com/repos/KirinDave/phosphor/pulls{/number}","milestones_url":"https://api.github.com/repos/KirinDave/phosphor/milestones{/number}","notifications_url":"https://api.github.com/repos/KirinDave/phosphor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/KirinDave/phosphor/labels{/name}","releases_url":"https://api.github.com/repos/KirinDave/phosphor/releases{/id}","deployments_url":"https://api.github.com/repos/KirinDave/phosphor/deployments"},{"id":98,"name":"sinatra","full_name":"bmizerany/sinatra","owner":{"login":"bmizerany","id":46,"avatar_url":"https://avatars2.githubusercontent.com/u/46?v=4","gravatar_id":"","url":"https://api.github.com/users/bmizerany","html_url":"https://github.com/bmizerany","followers_url":"https://api.github.com/users/bmizerany/followers","following_url":"https://api.github.com/users/bmizerany/following{/other_user}","gists_url":"https://api.github.com/users/bmizerany/gists{/gist_id}","starred_url":"https://api.github.com/users/bmizerany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bmizerany/subscriptions","organizations_url":"https://api.github.com/users/bmizerany/orgs","repos_url":"https://api.github.com/users/bmizerany/repos","events_url":"https://api.github.com/users/bmizerany/events{/privacy}","received_events_url":"https://api.github.com/users/bmizerany/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bmizerany/sinatra","description":"(offically at github.com/sinatra/sinatra) Classy web-development dressed in a DSL","fork":true,"url":"https://api.github.com/repos/bmizerany/sinatra","forks_url":"https://api.github.com/repos/bmizerany/sinatra/forks","keys_url":"https://api.github.com/repos/bmizerany/sinatra/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bmizerany/sinatra/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bmizerany/sinatra/teams","hooks_url":"https://api.github.com/repos/bmizerany/sinatra/hooks","issue_events_url":"https://api.github.com/repos/bmizerany/sinatra/issues/events{/number}","events_url":"https://api.github.com/repos/bmizerany/sinatra/events","assignees_url":"https://api.github.com/repos/bmizerany/sinatra/assignees{/user}","branches_url":"https://api.github.com/repos/bmizerany/sinatra/branches{/branch}","tags_url":"https://api.github.com/repos/bmizerany/sinatra/tags","blobs_url":"https://api.github.com/repos/bmizerany/sinatra/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bmizerany/sinatra/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bmizerany/sinatra/git/refs{/sha}","trees_url":"https://api.github.com/repos/bmizerany/sinatra/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bmizerany/sinatra/statuses/{sha}","languages_url":"https://api.github.com/repos/bmizerany/sinatra/languages","stargazers_url":"https://api.github.com/repos/bmizerany/sinatra/stargazers","contributors_url":"https://api.github.com/repos/bmizerany/sinatra/contributors","subscribers_url":"https://api.github.com/repos/bmizerany/sinatra/subscribers","subscription_url":"https://api.github.com/repos/bmizerany/sinatra/subscription","commits_url":"https://api.github.com/repos/bmizerany/sinatra/commits{/sha}","git_commits_url":"https://api.github.com/repos/bmizerany/sinatra/git/commits{/sha}","comments_url":"https://api.github.com/repos/bmizerany/sinatra/comments{/number}","issue_comment_url":"https://api.github.com/repos/bmizerany/sinatra/issues/comments{/number}","contents_url":"https://api.github.com/repos/bmizerany/sinatra/contents/{+path}","compare_url":"https://api.github.com/repos/bmizerany/sinatra/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bmizerany/sinatra/merges","archive_url":"https://api.github.com/repos/bmizerany/sinatra/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bmizerany/sinatra/downloads","issues_url":"https://api.github.com/repos/bmizerany/sinatra/issues{/number}","pulls_url":"https://api.github.com/repos/bmizerany/sinatra/pulls{/number}","milestones_url":"https://api.github.com/repos/bmizerany/sinatra/milestones{/number}","notifications_url":"https://api.github.com/repos/bmizerany/sinatra/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bmizerany/sinatra/labels{/name}","releases_url":"https://api.github.com/repos/bmizerany/sinatra/releases{/id}","deployments_url":"https://api.github.com/repos/bmizerany/sinatra/deployments"},{"id":102,"name":"gsa-prototype","full_name":"jnewland/gsa-prototype","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/gsa-prototype","description":"Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.","fork":false,"url":"https://api.github.com/repos/jnewland/gsa-prototype","forks_url":"https://api.github.com/repos/jnewland/gsa-prototype/forks","keys_url":"https://api.github.com/repos/jnewland/gsa-prototype/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/gsa-prototype/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/gsa-prototype/teams","hooks_url":"https://api.github.com/repos/jnewland/gsa-prototype/hooks","issue_events_url":"https://api.github.com/repos/jnewland/gsa-prototype/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/gsa-prototype/events","assignees_url":"https://api.github.com/repos/jnewland/gsa-prototype/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/gsa-prototype/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/gsa-prototype/tags","blobs_url":"https://api.github.com/repos/jnewland/gsa-prototype/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/gsa-prototype/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/gsa-prototype/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/gsa-prototype/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/gsa-prototype/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/gsa-prototype/languages","stargazers_url":"https://api.github.com/repos/jnewland/gsa-prototype/stargazers","contributors_url":"https://api.github.com/repos/jnewland/gsa-prototype/contributors","subscribers_url":"https://api.github.com/repos/jnewland/gsa-prototype/subscribers","subscription_url":"https://api.github.com/repos/jnewland/gsa-prototype/subscription","commits_url":"https://api.github.com/repos/jnewland/gsa-prototype/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/gsa-prototype/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/gsa-prototype/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/gsa-prototype/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/gsa-prototype/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/gsa-prototype/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/gsa-prototype/merges","archive_url":"https://api.github.com/repos/jnewland/gsa-prototype/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/gsa-prototype/downloads","issues_url":"https://api.github.com/repos/jnewland/gsa-prototype/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/gsa-prototype/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/gsa-prototype/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/gsa-prototype/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/gsa-prototype/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/gsa-prototype/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/gsa-prototype/deployments"},{"id":105,"name":"duplikate","full_name":"technoweenie/duplikate","owner":{"login":"technoweenie","id":21,"avatar_url":"https://avatars3.githubusercontent.com/u/21?v=4","gravatar_id":"","url":"https://api.github.com/users/technoweenie","html_url":"https://github.com/technoweenie","followers_url":"https://api.github.com/users/technoweenie/followers","following_url":"https://api.github.com/users/technoweenie/following{/other_user}","gists_url":"https://api.github.com/users/technoweenie/gists{/gist_id}","starred_url":"https://api.github.com/users/technoweenie/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/technoweenie/subscriptions","organizations_url":"https://api.github.com/users/technoweenie/orgs","repos_url":"https://api.github.com/users/technoweenie/repos","events_url":"https://api.github.com/users/technoweenie/events{/privacy}","received_events_url":"https://api.github.com/users/technoweenie/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/technoweenie/duplikate","description":"Syncs one directory to another (example: a git project to an svn repo)","fork":false,"url":"https://api.github.com/repos/technoweenie/duplikate","forks_url":"https://api.github.com/repos/technoweenie/duplikate/forks","keys_url":"https://api.github.com/repos/technoweenie/duplikate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/technoweenie/duplikate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/technoweenie/duplikate/teams","hooks_url":"https://api.github.com/repos/technoweenie/duplikate/hooks","issue_events_url":"https://api.github.com/repos/technoweenie/duplikate/issues/events{/number}","events_url":"https://api.github.com/repos/technoweenie/duplikate/events","assignees_url":"https://api.github.com/repos/technoweenie/duplikate/assignees{/user}","branches_url":"https://api.github.com/repos/technoweenie/duplikate/branches{/branch}","tags_url":"https://api.github.com/repos/technoweenie/duplikate/tags","blobs_url":"https://api.github.com/repos/technoweenie/duplikate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/technoweenie/duplikate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/technoweenie/duplikate/git/refs{/sha}","trees_url":"https://api.github.com/repos/technoweenie/duplikate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/technoweenie/duplikate/statuses/{sha}","languages_url":"https://api.github.com/repos/technoweenie/duplikate/languages","stargazers_url":"https://api.github.com/repos/technoweenie/duplikate/stargazers","contributors_url":"https://api.github.com/repos/technoweenie/duplikate/contributors","subscribers_url":"https://api.github.com/repos/technoweenie/duplikate/subscribers","subscription_url":"https://api.github.com/repos/technoweenie/duplikate/subscription","commits_url":"https://api.github.com/repos/technoweenie/duplikate/commits{/sha}","git_commits_url":"https://api.github.com/repos/technoweenie/duplikate/git/commits{/sha}","comments_url":"https://api.github.com/repos/technoweenie/duplikate/comments{/number}","issue_comment_url":"https://api.github.com/repos/technoweenie/duplikate/issues/comments{/number}","contents_url":"https://api.github.com/repos/technoweenie/duplikate/contents/{+path}","compare_url":"https://api.github.com/repos/technoweenie/duplikate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/technoweenie/duplikate/merges","archive_url":"https://api.github.com/repos/technoweenie/duplikate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/technoweenie/duplikate/downloads","issues_url":"https://api.github.com/repos/technoweenie/duplikate/issues{/number}","pulls_url":"https://api.github.com/repos/technoweenie/duplikate/pulls{/number}","milestones_url":"https://api.github.com/repos/technoweenie/duplikate/milestones{/number}","notifications_url":"https://api.github.com/repos/technoweenie/duplikate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/technoweenie/duplikate/labels{/name}","releases_url":"https://api.github.com/repos/technoweenie/duplikate/releases{/id}","deployments_url":"https://api.github.com/repos/technoweenie/duplikate/deployments"},{"id":118,"name":"lazy_record","full_name":"jnewland/lazy_record","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/lazy_record","description":"Proof of concept Lazy-Loading for ActiveRecord. Inspired by the \'kickers\' of Ambition.","fork":false,"url":"https://api.github.com/repos/jnewland/lazy_record","forks_url":"https://api.github.com/repos/jnewland/lazy_record/forks","keys_url":"https://api.github.com/repos/jnewland/lazy_record/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/lazy_record/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/lazy_record/teams","hooks_url":"https://api.github.com/repos/jnewland/lazy_record/hooks","issue_events_url":"https://api.github.com/repos/jnewland/lazy_record/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/lazy_record/events","assignees_url":"https://api.github.com/repos/jnewland/lazy_record/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/lazy_record/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/lazy_record/tags","blobs_url":"https://api.github.com/repos/jnewland/lazy_record/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/lazy_record/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/lazy_record/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/lazy_record/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/lazy_record/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/lazy_record/languages","stargazers_url":"https://api.github.com/repos/jnewland/lazy_record/stargazers","contributors_url":"https://api.github.com/repos/jnewland/lazy_record/contributors","subscribers_url":"https://api.github.com/repos/jnewland/lazy_record/subscribers","subscription_url":"https://api.github.com/repos/jnewland/lazy_record/subscription","commits_url":"https://api.github.com/repos/jnewland/lazy_record/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/lazy_record/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/lazy_record/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/lazy_record/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/lazy_record/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/lazy_record/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/lazy_record/merges","archive_url":"https://api.github.com/repos/jnewland/lazy_record/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/lazy_record/downloads","issues_url":"https://api.github.com/repos/jnewland/lazy_record/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/lazy_record/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/lazy_record/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/lazy_record/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/lazy_record/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/lazy_record/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/lazy_record/deployments"},{"id":119,"name":"gsa-feeds","full_name":"jnewland/gsa-feeds","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/gsa-feeds","description":"A Ruby wrapper for the Google Search Appliance Feeds Protocol","fork":false,"url":"https://api.github.com/repos/jnewland/gsa-feeds","forks_url":"https://api.github.com/repos/jnewland/gsa-feeds/forks","keys_url":"https://api.github.com/repos/jnewland/gsa-feeds/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/gsa-feeds/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/gsa-feeds/teams","hooks_url":"https://api.github.com/repos/jnewland/gsa-feeds/hooks","issue_events_url":"https://api.github.com/repos/jnewland/gsa-feeds/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/gsa-feeds/events","assignees_url":"https://api.github.com/repos/jnewland/gsa-feeds/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/gsa-feeds/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/gsa-feeds/tags","blobs_url":"https://api.github.com/repos/jnewland/gsa-feeds/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/gsa-feeds/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/gsa-feeds/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/gsa-feeds/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/gsa-feeds/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/gsa-feeds/languages","stargazers_url":"https://api.github.com/repos/jnewland/gsa-feeds/stargazers","contributors_url":"https://api.github.com/repos/jnewland/gsa-feeds/contributors","subscribers_url":"https://api.github.com/repos/jnewland/gsa-feeds/subscribers","subscription_url":"https://api.github.com/repos/jnewland/gsa-feeds/subscription","commits_url":"https://api.github.com/repos/jnewland/gsa-feeds/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/gsa-feeds/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/gsa-feeds/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/gsa-feeds/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/gsa-feeds/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/gsa-feeds/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/gsa-feeds/merges","archive_url":"https://api.github.com/repos/jnewland/gsa-feeds/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/gsa-feeds/downloads","issues_url":"https://api.github.com/repos/jnewland/gsa-feeds/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/gsa-feeds/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/gsa-feeds/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/gsa-feeds/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/gsa-feeds/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/gsa-feeds/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/gsa-feeds/deployments"},{"id":120,"name":"votigoto","full_name":"jnewland/votigoto","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/votigoto","description":"Ruby API wrapper for the TiVoToGo protocol. Use it to access a list of recorded shows and programs on your Tivo.","fork":false,"url":"https://api.github.com/repos/jnewland/votigoto","forks_url":"https://api.github.com/repos/jnewland/votigoto/forks","keys_url":"https://api.github.com/repos/jnewland/votigoto/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/votigoto/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/votigoto/teams","hooks_url":"https://api.github.com/repos/jnewland/votigoto/hooks","issue_events_url":"https://api.github.com/repos/jnewland/votigoto/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/votigoto/events","assignees_url":"https://api.github.com/repos/jnewland/votigoto/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/votigoto/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/votigoto/tags","blobs_url":"https://api.github.com/repos/jnewland/votigoto/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/votigoto/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/votigoto/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/votigoto/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/votigoto/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/votigoto/languages","stargazers_url":"https://api.github.com/repos/jnewland/votigoto/stargazers","contributors_url":"https://api.github.com/repos/jnewland/votigoto/contributors","subscribers_url":"https://api.github.com/repos/jnewland/votigoto/subscribers","subscription_url":"https://api.github.com/repos/jnewland/votigoto/subscription","commits_url":"https://api.github.com/repos/jnewland/votigoto/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/votigoto/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/votigoto/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/votigoto/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/votigoto/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/votigoto/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/votigoto/merges","archive_url":"https://api.github.com/repos/jnewland/votigoto/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/votigoto/downloads","issues_url":"https://api.github.com/repos/jnewland/votigoto/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/votigoto/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/votigoto/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/votigoto/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/votigoto/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/votigoto/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/votigoto/deployments"},{"id":127,"name":"mofo","full_name":"defunkt/mofo","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/mofo","description":"Mofo was a fast and simple microformat parser, based on a concise DSL and Hpricot. No longer maintained.","fork":false,"url":"https://api.github.com/repos/defunkt/mofo","forks_url":"https://api.github.com/repos/defunkt/mofo/forks","keys_url":"https://api.github.com/repos/defunkt/mofo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/mofo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/mofo/teams","hooks_url":"https://api.github.com/repos/defunkt/mofo/hooks","issue_events_url":"https://api.github.com/repos/defunkt/mofo/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/mofo/events","assignees_url":"https://api.github.com/repos/defunkt/mofo/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/mofo/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/mofo/tags","blobs_url":"https://api.github.com/repos/defunkt/mofo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/mofo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/mofo/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/mofo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/mofo/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/mofo/languages","stargazers_url":"https://api.github.com/repos/defunkt/mofo/stargazers","contributors_url":"https://api.github.com/repos/defunkt/mofo/contributors","subscribers_url":"https://api.github.com/repos/defunkt/mofo/subscribers","subscription_url":"https://api.github.com/repos/defunkt/mofo/subscription","commits_url":"https://api.github.com/repos/defunkt/mofo/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/mofo/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/mofo/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/mofo/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/mofo/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/mofo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/mofo/merges","archive_url":"https://api.github.com/repos/defunkt/mofo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/mofo/downloads","issues_url":"https://api.github.com/repos/defunkt/mofo/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/mofo/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/mofo/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/mofo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/mofo/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/mofo/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/mofo/deployments"},{"id":129,"name":"xhtmlize","full_name":"jnewland/xhtmlize","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/xhtmlize","description":"Rails helper to XHTML-ize chunks of user submitted HTML. For the standardista in all of us","fork":false,"url":"https://api.github.com/repos/jnewland/xhtmlize","forks_url":"https://api.github.com/repos/jnewland/xhtmlize/forks","keys_url":"https://api.github.com/repos/jnewland/xhtmlize/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/xhtmlize/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/xhtmlize/teams","hooks_url":"https://api.github.com/repos/jnewland/xhtmlize/hooks","issue_events_url":"https://api.github.com/repos/jnewland/xhtmlize/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/xhtmlize/events","assignees_url":"https://api.github.com/repos/jnewland/xhtmlize/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/xhtmlize/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/xhtmlize/tags","blobs_url":"https://api.github.com/repos/jnewland/xhtmlize/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/xhtmlize/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/xhtmlize/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/xhtmlize/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/xhtmlize/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/xhtmlize/languages","stargazers_url":"https://api.github.com/repos/jnewland/xhtmlize/stargazers","contributors_url":"https://api.github.com/repos/jnewland/xhtmlize/contributors","subscribers_url":"https://api.github.com/repos/jnewland/xhtmlize/subscribers","subscription_url":"https://api.github.com/repos/jnewland/xhtmlize/subscription","commits_url":"https://api.github.com/repos/jnewland/xhtmlize/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/xhtmlize/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/xhtmlize/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/xhtmlize/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/xhtmlize/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/xhtmlize/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/xhtmlize/merges","archive_url":"https://api.github.com/repos/jnewland/xhtmlize/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/xhtmlize/downloads","issues_url":"https://api.github.com/repos/jnewland/xhtmlize/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/xhtmlize/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/xhtmlize/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/xhtmlize/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/xhtmlize/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/xhtmlize/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/xhtmlize/deployments"},{"id":130,"name":"ruby-git","full_name":"schacon/ruby-git","owner":{"login":"schacon","id":70,"avatar_url":"https://avatars0.githubusercontent.com/u/70?v=4","gravatar_id":"","url":"https://api.github.com/users/schacon","html_url":"https://github.com/schacon","followers_url":"https://api.github.com/users/schacon/followers","following_url":"https://api.github.com/users/schacon/following{/other_user}","gists_url":"https://api.github.com/users/schacon/gists{/gist_id}","starred_url":"https://api.github.com/users/schacon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/schacon/subscriptions","organizations_url":"https://api.github.com/users/schacon/orgs","repos_url":"https://api.github.com/users/schacon/repos","events_url":"https://api.github.com/users/schacon/events{/privacy}","received_events_url":"https://api.github.com/users/schacon/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/schacon/ruby-git","description":"Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.","fork":false,"url":"https://api.github.com/repos/schacon/ruby-git","forks_url":"https://api.github.com/repos/schacon/ruby-git/forks","keys_url":"https://api.github.com/repos/schacon/ruby-git/keys{/key_id}","collaborators_url":"https://api.github.com/repos/schacon/ruby-git/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/schacon/ruby-git/teams","hooks_url":"https://api.github.com/repos/schacon/ruby-git/hooks","issue_events_url":"https://api.github.com/repos/schacon/ruby-git/issues/events{/number}","events_url":"https://api.github.com/repos/schacon/ruby-git/events","assignees_url":"https://api.github.com/repos/schacon/ruby-git/assignees{/user}","branches_url":"https://api.github.com/repos/schacon/ruby-git/branches{/branch}","tags_url":"https://api.github.com/repos/schacon/ruby-git/tags","blobs_url":"https://api.github.com/repos/schacon/ruby-git/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/schacon/ruby-git/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/schacon/ruby-git/git/refs{/sha}","trees_url":"https://api.github.com/repos/schacon/ruby-git/git/trees{/sha}","statuses_url":"https://api.github.com/repos/schacon/ruby-git/statuses/{sha}","languages_url":"https://api.github.com/repos/schacon/ruby-git/languages","stargazers_url":"https://api.github.com/repos/schacon/ruby-git/stargazers","contributors_url":"https://api.github.com/repos/schacon/ruby-git/contributors","subscribers_url":"https://api.github.com/repos/schacon/ruby-git/subscribers","subscription_url":"https://api.github.com/repos/schacon/ruby-git/subscription","commits_url":"https://api.github.com/repos/schacon/ruby-git/commits{/sha}","git_commits_url":"https://api.github.com/repos/schacon/ruby-git/git/commits{/sha}","comments_url":"https://api.github.com/repos/schacon/ruby-git/comments{/number}","issue_comment_url":"https://api.github.com/repos/schacon/ruby-git/issues/comments{/number}","contents_url":"https://api.github.com/repos/schacon/ruby-git/contents/{+path}","compare_url":"https://api.github.com/repos/schacon/ruby-git/compare/{base}...{head}","merges_url":"https://api.github.com/repos/schacon/ruby-git/merges","archive_url":"https://api.github.com/repos/schacon/ruby-git/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/schacon/ruby-git/downloads","issues_url":"https://api.github.com/repos/schacon/ruby-git/issues{/number}","pulls_url":"https://api.github.com/repos/schacon/ruby-git/pulls{/number}","milestones_url":"https://api.github.com/repos/schacon/ruby-git/milestones{/number}","notifications_url":"https://api.github.com/repos/schacon/ruby-git/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/schacon/ruby-git/labels{/name}","releases_url":"https://api.github.com/repos/schacon/ruby-git/releases{/id}","deployments_url":"https://api.github.com/repos/schacon/ruby-git/deployments"},{"id":131,"name":"bmhsearch","full_name":"ezmobius/bmhsearch","owner":{"login":"ezmobius","id":5,"avatar_url":"https://avatars0.githubusercontent.com/u/5?v=4","gravatar_id":"","url":"https://api.github.com/users/ezmobius","html_url":"https://github.com/ezmobius","followers_url":"https://api.github.com/users/ezmobius/followers","following_url":"https://api.github.com/users/ezmobius/following{/other_user}","gists_url":"https://api.github.com/users/ezmobius/gists{/gist_id}","starred_url":"https://api.github.com/users/ezmobius/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ezmobius/subscriptions","organizations_url":"https://api.github.com/users/ezmobius/orgs","repos_url":"https://api.github.com/users/ezmobius/repos","events_url":"https://api.github.com/users/ezmobius/events{/privacy}","received_events_url":"https://api.github.com/users/ezmobius/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/ezmobius/bmhsearch","description":"Fast string searcher, useful for multi-part post parsing","fork":false,"url":"https://api.github.com/repos/ezmobius/bmhsearch","forks_url":"https://api.github.com/repos/ezmobius/bmhsearch/forks","keys_url":"https://api.github.com/repos/ezmobius/bmhsearch/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ezmobius/bmhsearch/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ezmobius/bmhsearch/teams","hooks_url":"https://api.github.com/repos/ezmobius/bmhsearch/hooks","issue_events_url":"https://api.github.com/repos/ezmobius/bmhsearch/issues/events{/number}","events_url":"https://api.github.com/repos/ezmobius/bmhsearch/events","assignees_url":"https://api.github.com/repos/ezmobius/bmhsearch/assignees{/user}","branches_url":"https://api.github.com/repos/ezmobius/bmhsearch/branches{/branch}","tags_url":"https://api.github.com/repos/ezmobius/bmhsearch/tags","blobs_url":"https://api.github.com/repos/ezmobius/bmhsearch/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ezmobius/bmhsearch/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ezmobius/bmhsearch/git/refs{/sha}","trees_url":"https://api.github.com/repos/ezmobius/bmhsearch/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ezmobius/bmhsearch/statuses/{sha}","languages_url":"https://api.github.com/repos/ezmobius/bmhsearch/languages","stargazers_url":"https://api.github.com/repos/ezmobius/bmhsearch/stargazers","contributors_url":"https://api.github.com/repos/ezmobius/bmhsearch/contributors","subscribers_url":"https://api.github.com/repos/ezmobius/bmhsearch/subscribers","subscription_url":"https://api.github.com/repos/ezmobius/bmhsearch/subscription","commits_url":"https://api.github.com/repos/ezmobius/bmhsearch/commits{/sha}","git_commits_url":"https://api.github.com/repos/ezmobius/bmhsearch/git/commits{/sha}","comments_url":"https://api.github.com/repos/ezmobius/bmhsearch/comments{/number}","issue_comment_url":"https://api.github.com/repos/ezmobius/bmhsearch/issues/comments{/number}","contents_url":"https://api.github.com/repos/ezmobius/bmhsearch/contents/{+path}","compare_url":"https://api.github.com/repos/ezmobius/bmhsearch/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ezmobius/bmhsearch/merges","archive_url":"https://api.github.com/repos/ezmobius/bmhsearch/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ezmobius/bmhsearch/downloads","issues_url":"https://api.github.com/repos/ezmobius/bmhsearch/issues{/number}","pulls_url":"https://api.github.com/repos/ezmobius/bmhsearch/pulls{/number}","milestones_url":"https://api.github.com/repos/ezmobius/bmhsearch/milestones{/number}","notifications_url":"https://api.github.com/repos/ezmobius/bmhsearch/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ezmobius/bmhsearch/labels{/name}","releases_url":"https://api.github.com/repos/ezmobius/bmhsearch/releases{/id}","deployments_url":"https://api.github.com/repos/ezmobius/bmhsearch/deployments"},{"id":137,"name":"mofo","full_name":"uggedal/mofo","owner":{"login":"uggedal","id":71,"avatar_url":"https://avatars0.githubusercontent.com/u/71?v=4","gravatar_id":"","url":"https://api.github.com/users/uggedal","html_url":"https://github.com/uggedal","followers_url":"https://api.github.com/users/uggedal/followers","following_url":"https://api.github.com/users/uggedal/following{/other_user}","gists_url":"https://api.github.com/users/uggedal/gists{/gist_id}","starred_url":"https://api.github.com/users/uggedal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/uggedal/subscriptions","organizations_url":"https://api.github.com/users/uggedal/orgs","repos_url":"https://api.github.com/users/uggedal/repos","events_url":"https://api.github.com/users/uggedal/events{/privacy}","received_events_url":"https://api.github.com/users/uggedal/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/uggedal/mofo","description":"Mofo is a fast and simple microformat parser, based on a concise DSL and Hpricot.","fork":true,"url":"https://api.github.com/repos/uggedal/mofo","forks_url":"https://api.github.com/repos/uggedal/mofo/forks","keys_url":"https://api.github.com/repos/uggedal/mofo/keys{/key_id}","collaborators_url":"https://api.github.com/repos/uggedal/mofo/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/uggedal/mofo/teams","hooks_url":"https://api.github.com/repos/uggedal/mofo/hooks","issue_events_url":"https://api.github.com/repos/uggedal/mofo/issues/events{/number}","events_url":"https://api.github.com/repos/uggedal/mofo/events","assignees_url":"https://api.github.com/repos/uggedal/mofo/assignees{/user}","branches_url":"https://api.github.com/repos/uggedal/mofo/branches{/branch}","tags_url":"https://api.github.com/repos/uggedal/mofo/tags","blobs_url":"https://api.github.com/repos/uggedal/mofo/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/uggedal/mofo/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/uggedal/mofo/git/refs{/sha}","trees_url":"https://api.github.com/repos/uggedal/mofo/git/trees{/sha}","statuses_url":"https://api.github.com/repos/uggedal/mofo/statuses/{sha}","languages_url":"https://api.github.com/repos/uggedal/mofo/languages","stargazers_url":"https://api.github.com/repos/uggedal/mofo/stargazers","contributors_url":"https://api.github.com/repos/uggedal/mofo/contributors","subscribers_url":"https://api.github.com/repos/uggedal/mofo/subscribers","subscription_url":"https://api.github.com/repos/uggedal/mofo/subscription","commits_url":"https://api.github.com/repos/uggedal/mofo/commits{/sha}","git_commits_url":"https://api.github.com/repos/uggedal/mofo/git/commits{/sha}","comments_url":"https://api.github.com/repos/uggedal/mofo/comments{/number}","issue_comment_url":"https://api.github.com/repos/uggedal/mofo/issues/comments{/number}","contents_url":"https://api.github.com/repos/uggedal/mofo/contents/{+path}","compare_url":"https://api.github.com/repos/uggedal/mofo/compare/{base}...{head}","merges_url":"https://api.github.com/repos/uggedal/mofo/merges","archive_url":"https://api.github.com/repos/uggedal/mofo/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/uggedal/mofo/downloads","issues_url":"https://api.github.com/repos/uggedal/mofo/issues{/number}","pulls_url":"https://api.github.com/repos/uggedal/mofo/pulls{/number}","milestones_url":"https://api.github.com/repos/uggedal/mofo/milestones{/number}","notifications_url":"https://api.github.com/repos/uggedal/mofo/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/uggedal/mofo/labels{/name}","releases_url":"https://api.github.com/repos/uggedal/mofo/releases{/id}","deployments_url":"https://api.github.com/repos/uggedal/mofo/deployments"},{"id":139,"name":"simply_versioned","full_name":"mmower/simply_versioned","owner":{"login":"mmower","id":74,"avatar_url":"https://avatars0.githubusercontent.com/u/74?v=4","gravatar_id":"","url":"https://api.github.com/users/mmower","html_url":"https://github.com/mmower","followers_url":"https://api.github.com/users/mmower/followers","following_url":"https://api.github.com/users/mmower/following{/other_user}","gists_url":"https://api.github.com/users/mmower/gists{/gist_id}","starred_url":"https://api.github.com/users/mmower/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmower/subscriptions","organizations_url":"https://api.github.com/users/mmower/orgs","repos_url":"https://api.github.com/users/mmower/repos","events_url":"https://api.github.com/users/mmower/events{/privacy}","received_events_url":"https://api.github.com/users/mmower/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mmower/simply_versioned","description":"A simple, non-invasive, approach to versioning ActiveRecord models","fork":false,"url":"https://api.github.com/repos/mmower/simply_versioned","forks_url":"https://api.github.com/repos/mmower/simply_versioned/forks","keys_url":"https://api.github.com/repos/mmower/simply_versioned/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mmower/simply_versioned/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mmower/simply_versioned/teams","hooks_url":"https://api.github.com/repos/mmower/simply_versioned/hooks","issue_events_url":"https://api.github.com/repos/mmower/simply_versioned/issues/events{/number}","events_url":"https://api.github.com/repos/mmower/simply_versioned/events","assignees_url":"https://api.github.com/repos/mmower/simply_versioned/assignees{/user}","branches_url":"https://api.github.com/repos/mmower/simply_versioned/branches{/branch}","tags_url":"https://api.github.com/repos/mmower/simply_versioned/tags","blobs_url":"https://api.github.com/repos/mmower/simply_versioned/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mmower/simply_versioned/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mmower/simply_versioned/git/refs{/sha}","trees_url":"https://api.github.com/repos/mmower/simply_versioned/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mmower/simply_versioned/statuses/{sha}","languages_url":"https://api.github.com/repos/mmower/simply_versioned/languages","stargazers_url":"https://api.github.com/repos/mmower/simply_versioned/stargazers","contributors_url":"https://api.github.com/repos/mmower/simply_versioned/contributors","subscribers_url":"https://api.github.com/repos/mmower/simply_versioned/subscribers","subscription_url":"https://api.github.com/repos/mmower/simply_versioned/subscription","commits_url":"https://api.github.com/repos/mmower/simply_versioned/commits{/sha}","git_commits_url":"https://api.github.com/repos/mmower/simply_versioned/git/commits{/sha}","comments_url":"https://api.github.com/repos/mmower/simply_versioned/comments{/number}","issue_comment_url":"https://api.github.com/repos/mmower/simply_versioned/issues/comments{/number}","contents_url":"https://api.github.com/repos/mmower/simply_versioned/contents/{+path}","compare_url":"https://api.github.com/repos/mmower/simply_versioned/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mmower/simply_versioned/merges","archive_url":"https://api.github.com/repos/mmower/simply_versioned/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mmower/simply_versioned/downloads","issues_url":"https://api.github.com/repos/mmower/simply_versioned/issues{/number}","pulls_url":"https://api.github.com/repos/mmower/simply_versioned/pulls{/number}","milestones_url":"https://api.github.com/repos/mmower/simply_versioned/milestones{/number}","notifications_url":"https://api.github.com/repos/mmower/simply_versioned/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mmower/simply_versioned/labels{/name}","releases_url":"https://api.github.com/repos/mmower/simply_versioned/releases{/id}","deployments_url":"https://api.github.com/repos/mmower/simply_versioned/deployments"},{"id":140,"name":"gchart","full_name":"abhay/gchart","owner":{"login":"abhay","id":75,"avatar_url":"https://avatars0.githubusercontent.com/u/75?v=4","gravatar_id":"","url":"https://api.github.com/users/abhay","html_url":"https://github.com/abhay","followers_url":"https://api.github.com/users/abhay/followers","following_url":"https://api.github.com/users/abhay/following{/other_user}","gists_url":"https://api.github.com/users/abhay/gists{/gist_id}","starred_url":"https://api.github.com/users/abhay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abhay/subscriptions","organizations_url":"https://api.github.com/users/abhay/orgs","repos_url":"https://api.github.com/users/abhay/repos","events_url":"https://api.github.com/users/abhay/events{/privacy}","received_events_url":"https://api.github.com/users/abhay/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/abhay/gchart","description":"GChart exposes the Google Chart API (http://code.google.com/apis/chart) via a friendly Ruby interface. It can generate the URL for a given chart (for webpage use), or download the generated PNG (for offline use).","fork":false,"url":"https://api.github.com/repos/abhay/gchart","forks_url":"https://api.github.com/repos/abhay/gchart/forks","keys_url":"https://api.github.com/repos/abhay/gchart/keys{/key_id}","collaborators_url":"https://api.github.com/repos/abhay/gchart/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/abhay/gchart/teams","hooks_url":"https://api.github.com/repos/abhay/gchart/hooks","issue_events_url":"https://api.github.com/repos/abhay/gchart/issues/events{/number}","events_url":"https://api.github.com/repos/abhay/gchart/events","assignees_url":"https://api.github.com/repos/abhay/gchart/assignees{/user}","branches_url":"https://api.github.com/repos/abhay/gchart/branches{/branch}","tags_url":"https://api.github.com/repos/abhay/gchart/tags","blobs_url":"https://api.github.com/repos/abhay/gchart/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/abhay/gchart/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/abhay/gchart/git/refs{/sha}","trees_url":"https://api.github.com/repos/abhay/gchart/git/trees{/sha}","statuses_url":"https://api.github.com/repos/abhay/gchart/statuses/{sha}","languages_url":"https://api.github.com/repos/abhay/gchart/languages","stargazers_url":"https://api.github.com/repos/abhay/gchart/stargazers","contributors_url":"https://api.github.com/repos/abhay/gchart/contributors","subscribers_url":"https://api.github.com/repos/abhay/gchart/subscribers","subscription_url":"https://api.github.com/repos/abhay/gchart/subscription","commits_url":"https://api.github.com/repos/abhay/gchart/commits{/sha}","git_commits_url":"https://api.github.com/repos/abhay/gchart/git/commits{/sha}","comments_url":"https://api.github.com/repos/abhay/gchart/comments{/number}","issue_comment_url":"https://api.github.com/repos/abhay/gchart/issues/comments{/number}","contents_url":"https://api.github.com/repos/abhay/gchart/contents/{+path}","compare_url":"https://api.github.com/repos/abhay/gchart/compare/{base}...{head}","merges_url":"https://api.github.com/repos/abhay/gchart/merges","archive_url":"https://api.github.com/repos/abhay/gchart/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/abhay/gchart/downloads","issues_url":"https://api.github.com/repos/abhay/gchart/issues{/number}","pulls_url":"https://api.github.com/repos/abhay/gchart/pulls{/number}","milestones_url":"https://api.github.com/repos/abhay/gchart/milestones{/number}","notifications_url":"https://api.github.com/repos/abhay/gchart/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/abhay/gchart/labels{/name}","releases_url":"https://api.github.com/repos/abhay/gchart/releases{/id}","deployments_url":"https://api.github.com/repos/abhay/gchart/deployments"},{"id":141,"name":"schemr","full_name":"benburkert/schemr","owner":{"login":"benburkert","id":77,"avatar_url":"https://avatars0.githubusercontent.com/u/77?v=4","gravatar_id":"","url":"https://api.github.com/users/benburkert","html_url":"https://github.com/benburkert","followers_url":"https://api.github.com/users/benburkert/followers","following_url":"https://api.github.com/users/benburkert/following{/other_user}","gists_url":"https://api.github.com/users/benburkert/gists{/gist_id}","starred_url":"https://api.github.com/users/benburkert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/benburkert/subscriptions","organizations_url":"https://api.github.com/users/benburkert/orgs","repos_url":"https://api.github.com/users/benburkert/repos","events_url":"https://api.github.com/users/benburkert/events{/privacy}","received_events_url":"https://api.github.com/users/benburkert/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/benburkert/schemr","description":"A DSL for creating schema documents in ruby","fork":false,"url":"https://api.github.com/repos/benburkert/schemr","forks_url":"https://api.github.com/repos/benburkert/schemr/forks","keys_url":"https://api.github.com/repos/benburkert/schemr/keys{/key_id}","collaborators_url":"https://api.github.com/repos/benburkert/schemr/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/benburkert/schemr/teams","hooks_url":"https://api.github.com/repos/benburkert/schemr/hooks","issue_events_url":"https://api.github.com/repos/benburkert/schemr/issues/events{/number}","events_url":"https://api.github.com/repos/benburkert/schemr/events","assignees_url":"https://api.github.com/repos/benburkert/schemr/assignees{/user}","branches_url":"https://api.github.com/repos/benburkert/schemr/branches{/branch}","tags_url":"https://api.github.com/repos/benburkert/schemr/tags","blobs_url":"https://api.github.com/repos/benburkert/schemr/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/benburkert/schemr/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/benburkert/schemr/git/refs{/sha}","trees_url":"https://api.github.com/repos/benburkert/schemr/git/trees{/sha}","statuses_url":"https://api.github.com/repos/benburkert/schemr/statuses/{sha}","languages_url":"https://api.github.com/repos/benburkert/schemr/languages","stargazers_url":"https://api.github.com/repos/benburkert/schemr/stargazers","contributors_url":"https://api.github.com/repos/benburkert/schemr/contributors","subscribers_url":"https://api.github.com/repos/benburkert/schemr/subscribers","subscription_url":"https://api.github.com/repos/benburkert/schemr/subscription","commits_url":"https://api.github.com/repos/benburkert/schemr/commits{/sha}","git_commits_url":"https://api.github.com/repos/benburkert/schemr/git/commits{/sha}","comments_url":"https://api.github.com/repos/benburkert/schemr/comments{/number}","issue_comment_url":"https://api.github.com/repos/benburkert/schemr/issues/comments{/number}","contents_url":"https://api.github.com/repos/benburkert/schemr/contents/{+path}","compare_url":"https://api.github.com/repos/benburkert/schemr/compare/{base}...{head}","merges_url":"https://api.github.com/repos/benburkert/schemr/merges","archive_url":"https://api.github.com/repos/benburkert/schemr/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/benburkert/schemr/downloads","issues_url":"https://api.github.com/repos/benburkert/schemr/issues{/number}","pulls_url":"https://api.github.com/repos/benburkert/schemr/pulls{/number}","milestones_url":"https://api.github.com/repos/benburkert/schemr/milestones{/number}","notifications_url":"https://api.github.com/repos/benburkert/schemr/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/benburkert/schemr/labels{/name}","releases_url":"https://api.github.com/repos/benburkert/schemr/releases{/id}","deployments_url":"https://api.github.com/repos/benburkert/schemr/deployments"},{"id":142,"name":"calais","full_name":"abhay/calais","owner":{"login":"abhay","id":75,"avatar_url":"https://avatars0.githubusercontent.com/u/75?v=4","gravatar_id":"","url":"https://api.github.com/users/abhay","html_url":"https://github.com/abhay","followers_url":"https://api.github.com/users/abhay/followers","following_url":"https://api.github.com/users/abhay/following{/other_user}","gists_url":"https://api.github.com/users/abhay/gists{/gist_id}","starred_url":"https://api.github.com/users/abhay/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abhay/subscriptions","organizations_url":"https://api.github.com/users/abhay/orgs","repos_url":"https://api.github.com/users/abhay/repos","events_url":"https://api.github.com/users/abhay/events{/privacy}","received_events_url":"https://api.github.com/users/abhay/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/abhay/calais","description":"A Ruby interface to the Open Calais API (http://opencalais.com)","fork":false,"url":"https://api.github.com/repos/abhay/calais","forks_url":"https://api.github.com/repos/abhay/calais/forks","keys_url":"https://api.github.com/repos/abhay/calais/keys{/key_id}","collaborators_url":"https://api.github.com/repos/abhay/calais/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/abhay/calais/teams","hooks_url":"https://api.github.com/repos/abhay/calais/hooks","issue_events_url":"https://api.github.com/repos/abhay/calais/issues/events{/number}","events_url":"https://api.github.com/repos/abhay/calais/events","assignees_url":"https://api.github.com/repos/abhay/calais/assignees{/user}","branches_url":"https://api.github.com/repos/abhay/calais/branches{/branch}","tags_url":"https://api.github.com/repos/abhay/calais/tags","blobs_url":"https://api.github.com/repos/abhay/calais/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/abhay/calais/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/abhay/calais/git/refs{/sha}","trees_url":"https://api.github.com/repos/abhay/calais/git/trees{/sha}","statuses_url":"https://api.github.com/repos/abhay/calais/statuses/{sha}","languages_url":"https://api.github.com/repos/abhay/calais/languages","stargazers_url":"https://api.github.com/repos/abhay/calais/stargazers","contributors_url":"https://api.github.com/repos/abhay/calais/contributors","subscribers_url":"https://api.github.com/repos/abhay/calais/subscribers","subscription_url":"https://api.github.com/repos/abhay/calais/subscription","commits_url":"https://api.github.com/repos/abhay/calais/commits{/sha}","git_commits_url":"https://api.github.com/repos/abhay/calais/git/commits{/sha}","comments_url":"https://api.github.com/repos/abhay/calais/comments{/number}","issue_comment_url":"https://api.github.com/repos/abhay/calais/issues/comments{/number}","contents_url":"https://api.github.com/repos/abhay/calais/contents/{+path}","compare_url":"https://api.github.com/repos/abhay/calais/compare/{base}...{head}","merges_url":"https://api.github.com/repos/abhay/calais/merges","archive_url":"https://api.github.com/repos/abhay/calais/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/abhay/calais/downloads","issues_url":"https://api.github.com/repos/abhay/calais/issues{/number}","pulls_url":"https://api.github.com/repos/abhay/calais/pulls{/number}","milestones_url":"https://api.github.com/repos/abhay/calais/milestones{/number}","notifications_url":"https://api.github.com/repos/abhay/calais/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/abhay/calais/labels{/name}","releases_url":"https://api.github.com/repos/abhay/calais/releases{/id}","deployments_url":"https://api.github.com/repos/abhay/calais/deployments"},{"id":144,"name":"chronic","full_name":"mojombo/chronic","owner":{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4","gravatar_id":"","url":"https://api.github.com/users/mojombo","html_url":"https://github.com/mojombo","followers_url":"https://api.github.com/users/mojombo/followers","following_url":"https://api.github.com/users/mojombo/following{/other_user}","gists_url":"https://api.github.com/users/mojombo/gists{/gist_id}","starred_url":"https://api.github.com/users/mojombo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojombo/subscriptions","organizations_url":"https://api.github.com/users/mojombo/orgs","repos_url":"https://api.github.com/users/mojombo/repos","events_url":"https://api.github.com/users/mojombo/events{/privacy}","received_events_url":"https://api.github.com/users/mojombo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mojombo/chronic","description":"Chronic is a pure Ruby natural language date parser.","fork":false,"url":"https://api.github.com/repos/mojombo/chronic","forks_url":"https://api.github.com/repos/mojombo/chronic/forks","keys_url":"https://api.github.com/repos/mojombo/chronic/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mojombo/chronic/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mojombo/chronic/teams","hooks_url":"https://api.github.com/repos/mojombo/chronic/hooks","issue_events_url":"https://api.github.com/repos/mojombo/chronic/issues/events{/number}","events_url":"https://api.github.com/repos/mojombo/chronic/events","assignees_url":"https://api.github.com/repos/mojombo/chronic/assignees{/user}","branches_url":"https://api.github.com/repos/mojombo/chronic/branches{/branch}","tags_url":"https://api.github.com/repos/mojombo/chronic/tags","blobs_url":"https://api.github.com/repos/mojombo/chronic/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mojombo/chronic/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mojombo/chronic/git/refs{/sha}","trees_url":"https://api.github.com/repos/mojombo/chronic/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mojombo/chronic/statuses/{sha}","languages_url":"https://api.github.com/repos/mojombo/chronic/languages","stargazers_url":"https://api.github.com/repos/mojombo/chronic/stargazers","contributors_url":"https://api.github.com/repos/mojombo/chronic/contributors","subscribers_url":"https://api.github.com/repos/mojombo/chronic/subscribers","subscription_url":"https://api.github.com/repos/mojombo/chronic/subscription","commits_url":"https://api.github.com/repos/mojombo/chronic/commits{/sha}","git_commits_url":"https://api.github.com/repos/mojombo/chronic/git/commits{/sha}","comments_url":"https://api.github.com/repos/mojombo/chronic/comments{/number}","issue_comment_url":"https://api.github.com/repos/mojombo/chronic/issues/comments{/number}","contents_url":"https://api.github.com/repos/mojombo/chronic/contents/{+path}","compare_url":"https://api.github.com/repos/mojombo/chronic/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mojombo/chronic/merges","archive_url":"https://api.github.com/repos/mojombo/chronic/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mojombo/chronic/downloads","issues_url":"https://api.github.com/repos/mojombo/chronic/issues{/number}","pulls_url":"https://api.github.com/repos/mojombo/chronic/pulls{/number}","milestones_url":"https://api.github.com/repos/mojombo/chronic/milestones{/number}","notifications_url":"https://api.github.com/repos/mojombo/chronic/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mojombo/chronic/labels{/name}","releases_url":"https://api.github.com/repos/mojombo/chronic/releases{/id}","deployments_url":"https://api.github.com/repos/mojombo/chronic/deployments"},{"id":165,"name":"git-wiki","full_name":"sr/git-wiki","owner":{"login":"sr","id":90,"avatar_url":"https://avatars0.githubusercontent.com/u/90?v=4","gravatar_id":"","url":"https://api.github.com/users/sr","html_url":"https://github.com/sr","followers_url":"https://api.github.com/users/sr/followers","following_url":"https://api.github.com/users/sr/following{/other_user}","gists_url":"https://api.github.com/users/sr/gists{/gist_id}","starred_url":"https://api.github.com/users/sr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sr/subscriptions","organizations_url":"https://api.github.com/users/sr/orgs","repos_url":"https://api.github.com/users/sr/repos","events_url":"https://api.github.com/users/sr/events{/privacy}","received_events_url":"https://api.github.com/users/sr/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sr/git-wiki","description":"A quick & dirty git-powered Sinatra wiki","fork":false,"url":"https://api.github.com/repos/sr/git-wiki","forks_url":"https://api.github.com/repos/sr/git-wiki/forks","keys_url":"https://api.github.com/repos/sr/git-wiki/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sr/git-wiki/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sr/git-wiki/teams","hooks_url":"https://api.github.com/repos/sr/git-wiki/hooks","issue_events_url":"https://api.github.com/repos/sr/git-wiki/issues/events{/number}","events_url":"https://api.github.com/repos/sr/git-wiki/events","assignees_url":"https://api.github.com/repos/sr/git-wiki/assignees{/user}","branches_url":"https://api.github.com/repos/sr/git-wiki/branches{/branch}","tags_url":"https://api.github.com/repos/sr/git-wiki/tags","blobs_url":"https://api.github.com/repos/sr/git-wiki/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sr/git-wiki/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sr/git-wiki/git/refs{/sha}","trees_url":"https://api.github.com/repos/sr/git-wiki/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sr/git-wiki/statuses/{sha}","languages_url":"https://api.github.com/repos/sr/git-wiki/languages","stargazers_url":"https://api.github.com/repos/sr/git-wiki/stargazers","contributors_url":"https://api.github.com/repos/sr/git-wiki/contributors","subscribers_url":"https://api.github.com/repos/sr/git-wiki/subscribers","subscription_url":"https://api.github.com/repos/sr/git-wiki/subscription","commits_url":"https://api.github.com/repos/sr/git-wiki/commits{/sha}","git_commits_url":"https://api.github.com/repos/sr/git-wiki/git/commits{/sha}","comments_url":"https://api.github.com/repos/sr/git-wiki/comments{/number}","issue_comment_url":"https://api.github.com/repos/sr/git-wiki/issues/comments{/number}","contents_url":"https://api.github.com/repos/sr/git-wiki/contents/{+path}","compare_url":"https://api.github.com/repos/sr/git-wiki/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sr/git-wiki/merges","archive_url":"https://api.github.com/repos/sr/git-wiki/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sr/git-wiki/downloads","issues_url":"https://api.github.com/repos/sr/git-wiki/issues{/number}","pulls_url":"https://api.github.com/repos/sr/git-wiki/pulls{/number}","milestones_url":"https://api.github.com/repos/sr/git-wiki/milestones{/number}","notifications_url":"https://api.github.com/repos/sr/git-wiki/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sr/git-wiki/labels{/name}","releases_url":"https://api.github.com/repos/sr/git-wiki/releases{/id}","deployments_url":"https://api.github.com/repos/sr/git-wiki/deployments"},{"id":177,"name":"signal-wiki","full_name":"queso/signal-wiki","owner":{"login":"queso","id":106,"avatar_url":"https://avatars0.githubusercontent.com/u/106?v=4","gravatar_id":"","url":"https://api.github.com/users/queso","html_url":"https://github.com/queso","followers_url":"https://api.github.com/users/queso/followers","following_url":"https://api.github.com/users/queso/following{/other_user}","gists_url":"https://api.github.com/users/queso/gists{/gist_id}","starred_url":"https://api.github.com/users/queso/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/queso/subscriptions","organizations_url":"https://api.github.com/users/queso/orgs","repos_url":"https://api.github.com/users/queso/repos","events_url":"https://api.github.com/users/queso/events{/privacy}","received_events_url":"https://api.github.com/users/queso/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/queso/signal-wiki","description":"The easy to use rails wiki","fork":false,"url":"https://api.github.com/repos/queso/signal-wiki","forks_url":"https://api.github.com/repos/queso/signal-wiki/forks","keys_url":"https://api.github.com/repos/queso/signal-wiki/keys{/key_id}","collaborators_url":"https://api.github.com/repos/queso/signal-wiki/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/queso/signal-wiki/teams","hooks_url":"https://api.github.com/repos/queso/signal-wiki/hooks","issue_events_url":"https://api.github.com/repos/queso/signal-wiki/issues/events{/number}","events_url":"https://api.github.com/repos/queso/signal-wiki/events","assignees_url":"https://api.github.com/repos/queso/signal-wiki/assignees{/user}","branches_url":"https://api.github.com/repos/queso/signal-wiki/branches{/branch}","tags_url":"https://api.github.com/repos/queso/signal-wiki/tags","blobs_url":"https://api.github.com/repos/queso/signal-wiki/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/queso/signal-wiki/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/queso/signal-wiki/git/refs{/sha}","trees_url":"https://api.github.com/repos/queso/signal-wiki/git/trees{/sha}","statuses_url":"https://api.github.com/repos/queso/signal-wiki/statuses/{sha}","languages_url":"https://api.github.com/repos/queso/signal-wiki/languages","stargazers_url":"https://api.github.com/repos/queso/signal-wiki/stargazers","contributors_url":"https://api.github.com/repos/queso/signal-wiki/contributors","subscribers_url":"https://api.github.com/repos/queso/signal-wiki/subscribers","subscription_url":"https://api.github.com/repos/queso/signal-wiki/subscription","commits_url":"https://api.github.com/repos/queso/signal-wiki/commits{/sha}","git_commits_url":"https://api.github.com/repos/queso/signal-wiki/git/commits{/sha}","comments_url":"https://api.github.com/repos/queso/signal-wiki/comments{/number}","issue_comment_url":"https://api.github.com/repos/queso/signal-wiki/issues/comments{/number}","contents_url":"https://api.github.com/repos/queso/signal-wiki/contents/{+path}","compare_url":"https://api.github.com/repos/queso/signal-wiki/compare/{base}...{head}","merges_url":"https://api.github.com/repos/queso/signal-wiki/merges","archive_url":"https://api.github.com/repos/queso/signal-wiki/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/queso/signal-wiki/downloads","issues_url":"https://api.github.com/repos/queso/signal-wiki/issues{/number}","pulls_url":"https://api.github.com/repos/queso/signal-wiki/pulls{/number}","milestones_url":"https://api.github.com/repos/queso/signal-wiki/milestones{/number}","notifications_url":"https://api.github.com/repos/queso/signal-wiki/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/queso/signal-wiki/labels{/name}","releases_url":"https://api.github.com/repos/queso/signal-wiki/releases{/id}","deployments_url":"https://api.github.com/repos/queso/signal-wiki/deployments"},{"id":179,"name":"ruby-on-rails-tmbundle","full_name":"drnic/ruby-on-rails-tmbundle","owner":{"login":"drnic","id":108,"avatar_url":"https://avatars1.githubusercontent.com/u/108?v=4","gravatar_id":"","url":"https://api.github.com/users/drnic","html_url":"https://github.com/drnic","followers_url":"https://api.github.com/users/drnic/followers","following_url":"https://api.github.com/users/drnic/following{/other_user}","gists_url":"https://api.github.com/users/drnic/gists{/gist_id}","starred_url":"https://api.github.com/users/drnic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/drnic/subscriptions","organizations_url":"https://api.github.com/users/drnic/orgs","repos_url":"https://api.github.com/users/drnic/repos","events_url":"https://api.github.com/users/drnic/events{/privacy}","received_events_url":"https://api.github.com/users/drnic/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/drnic/ruby-on-rails-tmbundle","description":"Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]","fork":false,"url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle","forks_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/forks","keys_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/teams","hooks_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/hooks","issue_events_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/events{/number}","events_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/events","assignees_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/assignees{/user}","branches_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/branches{/branch}","tags_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/tags","blobs_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/statuses/{sha}","languages_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/languages","stargazers_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/stargazers","contributors_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contributors","subscribers_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscribers","subscription_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscription","commits_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/comments{/number}","contents_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contents/{+path}","compare_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/merges","archive_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/downloads","issues_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues{/number}","pulls_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/pulls{/number}","milestones_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/milestones{/number}","notifications_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/labels{/name}","releases_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/releases{/id}","deployments_url":"https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/deployments"},{"id":185,"name":"low-pro-for-jquery","full_name":"danwrong/low-pro-for-jquery","owner":{"login":"danwrong","id":110,"avatar_url":"https://avatars1.githubusercontent.com/u/110?v=4","gravatar_id":"","url":"https://api.github.com/users/danwrong","html_url":"https://github.com/danwrong","followers_url":"https://api.github.com/users/danwrong/followers","following_url":"https://api.github.com/users/danwrong/following{/other_user}","gists_url":"https://api.github.com/users/danwrong/gists{/gist_id}","starred_url":"https://api.github.com/users/danwrong/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danwrong/subscriptions","organizations_url":"https://api.github.com/users/danwrong/orgs","repos_url":"https://api.github.com/users/danwrong/repos","events_url":"https://api.github.com/users/danwrong/events{/privacy}","received_events_url":"https://api.github.com/users/danwrong/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/danwrong/low-pro-for-jquery","description":"A jQuery plugin version of the Low Pro behavior framework.","fork":false,"url":"https://api.github.com/repos/danwrong/low-pro-for-jquery","forks_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/forks","keys_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/keys{/key_id}","collaborators_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/teams","hooks_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/hooks","issue_events_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/events{/number}","events_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/events","assignees_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/assignees{/user}","branches_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/branches{/branch}","tags_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/tags","blobs_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/git/refs{/sha}","trees_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/git/trees{/sha}","statuses_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/statuses/{sha}","languages_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/languages","stargazers_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/stargazers","contributors_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/contributors","subscribers_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/subscribers","subscription_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/subscription","commits_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/commits{/sha}","git_commits_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/git/commits{/sha}","comments_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/comments{/number}","issue_comment_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/comments{/number}","contents_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/contents/{+path}","compare_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/compare/{base}...{head}","merges_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/merges","archive_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/downloads","issues_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/issues{/number}","pulls_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/pulls{/number}","milestones_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/milestones{/number}","notifications_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/labels{/name}","releases_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/releases{/id}","deployments_url":"https://api.github.com/repos/danwrong/low-pro-for-jquery/deployments"},{"id":186,"name":"merb-core","full_name":"wayneeseguin/merb-core","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/merb-core","description":"Merb Core: All you need. None you don\'t.","fork":true,"url":"https://api.github.com/repos/wayneeseguin/merb-core","forks_url":"https://api.github.com/repos/wayneeseguin/merb-core/forks","keys_url":"https://api.github.com/repos/wayneeseguin/merb-core/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/merb-core/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/merb-core/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/merb-core/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/merb-core/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/merb-core/events","assignees_url":"https://api.github.com/repos/wayneeseguin/merb-core/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/merb-core/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/merb-core/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/merb-core/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/merb-core/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/merb-core/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/merb-core/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/merb-core/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/merb-core/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/merb-core/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/merb-core/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/merb-core/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/merb-core/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/merb-core/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/merb-core/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/merb-core/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/merb-core/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/merb-core/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/merb-core/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/merb-core/merges","archive_url":"https://api.github.com/repos/wayneeseguin/merb-core/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/merb-core/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/merb-core/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/merb-core/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/merb-core/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/merb-core/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/merb-core/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/merb-core/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/merb-core/deployments"},{"id":190,"name":"dst","full_name":"sr/dst","owner":{"login":"sr","id":90,"avatar_url":"https://avatars0.githubusercontent.com/u/90?v=4","gravatar_id":"","url":"https://api.github.com/users/sr","html_url":"https://github.com/sr","followers_url":"https://api.github.com/users/sr/followers","following_url":"https://api.github.com/users/sr/following{/other_user}","gists_url":"https://api.github.com/users/sr/gists{/gist_id}","starred_url":"https://api.github.com/users/sr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sr/subscriptions","organizations_url":"https://api.github.com/users/sr/orgs","repos_url":"https://api.github.com/users/sr/repos","events_url":"https://api.github.com/users/sr/events{/privacy}","received_events_url":"https://api.github.com/users/sr/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sr/dst","description":"todo-list manager I wrote back in 2008 with the help of Gregory Brown in order to learn Ruby and TDD","fork":false,"url":"https://api.github.com/repos/sr/dst","forks_url":"https://api.github.com/repos/sr/dst/forks","keys_url":"https://api.github.com/repos/sr/dst/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sr/dst/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sr/dst/teams","hooks_url":"https://api.github.com/repos/sr/dst/hooks","issue_events_url":"https://api.github.com/repos/sr/dst/issues/events{/number}","events_url":"https://api.github.com/repos/sr/dst/events","assignees_url":"https://api.github.com/repos/sr/dst/assignees{/user}","branches_url":"https://api.github.com/repos/sr/dst/branches{/branch}","tags_url":"https://api.github.com/repos/sr/dst/tags","blobs_url":"https://api.github.com/repos/sr/dst/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sr/dst/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sr/dst/git/refs{/sha}","trees_url":"https://api.github.com/repos/sr/dst/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sr/dst/statuses/{sha}","languages_url":"https://api.github.com/repos/sr/dst/languages","stargazers_url":"https://api.github.com/repos/sr/dst/stargazers","contributors_url":"https://api.github.com/repos/sr/dst/contributors","subscribers_url":"https://api.github.com/repos/sr/dst/subscribers","subscription_url":"https://api.github.com/repos/sr/dst/subscription","commits_url":"https://api.github.com/repos/sr/dst/commits{/sha}","git_commits_url":"https://api.github.com/repos/sr/dst/git/commits{/sha}","comments_url":"https://api.github.com/repos/sr/dst/comments{/number}","issue_comment_url":"https://api.github.com/repos/sr/dst/issues/comments{/number}","contents_url":"https://api.github.com/repos/sr/dst/contents/{+path}","compare_url":"https://api.github.com/repos/sr/dst/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sr/dst/merges","archive_url":"https://api.github.com/repos/sr/dst/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sr/dst/downloads","issues_url":"https://api.github.com/repos/sr/dst/issues{/number}","pulls_url":"https://api.github.com/repos/sr/dst/pulls{/number}","milestones_url":"https://api.github.com/repos/sr/dst/milestones{/number}","notifications_url":"https://api.github.com/repos/sr/dst/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sr/dst/labels{/name}","releases_url":"https://api.github.com/repos/sr/dst/releases{/id}","deployments_url":"https://api.github.com/repos/sr/dst/deployments"},{"id":191,"name":"yaws","full_name":"mojombo/yaws","owner":{"login":"mojombo","id":1,"avatar_url":"https://avatars0.githubusercontent.com/u/1?v=4","gravatar_id":"","url":"https://api.github.com/users/mojombo","html_url":"https://github.com/mojombo","followers_url":"https://api.github.com/users/mojombo/followers","following_url":"https://api.github.com/users/mojombo/following{/other_user}","gists_url":"https://api.github.com/users/mojombo/gists{/gist_id}","starred_url":"https://api.github.com/users/mojombo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mojombo/subscriptions","organizations_url":"https://api.github.com/users/mojombo/orgs","repos_url":"https://api.github.com/users/mojombo/repos","events_url":"https://api.github.com/users/mojombo/events{/privacy}","received_events_url":"https://api.github.com/users/mojombo/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mojombo/yaws","description":"YAWS is an erlang web server","fork":false,"url":"https://api.github.com/repos/mojombo/yaws","forks_url":"https://api.github.com/repos/mojombo/yaws/forks","keys_url":"https://api.github.com/repos/mojombo/yaws/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mojombo/yaws/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mojombo/yaws/teams","hooks_url":"https://api.github.com/repos/mojombo/yaws/hooks","issue_events_url":"https://api.github.com/repos/mojombo/yaws/issues/events{/number}","events_url":"https://api.github.com/repos/mojombo/yaws/events","assignees_url":"https://api.github.com/repos/mojombo/yaws/assignees{/user}","branches_url":"https://api.github.com/repos/mojombo/yaws/branches{/branch}","tags_url":"https://api.github.com/repos/mojombo/yaws/tags","blobs_url":"https://api.github.com/repos/mojombo/yaws/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mojombo/yaws/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mojombo/yaws/git/refs{/sha}","trees_url":"https://api.github.com/repos/mojombo/yaws/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mojombo/yaws/statuses/{sha}","languages_url":"https://api.github.com/repos/mojombo/yaws/languages","stargazers_url":"https://api.github.com/repos/mojombo/yaws/stargazers","contributors_url":"https://api.github.com/repos/mojombo/yaws/contributors","subscribers_url":"https://api.github.com/repos/mojombo/yaws/subscribers","subscription_url":"https://api.github.com/repos/mojombo/yaws/subscription","commits_url":"https://api.github.com/repos/mojombo/yaws/commits{/sha}","git_commits_url":"https://api.github.com/repos/mojombo/yaws/git/commits{/sha}","comments_url":"https://api.github.com/repos/mojombo/yaws/comments{/number}","issue_comment_url":"https://api.github.com/repos/mojombo/yaws/issues/comments{/number}","contents_url":"https://api.github.com/repos/mojombo/yaws/contents/{+path}","compare_url":"https://api.github.com/repos/mojombo/yaws/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mojombo/yaws/merges","archive_url":"https://api.github.com/repos/mojombo/yaws/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mojombo/yaws/downloads","issues_url":"https://api.github.com/repos/mojombo/yaws/issues{/number}","pulls_url":"https://api.github.com/repos/mojombo/yaws/pulls{/number}","milestones_url":"https://api.github.com/repos/mojombo/yaws/milestones{/number}","notifications_url":"https://api.github.com/repos/mojombo/yaws/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mojombo/yaws/labels{/name}","releases_url":"https://api.github.com/repos/mojombo/yaws/releases{/id}","deployments_url":"https://api.github.com/repos/mojombo/yaws/deployments"},{"id":192,"name":"yaws","full_name":"KirinDave/yaws","owner":{"login":"KirinDave","id":36,"avatar_url":"https://avatars2.githubusercontent.com/u/36?v=4","gravatar_id":"","url":"https://api.github.com/users/KirinDave","html_url":"https://github.com/KirinDave","followers_url":"https://api.github.com/users/KirinDave/followers","following_url":"https://api.github.com/users/KirinDave/following{/other_user}","gists_url":"https://api.github.com/users/KirinDave/gists{/gist_id}","starred_url":"https://api.github.com/users/KirinDave/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KirinDave/subscriptions","organizations_url":"https://api.github.com/users/KirinDave/orgs","repos_url":"https://api.github.com/users/KirinDave/repos","events_url":"https://api.github.com/users/KirinDave/events{/privacy}","received_events_url":"https://api.github.com/users/KirinDave/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/KirinDave/yaws","description":"YAWS is an erlang web server","fork":true,"url":"https://api.github.com/repos/KirinDave/yaws","forks_url":"https://api.github.com/repos/KirinDave/yaws/forks","keys_url":"https://api.github.com/repos/KirinDave/yaws/keys{/key_id}","collaborators_url":"https://api.github.com/repos/KirinDave/yaws/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/KirinDave/yaws/teams","hooks_url":"https://api.github.com/repos/KirinDave/yaws/hooks","issue_events_url":"https://api.github.com/repos/KirinDave/yaws/issues/events{/number}","events_url":"https://api.github.com/repos/KirinDave/yaws/events","assignees_url":"https://api.github.com/repos/KirinDave/yaws/assignees{/user}","branches_url":"https://api.github.com/repos/KirinDave/yaws/branches{/branch}","tags_url":"https://api.github.com/repos/KirinDave/yaws/tags","blobs_url":"https://api.github.com/repos/KirinDave/yaws/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/KirinDave/yaws/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/KirinDave/yaws/git/refs{/sha}","trees_url":"https://api.github.com/repos/KirinDave/yaws/git/trees{/sha}","statuses_url":"https://api.github.com/repos/KirinDave/yaws/statuses/{sha}","languages_url":"https://api.github.com/repos/KirinDave/yaws/languages","stargazers_url":"https://api.github.com/repos/KirinDave/yaws/stargazers","contributors_url":"https://api.github.com/repos/KirinDave/yaws/contributors","subscribers_url":"https://api.github.com/repos/KirinDave/yaws/subscribers","subscription_url":"https://api.github.com/repos/KirinDave/yaws/subscription","commits_url":"https://api.github.com/repos/KirinDave/yaws/commits{/sha}","git_commits_url":"https://api.github.com/repos/KirinDave/yaws/git/commits{/sha}","comments_url":"https://api.github.com/repos/KirinDave/yaws/comments{/number}","issue_comment_url":"https://api.github.com/repos/KirinDave/yaws/issues/comments{/number}","contents_url":"https://api.github.com/repos/KirinDave/yaws/contents/{+path}","compare_url":"https://api.github.com/repos/KirinDave/yaws/compare/{base}...{head}","merges_url":"https://api.github.com/repos/KirinDave/yaws/merges","archive_url":"https://api.github.com/repos/KirinDave/yaws/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/KirinDave/yaws/downloads","issues_url":"https://api.github.com/repos/KirinDave/yaws/issues{/number}","pulls_url":"https://api.github.com/repos/KirinDave/yaws/pulls{/number}","milestones_url":"https://api.github.com/repos/KirinDave/yaws/milestones{/number}","notifications_url":"https://api.github.com/repos/KirinDave/yaws/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/KirinDave/yaws/labels{/name}","releases_url":"https://api.github.com/repos/KirinDave/yaws/releases{/id}","deployments_url":"https://api.github.com/repos/KirinDave/yaws/deployments"},{"id":193,"name":"tasks","full_name":"sr/tasks","owner":{"login":"sr","id":90,"avatar_url":"https://avatars0.githubusercontent.com/u/90?v=4","gravatar_id":"","url":"https://api.github.com/users/sr","html_url":"https://github.com/sr","followers_url":"https://api.github.com/users/sr/followers","following_url":"https://api.github.com/users/sr/following{/other_user}","gists_url":"https://api.github.com/users/sr/gists{/gist_id}","starred_url":"https://api.github.com/users/sr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sr/subscriptions","organizations_url":"https://api.github.com/users/sr/orgs","repos_url":"https://api.github.com/users/sr/repos","events_url":"https://api.github.com/users/sr/events{/privacy}","received_events_url":"https://api.github.com/users/sr/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sr/tasks","description":"Some more or less useful rake tasks. Includes tasks to work with git-cvs, convert an Atom collection to a blog, post to an AtomPub server and more.","fork":false,"url":"https://api.github.com/repos/sr/tasks","forks_url":"https://api.github.com/repos/sr/tasks/forks","keys_url":"https://api.github.com/repos/sr/tasks/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sr/tasks/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sr/tasks/teams","hooks_url":"https://api.github.com/repos/sr/tasks/hooks","issue_events_url":"https://api.github.com/repos/sr/tasks/issues/events{/number}","events_url":"https://api.github.com/repos/sr/tasks/events","assignees_url":"https://api.github.com/repos/sr/tasks/assignees{/user}","branches_url":"https://api.github.com/repos/sr/tasks/branches{/branch}","tags_url":"https://api.github.com/repos/sr/tasks/tags","blobs_url":"https://api.github.com/repos/sr/tasks/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sr/tasks/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sr/tasks/git/refs{/sha}","trees_url":"https://api.github.com/repos/sr/tasks/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sr/tasks/statuses/{sha}","languages_url":"https://api.github.com/repos/sr/tasks/languages","stargazers_url":"https://api.github.com/repos/sr/tasks/stargazers","contributors_url":"https://api.github.com/repos/sr/tasks/contributors","subscribers_url":"https://api.github.com/repos/sr/tasks/subscribers","subscription_url":"https://api.github.com/repos/sr/tasks/subscription","commits_url":"https://api.github.com/repos/sr/tasks/commits{/sha}","git_commits_url":"https://api.github.com/repos/sr/tasks/git/commits{/sha}","comments_url":"https://api.github.com/repos/sr/tasks/comments{/number}","issue_comment_url":"https://api.github.com/repos/sr/tasks/issues/comments{/number}","contents_url":"https://api.github.com/repos/sr/tasks/contents/{+path}","compare_url":"https://api.github.com/repos/sr/tasks/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sr/tasks/merges","archive_url":"https://api.github.com/repos/sr/tasks/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sr/tasks/downloads","issues_url":"https://api.github.com/repos/sr/tasks/issues{/number}","pulls_url":"https://api.github.com/repos/sr/tasks/pulls{/number}","milestones_url":"https://api.github.com/repos/sr/tasks/milestones{/number}","notifications_url":"https://api.github.com/repos/sr/tasks/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sr/tasks/labels{/name}","releases_url":"https://api.github.com/repos/sr/tasks/releases{/id}","deployments_url":"https://api.github.com/repos/sr/tasks/deployments"},{"id":195,"name":"ruby-on-rails-tmbundle","full_name":"mattetti/ruby-on-rails-tmbundle","owner":{"login":"mattetti","id":113,"avatar_url":"https://avatars1.githubusercontent.com/u/113?v=4","gravatar_id":"","url":"https://api.github.com/users/mattetti","html_url":"https://github.com/mattetti","followers_url":"https://api.github.com/users/mattetti/followers","following_url":"https://api.github.com/users/mattetti/following{/other_user}","gists_url":"https://api.github.com/users/mattetti/gists{/gist_id}","starred_url":"https://api.github.com/users/mattetti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mattetti/subscriptions","organizations_url":"https://api.github.com/users/mattetti/orgs","repos_url":"https://api.github.com/users/mattetti/repos","events_url":"https://api.github.com/users/mattetti/events{/privacy}","received_events_url":"https://api.github.com/users/mattetti/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mattetti/ruby-on-rails-tmbundle","description":"Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]","fork":true,"url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle","forks_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/forks","keys_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/teams","hooks_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/hooks","issue_events_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/events{/number}","events_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/events","assignees_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/assignees{/user}","branches_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/branches{/branch}","tags_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/tags","blobs_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/statuses/{sha}","languages_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/languages","stargazers_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/stargazers","contributors_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contributors","subscribers_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscribers","subscription_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscription","commits_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/comments{/number}","contents_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contents/{+path}","compare_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/merges","archive_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/downloads","issues_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues{/number}","pulls_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/pulls{/number}","milestones_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/milestones{/number}","notifications_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/labels{/name}","releases_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/releases{/id}","deployments_url":"https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/deployments"},{"id":196,"name":"ruby-on-rails-tmbundle","full_name":"lawrencepit/ruby-on-rails-tmbundle","owner":{"login":"lawrencepit","id":115,"avatar_url":"https://avatars1.githubusercontent.com/u/115?v=4","gravatar_id":"","url":"https://api.github.com/users/lawrencepit","html_url":"https://github.com/lawrencepit","followers_url":"https://api.github.com/users/lawrencepit/followers","following_url":"https://api.github.com/users/lawrencepit/following{/other_user}","gists_url":"https://api.github.com/users/lawrencepit/gists{/gist_id}","starred_url":"https://api.github.com/users/lawrencepit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lawrencepit/subscriptions","organizations_url":"https://api.github.com/users/lawrencepit/orgs","repos_url":"https://api.github.com/users/lawrencepit/repos","events_url":"https://api.github.com/users/lawrencepit/events{/privacy}","received_events_url":"https://api.github.com/users/lawrencepit/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lawrencepit/ruby-on-rails-tmbundle","description":"Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]","fork":true,"url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle","forks_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/forks","keys_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/teams","hooks_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/hooks","issue_events_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/events{/number}","events_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/events","assignees_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/assignees{/user}","branches_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/branches{/branch}","tags_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/tags","blobs_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/statuses/{sha}","languages_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/languages","stargazers_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/stargazers","contributors_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contributors","subscribers_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscribers","subscription_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscription","commits_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/comments{/number}","contents_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contents/{+path}","compare_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/merges","archive_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/downloads","issues_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues{/number}","pulls_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/pulls{/number}","milestones_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/milestones{/number}","notifications_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/labels{/name}","releases_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/releases{/id}","deployments_url":"https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/deployments"},{"id":199,"name":"amazon-ec2","full_name":"grempe/amazon-ec2","owner":{"login":"grempe","id":117,"avatar_url":"https://avatars1.githubusercontent.com/u/117?v=4","gravatar_id":"","url":"https://api.github.com/users/grempe","html_url":"https://github.com/grempe","followers_url":"https://api.github.com/users/grempe/followers","following_url":"https://api.github.com/users/grempe/following{/other_user}","gists_url":"https://api.github.com/users/grempe/gists{/gist_id}","starred_url":"https://api.github.com/users/grempe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/grempe/subscriptions","organizations_url":"https://api.github.com/users/grempe/orgs","repos_url":"https://api.github.com/users/grempe/repos","events_url":"https://api.github.com/users/grempe/events{/privacy}","received_events_url":"https://api.github.com/users/grempe/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/grempe/amazon-ec2","description":"A Ruby Gem that gives you full access to several of the Amazon Web Services API from your Ruby/Ruby on Rails apps","fork":false,"url":"https://api.github.com/repos/grempe/amazon-ec2","forks_url":"https://api.github.com/repos/grempe/amazon-ec2/forks","keys_url":"https://api.github.com/repos/grempe/amazon-ec2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/grempe/amazon-ec2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/grempe/amazon-ec2/teams","hooks_url":"https://api.github.com/repos/grempe/amazon-ec2/hooks","issue_events_url":"https://api.github.com/repos/grempe/amazon-ec2/issues/events{/number}","events_url":"https://api.github.com/repos/grempe/amazon-ec2/events","assignees_url":"https://api.github.com/repos/grempe/amazon-ec2/assignees{/user}","branches_url":"https://api.github.com/repos/grempe/amazon-ec2/branches{/branch}","tags_url":"https://api.github.com/repos/grempe/amazon-ec2/tags","blobs_url":"https://api.github.com/repos/grempe/amazon-ec2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/grempe/amazon-ec2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/grempe/amazon-ec2/git/refs{/sha}","trees_url":"https://api.github.com/repos/grempe/amazon-ec2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/grempe/amazon-ec2/statuses/{sha}","languages_url":"https://api.github.com/repos/grempe/amazon-ec2/languages","stargazers_url":"https://api.github.com/repos/grempe/amazon-ec2/stargazers","contributors_url":"https://api.github.com/repos/grempe/amazon-ec2/contributors","subscribers_url":"https://api.github.com/repos/grempe/amazon-ec2/subscribers","subscription_url":"https://api.github.com/repos/grempe/amazon-ec2/subscription","commits_url":"https://api.github.com/repos/grempe/amazon-ec2/commits{/sha}","git_commits_url":"https://api.github.com/repos/grempe/amazon-ec2/git/commits{/sha}","comments_url":"https://api.github.com/repos/grempe/amazon-ec2/comments{/number}","issue_comment_url":"https://api.github.com/repos/grempe/amazon-ec2/issues/comments{/number}","contents_url":"https://api.github.com/repos/grempe/amazon-ec2/contents/{+path}","compare_url":"https://api.github.com/repos/grempe/amazon-ec2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/grempe/amazon-ec2/merges","archive_url":"https://api.github.com/repos/grempe/amazon-ec2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/grempe/amazon-ec2/downloads","issues_url":"https://api.github.com/repos/grempe/amazon-ec2/issues{/number}","pulls_url":"https://api.github.com/repos/grempe/amazon-ec2/pulls{/number}","milestones_url":"https://api.github.com/repos/grempe/amazon-ec2/milestones{/number}","notifications_url":"https://api.github.com/repos/grempe/amazon-ec2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/grempe/amazon-ec2/labels{/name}","releases_url":"https://api.github.com/repos/grempe/amazon-ec2/releases{/id}","deployments_url":"https://api.github.com/repos/grempe/amazon-ec2/deployments"},{"id":203,"name":"merblogger","full_name":"wayneeseguin/merblogger","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/merblogger","description":"A Merb Blogging & Publishing Platform using Merb, DataMapper, haml and jQuery.","fork":false,"url":"https://api.github.com/repos/wayneeseguin/merblogger","forks_url":"https://api.github.com/repos/wayneeseguin/merblogger/forks","keys_url":"https://api.github.com/repos/wayneeseguin/merblogger/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/merblogger/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/merblogger/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/merblogger/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/merblogger/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/merblogger/events","assignees_url":"https://api.github.com/repos/wayneeseguin/merblogger/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/merblogger/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/merblogger/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/merblogger/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/merblogger/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/merblogger/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/merblogger/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/merblogger/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/merblogger/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/merblogger/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/merblogger/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/merblogger/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/merblogger/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/merblogger/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/merblogger/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/merblogger/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/merblogger/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/merblogger/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/merblogger/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/merblogger/merges","archive_url":"https://api.github.com/repos/wayneeseguin/merblogger/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/merblogger/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/merblogger/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/merblogger/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/merblogger/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/merblogger/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/merblogger/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/merblogger/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/merblogger/deployments"},{"id":204,"name":"merbtastic","full_name":"wayneeseguin/merbtastic","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/merbtastic","description":"Merb + Webgen CMS system that has dynamic routing, Nginx config and static site generation with haml/sass/erb/... support.","fork":false,"url":"https://api.github.com/repos/wayneeseguin/merbtastic","forks_url":"https://api.github.com/repos/wayneeseguin/merbtastic/forks","keys_url":"https://api.github.com/repos/wayneeseguin/merbtastic/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/merbtastic/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/merbtastic/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/merbtastic/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/merbtastic/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/merbtastic/events","assignees_url":"https://api.github.com/repos/wayneeseguin/merbtastic/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/merbtastic/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/merbtastic/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/merbtastic/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/merbtastic/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/merbtastic/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/merbtastic/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/merbtastic/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/merbtastic/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/merbtastic/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/merbtastic/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/merbtastic/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/merbtastic/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/merbtastic/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/merbtastic/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/merbtastic/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/merbtastic/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/merbtastic/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/merbtastic/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/merbtastic/merges","archive_url":"https://api.github.com/repos/wayneeseguin/merbtastic/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/merbtastic/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/merbtastic/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/merbtastic/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/merbtastic/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/merbtastic/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/merbtastic/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/merbtastic/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/merbtastic/deployments"},{"id":205,"name":"alogr","full_name":"wayneeseguin/alogr","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/alogr","description":"AlogR is a threadsafe non-blocking asynchronous configurable logger for Ruby.","fork":false,"url":"https://api.github.com/repos/wayneeseguin/alogr","forks_url":"https://api.github.com/repos/wayneeseguin/alogr/forks","keys_url":"https://api.github.com/repos/wayneeseguin/alogr/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/alogr/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/alogr/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/alogr/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/alogr/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/alogr/events","assignees_url":"https://api.github.com/repos/wayneeseguin/alogr/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/alogr/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/alogr/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/alogr/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/alogr/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/alogr/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/alogr/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/alogr/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/alogr/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/alogr/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/alogr/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/alogr/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/alogr/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/alogr/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/alogr/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/alogr/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/alogr/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/alogr/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/alogr/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/alogr/merges","archive_url":"https://api.github.com/repos/wayneeseguin/alogr/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/alogr/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/alogr/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/alogr/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/alogr/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/alogr/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/alogr/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/alogr/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/alogr/deployments"},{"id":206,"name":"autozest","full_name":"wayneeseguin/autozest","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/autozest","description":"AutoZest is an autotest addon that: * automated growl installation * generation of .autotest with growl & autozest config * generation of .autozest.yml config file * autozest.sqlite3 database file for pulling random messages based on severity","fork":false,"url":"https://api.github.com/repos/wayneeseguin/autozest","forks_url":"https://api.github.com/repos/wayneeseguin/autozest/forks","keys_url":"https://api.github.com/repos/wayneeseguin/autozest/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/autozest/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/autozest/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/autozest/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/autozest/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/autozest/events","assignees_url":"https://api.github.com/repos/wayneeseguin/autozest/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/autozest/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/autozest/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/autozest/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/autozest/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/autozest/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/autozest/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/autozest/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/autozest/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/autozest/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/autozest/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/autozest/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/autozest/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/autozest/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/autozest/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/autozest/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/autozest/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/autozest/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/autozest/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/autozest/merges","archive_url":"https://api.github.com/repos/wayneeseguin/autozest/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/autozest/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/autozest/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/autozest/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/autozest/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/autozest/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/autozest/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/autozest/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/autozest/deployments"},{"id":207,"name":"rnginx","full_name":"wayneeseguin/rnginx","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/rnginx","description":"Command line utility and library for working with Nginx configuration scripts.","fork":false,"url":"https://api.github.com/repos/wayneeseguin/rnginx","forks_url":"https://api.github.com/repos/wayneeseguin/rnginx/forks","keys_url":"https://api.github.com/repos/wayneeseguin/rnginx/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/rnginx/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/rnginx/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/rnginx/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/rnginx/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/rnginx/events","assignees_url":"https://api.github.com/repos/wayneeseguin/rnginx/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/rnginx/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/rnginx/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/rnginx/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/rnginx/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/rnginx/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/rnginx/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/rnginx/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/rnginx/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/rnginx/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/rnginx/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/rnginx/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/rnginx/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/rnginx/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/rnginx/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/rnginx/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/rnginx/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/rnginx/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/rnginx/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/rnginx/merges","archive_url":"https://api.github.com/repos/wayneeseguin/rnginx/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/rnginx/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/rnginx/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/rnginx/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/rnginx/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/rnginx/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/rnginx/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/rnginx/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/rnginx/deployments"},{"id":208,"name":"sequel","full_name":"wayneeseguin/sequel","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/sequel","description":"Sequel ORM","fork":false,"url":"https://api.github.com/repos/wayneeseguin/sequel","forks_url":"https://api.github.com/repos/wayneeseguin/sequel/forks","keys_url":"https://api.github.com/repos/wayneeseguin/sequel/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/sequel/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/sequel/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/sequel/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/sequel/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/sequel/events","assignees_url":"https://api.github.com/repos/wayneeseguin/sequel/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/sequel/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/sequel/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/sequel/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/sequel/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/sequel/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/sequel/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/sequel/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/sequel/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/sequel/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/sequel/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/sequel/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/sequel/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/sequel/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/sequel/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/sequel/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/sequel/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/sequel/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/sequel/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/sequel/merges","archive_url":"https://api.github.com/repos/wayneeseguin/sequel/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/sequel/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/sequel/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/sequel/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/sequel/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/sequel/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/sequel/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/sequel/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/sequel/deployments"},{"id":211,"name":"simply_versioned","full_name":"bmizerany/simply_versioned","owner":{"login":"bmizerany","id":46,"avatar_url":"https://avatars2.githubusercontent.com/u/46?v=4","gravatar_id":"","url":"https://api.github.com/users/bmizerany","html_url":"https://github.com/bmizerany","followers_url":"https://api.github.com/users/bmizerany/followers","following_url":"https://api.github.com/users/bmizerany/following{/other_user}","gists_url":"https://api.github.com/users/bmizerany/gists{/gist_id}","starred_url":"https://api.github.com/users/bmizerany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bmizerany/subscriptions","organizations_url":"https://api.github.com/users/bmizerany/orgs","repos_url":"https://api.github.com/users/bmizerany/repos","events_url":"https://api.github.com/users/bmizerany/events{/privacy}","received_events_url":"https://api.github.com/users/bmizerany/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bmizerany/simply_versioned","description":"A simple, non-invasive, approach to versioning ActiveRecord models","fork":true,"url":"https://api.github.com/repos/bmizerany/simply_versioned","forks_url":"https://api.github.com/repos/bmizerany/simply_versioned/forks","keys_url":"https://api.github.com/repos/bmizerany/simply_versioned/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bmizerany/simply_versioned/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bmizerany/simply_versioned/teams","hooks_url":"https://api.github.com/repos/bmizerany/simply_versioned/hooks","issue_events_url":"https://api.github.com/repos/bmizerany/simply_versioned/issues/events{/number}","events_url":"https://api.github.com/repos/bmizerany/simply_versioned/events","assignees_url":"https://api.github.com/repos/bmizerany/simply_versioned/assignees{/user}","branches_url":"https://api.github.com/repos/bmizerany/simply_versioned/branches{/branch}","tags_url":"https://api.github.com/repos/bmizerany/simply_versioned/tags","blobs_url":"https://api.github.com/repos/bmizerany/simply_versioned/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bmizerany/simply_versioned/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bmizerany/simply_versioned/git/refs{/sha}","trees_url":"https://api.github.com/repos/bmizerany/simply_versioned/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bmizerany/simply_versioned/statuses/{sha}","languages_url":"https://api.github.com/repos/bmizerany/simply_versioned/languages","stargazers_url":"https://api.github.com/repos/bmizerany/simply_versioned/stargazers","contributors_url":"https://api.github.com/repos/bmizerany/simply_versioned/contributors","subscribers_url":"https://api.github.com/repos/bmizerany/simply_versioned/subscribers","subscription_url":"https://api.github.com/repos/bmizerany/simply_versioned/subscription","commits_url":"https://api.github.com/repos/bmizerany/simply_versioned/commits{/sha}","git_commits_url":"https://api.github.com/repos/bmizerany/simply_versioned/git/commits{/sha}","comments_url":"https://api.github.com/repos/bmizerany/simply_versioned/comments{/number}","issue_comment_url":"https://api.github.com/repos/bmizerany/simply_versioned/issues/comments{/number}","contents_url":"https://api.github.com/repos/bmizerany/simply_versioned/contents/{+path}","compare_url":"https://api.github.com/repos/bmizerany/simply_versioned/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bmizerany/simply_versioned/merges","archive_url":"https://api.github.com/repos/bmizerany/simply_versioned/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bmizerany/simply_versioned/downloads","issues_url":"https://api.github.com/repos/bmizerany/simply_versioned/issues{/number}","pulls_url":"https://api.github.com/repos/bmizerany/simply_versioned/pulls{/number}","milestones_url":"https://api.github.com/repos/bmizerany/simply_versioned/milestones{/number}","notifications_url":"https://api.github.com/repos/bmizerany/simply_versioned/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bmizerany/simply_versioned/labels{/name}","releases_url":"https://api.github.com/repos/bmizerany/simply_versioned/releases{/id}","deployments_url":"https://api.github.com/repos/bmizerany/simply_versioned/deployments"},{"id":212,"name":"switchpipe","full_name":"peterc/switchpipe","owner":{"login":"peterc","id":118,"avatar_url":"https://avatars0.githubusercontent.com/u/118?v=4","gravatar_id":"","url":"https://api.github.com/users/peterc","html_url":"https://github.com/peterc","followers_url":"https://api.github.com/users/peterc/followers","following_url":"https://api.github.com/users/peterc/following{/other_user}","gists_url":"https://api.github.com/users/peterc/gists{/gist_id}","starred_url":"https://api.github.com/users/peterc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/peterc/subscriptions","organizations_url":"https://api.github.com/users/peterc/orgs","repos_url":"https://api.github.com/users/peterc/repos","events_url":"https://api.github.com/users/peterc/events{/privacy}","received_events_url":"https://api.github.com/users/peterc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/peterc/switchpipe","description":"SwitchPipe is a backend process manager and HTTP proxy that makes (especially Ruby) web app deployment simple. NOW OBSOLETE. DO NOT USE.","fork":false,"url":"https://api.github.com/repos/peterc/switchpipe","forks_url":"https://api.github.com/repos/peterc/switchpipe/forks","keys_url":"https://api.github.com/repos/peterc/switchpipe/keys{/key_id}","collaborators_url":"https://api.github.com/repos/peterc/switchpipe/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/peterc/switchpipe/teams","hooks_url":"https://api.github.com/repos/peterc/switchpipe/hooks","issue_events_url":"https://api.github.com/repos/peterc/switchpipe/issues/events{/number}","events_url":"https://api.github.com/repos/peterc/switchpipe/events","assignees_url":"https://api.github.com/repos/peterc/switchpipe/assignees{/user}","branches_url":"https://api.github.com/repos/peterc/switchpipe/branches{/branch}","tags_url":"https://api.github.com/repos/peterc/switchpipe/tags","blobs_url":"https://api.github.com/repos/peterc/switchpipe/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/peterc/switchpipe/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/peterc/switchpipe/git/refs{/sha}","trees_url":"https://api.github.com/repos/peterc/switchpipe/git/trees{/sha}","statuses_url":"https://api.github.com/repos/peterc/switchpipe/statuses/{sha}","languages_url":"https://api.github.com/repos/peterc/switchpipe/languages","stargazers_url":"https://api.github.com/repos/peterc/switchpipe/stargazers","contributors_url":"https://api.github.com/repos/peterc/switchpipe/contributors","subscribers_url":"https://api.github.com/repos/peterc/switchpipe/subscribers","subscription_url":"https://api.github.com/repos/peterc/switchpipe/subscription","commits_url":"https://api.github.com/repos/peterc/switchpipe/commits{/sha}","git_commits_url":"https://api.github.com/repos/peterc/switchpipe/git/commits{/sha}","comments_url":"https://api.github.com/repos/peterc/switchpipe/comments{/number}","issue_comment_url":"https://api.github.com/repos/peterc/switchpipe/issues/comments{/number}","contents_url":"https://api.github.com/repos/peterc/switchpipe/contents/{+path}","compare_url":"https://api.github.com/repos/peterc/switchpipe/compare/{base}...{head}","merges_url":"https://api.github.com/repos/peterc/switchpipe/merges","archive_url":"https://api.github.com/repos/peterc/switchpipe/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/peterc/switchpipe/downloads","issues_url":"https://api.github.com/repos/peterc/switchpipe/issues{/number}","pulls_url":"https://api.github.com/repos/peterc/switchpipe/pulls{/number}","milestones_url":"https://api.github.com/repos/peterc/switchpipe/milestones{/number}","notifications_url":"https://api.github.com/repos/peterc/switchpipe/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/peterc/switchpipe/labels{/name}","releases_url":"https://api.github.com/repos/peterc/switchpipe/releases{/id}","deployments_url":"https://api.github.com/repos/peterc/switchpipe/deployments"},{"id":213,"name":"arc","full_name":"hornbeck/arc","owner":{"login":"hornbeck","id":49,"avatar_url":"https://avatars3.githubusercontent.com/u/49?v=4","gravatar_id":"","url":"https://api.github.com/users/hornbeck","html_url":"https://github.com/hornbeck","followers_url":"https://api.github.com/users/hornbeck/followers","following_url":"https://api.github.com/users/hornbeck/following{/other_user}","gists_url":"https://api.github.com/users/hornbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/hornbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hornbeck/subscriptions","organizations_url":"https://api.github.com/users/hornbeck/orgs","repos_url":"https://api.github.com/users/hornbeck/repos","events_url":"https://api.github.com/users/hornbeck/events{/privacy}","received_events_url":"https://api.github.com/users/hornbeck/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hornbeck/arc","description":"My arc repo","fork":false,"url":"https://api.github.com/repos/hornbeck/arc","forks_url":"https://api.github.com/repos/hornbeck/arc/forks","keys_url":"https://api.github.com/repos/hornbeck/arc/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hornbeck/arc/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hornbeck/arc/teams","hooks_url":"https://api.github.com/repos/hornbeck/arc/hooks","issue_events_url":"https://api.github.com/repos/hornbeck/arc/issues/events{/number}","events_url":"https://api.github.com/repos/hornbeck/arc/events","assignees_url":"https://api.github.com/repos/hornbeck/arc/assignees{/user}","branches_url":"https://api.github.com/repos/hornbeck/arc/branches{/branch}","tags_url":"https://api.github.com/repos/hornbeck/arc/tags","blobs_url":"https://api.github.com/repos/hornbeck/arc/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hornbeck/arc/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hornbeck/arc/git/refs{/sha}","trees_url":"https://api.github.com/repos/hornbeck/arc/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hornbeck/arc/statuses/{sha}","languages_url":"https://api.github.com/repos/hornbeck/arc/languages","stargazers_url":"https://api.github.com/repos/hornbeck/arc/stargazers","contributors_url":"https://api.github.com/repos/hornbeck/arc/contributors","subscribers_url":"https://api.github.com/repos/hornbeck/arc/subscribers","subscription_url":"https://api.github.com/repos/hornbeck/arc/subscription","commits_url":"https://api.github.com/repos/hornbeck/arc/commits{/sha}","git_commits_url":"https://api.github.com/repos/hornbeck/arc/git/commits{/sha}","comments_url":"https://api.github.com/repos/hornbeck/arc/comments{/number}","issue_comment_url":"https://api.github.com/repos/hornbeck/arc/issues/comments{/number}","contents_url":"https://api.github.com/repos/hornbeck/arc/contents/{+path}","compare_url":"https://api.github.com/repos/hornbeck/arc/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hornbeck/arc/merges","archive_url":"https://api.github.com/repos/hornbeck/arc/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hornbeck/arc/downloads","issues_url":"https://api.github.com/repos/hornbeck/arc/issues{/number}","pulls_url":"https://api.github.com/repos/hornbeck/arc/pulls{/number}","milestones_url":"https://api.github.com/repos/hornbeck/arc/milestones{/number}","notifications_url":"https://api.github.com/repos/hornbeck/arc/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hornbeck/arc/labels{/name}","releases_url":"https://api.github.com/repos/hornbeck/arc/releases{/id}","deployments_url":"https://api.github.com/repos/hornbeck/arc/deployments"},{"id":217,"name":"ebay4r","full_name":"up_the_irons/ebay4r","owner":{"login":"up_the_irons","id":121,"avatar_url":"https://avatars3.githubusercontent.com/u/121?v=4","gravatar_id":"","url":"https://api.github.com/users/up_the_irons","html_url":"https://github.com/up_the_irons","followers_url":"https://api.github.com/users/up_the_irons/followers","following_url":"https://api.github.com/users/up_the_irons/following{/other_user}","gists_url":"https://api.github.com/users/up_the_irons/gists{/gist_id}","starred_url":"https://api.github.com/users/up_the_irons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/up_the_irons/subscriptions","organizations_url":"https://api.github.com/users/up_the_irons/orgs","repos_url":"https://api.github.com/users/up_the_irons/repos","events_url":"https://api.github.com/users/up_the_irons/events{/privacy}","received_events_url":"https://api.github.com/users/up_the_irons/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/up_the_irons/ebay4r","description":"eBay4R is a Ruby wrapper for eBay\'s Web Services SOAP API","fork":false,"url":"https://api.github.com/repos/up_the_irons/ebay4r","forks_url":"https://api.github.com/repos/up_the_irons/ebay4r/forks","keys_url":"https://api.github.com/repos/up_the_irons/ebay4r/keys{/key_id}","collaborators_url":"https://api.github.com/repos/up_the_irons/ebay4r/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/up_the_irons/ebay4r/teams","hooks_url":"https://api.github.com/repos/up_the_irons/ebay4r/hooks","issue_events_url":"https://api.github.com/repos/up_the_irons/ebay4r/issues/events{/number}","events_url":"https://api.github.com/repos/up_the_irons/ebay4r/events","assignees_url":"https://api.github.com/repos/up_the_irons/ebay4r/assignees{/user}","branches_url":"https://api.github.com/repos/up_the_irons/ebay4r/branches{/branch}","tags_url":"https://api.github.com/repos/up_the_irons/ebay4r/tags","blobs_url":"https://api.github.com/repos/up_the_irons/ebay4r/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/up_the_irons/ebay4r/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/up_the_irons/ebay4r/git/refs{/sha}","trees_url":"https://api.github.com/repos/up_the_irons/ebay4r/git/trees{/sha}","statuses_url":"https://api.github.com/repos/up_the_irons/ebay4r/statuses/{sha}","languages_url":"https://api.github.com/repos/up_the_irons/ebay4r/languages","stargazers_url":"https://api.github.com/repos/up_the_irons/ebay4r/stargazers","contributors_url":"https://api.github.com/repos/up_the_irons/ebay4r/contributors","subscribers_url":"https://api.github.com/repos/up_the_irons/ebay4r/subscribers","subscription_url":"https://api.github.com/repos/up_the_irons/ebay4r/subscription","commits_url":"https://api.github.com/repos/up_the_irons/ebay4r/commits{/sha}","git_commits_url":"https://api.github.com/repos/up_the_irons/ebay4r/git/commits{/sha}","comments_url":"https://api.github.com/repos/up_the_irons/ebay4r/comments{/number}","issue_comment_url":"https://api.github.com/repos/up_the_irons/ebay4r/issues/comments{/number}","contents_url":"https://api.github.com/repos/up_the_irons/ebay4r/contents/{+path}","compare_url":"https://api.github.com/repos/up_the_irons/ebay4r/compare/{base}...{head}","merges_url":"https://api.github.com/repos/up_the_irons/ebay4r/merges","archive_url":"https://api.github.com/repos/up_the_irons/ebay4r/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/up_the_irons/ebay4r/downloads","issues_url":"https://api.github.com/repos/up_the_irons/ebay4r/issues{/number}","pulls_url":"https://api.github.com/repos/up_the_irons/ebay4r/pulls{/number}","milestones_url":"https://api.github.com/repos/up_the_irons/ebay4r/milestones{/number}","notifications_url":"https://api.github.com/repos/up_the_irons/ebay4r/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/up_the_irons/ebay4r/labels{/name}","releases_url":"https://api.github.com/repos/up_the_irons/ebay4r/releases{/id}","deployments_url":"https://api.github.com/repos/up_the_irons/ebay4r/deployments"},{"id":218,"name":"merb-plugins","full_name":"wycats/merb-plugins","owner":{"login":"wycats","id":4,"avatar_url":"https://avatars0.githubusercontent.com/u/4?v=4","gravatar_id":"","url":"https://api.github.com/users/wycats","html_url":"https://github.com/wycats","followers_url":"https://api.github.com/users/wycats/followers","following_url":"https://api.github.com/users/wycats/following{/other_user}","gists_url":"https://api.github.com/users/wycats/gists{/gist_id}","starred_url":"https://api.github.com/users/wycats/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wycats/subscriptions","organizations_url":"https://api.github.com/users/wycats/orgs","repos_url":"https://api.github.com/users/wycats/repos","events_url":"https://api.github.com/users/wycats/events{/privacy}","received_events_url":"https://api.github.com/users/wycats/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wycats/merb-plugins","description":"Merb Plugins: Even more modules to hook up your Merb installation","fork":false,"url":"https://api.github.com/repos/wycats/merb-plugins","forks_url":"https://api.github.com/repos/wycats/merb-plugins/forks","keys_url":"https://api.github.com/repos/wycats/merb-plugins/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wycats/merb-plugins/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wycats/merb-plugins/teams","hooks_url":"https://api.github.com/repos/wycats/merb-plugins/hooks","issue_events_url":"https://api.github.com/repos/wycats/merb-plugins/issues/events{/number}","events_url":"https://api.github.com/repos/wycats/merb-plugins/events","assignees_url":"https://api.github.com/repos/wycats/merb-plugins/assignees{/user}","branches_url":"https://api.github.com/repos/wycats/merb-plugins/branches{/branch}","tags_url":"https://api.github.com/repos/wycats/merb-plugins/tags","blobs_url":"https://api.github.com/repos/wycats/merb-plugins/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wycats/merb-plugins/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wycats/merb-plugins/git/refs{/sha}","trees_url":"https://api.github.com/repos/wycats/merb-plugins/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wycats/merb-plugins/statuses/{sha}","languages_url":"https://api.github.com/repos/wycats/merb-plugins/languages","stargazers_url":"https://api.github.com/repos/wycats/merb-plugins/stargazers","contributors_url":"https://api.github.com/repos/wycats/merb-plugins/contributors","subscribers_url":"https://api.github.com/repos/wycats/merb-plugins/subscribers","subscription_url":"https://api.github.com/repos/wycats/merb-plugins/subscription","commits_url":"https://api.github.com/repos/wycats/merb-plugins/commits{/sha}","git_commits_url":"https://api.github.com/repos/wycats/merb-plugins/git/commits{/sha}","comments_url":"https://api.github.com/repos/wycats/merb-plugins/comments{/number}","issue_comment_url":"https://api.github.com/repos/wycats/merb-plugins/issues/comments{/number}","contents_url":"https://api.github.com/repos/wycats/merb-plugins/contents/{+path}","compare_url":"https://api.github.com/repos/wycats/merb-plugins/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wycats/merb-plugins/merges","archive_url":"https://api.github.com/repos/wycats/merb-plugins/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wycats/merb-plugins/downloads","issues_url":"https://api.github.com/repos/wycats/merb-plugins/issues{/number}","pulls_url":"https://api.github.com/repos/wycats/merb-plugins/pulls{/number}","milestones_url":"https://api.github.com/repos/wycats/merb-plugins/milestones{/number}","notifications_url":"https://api.github.com/repos/wycats/merb-plugins/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wycats/merb-plugins/labels{/name}","releases_url":"https://api.github.com/repos/wycats/merb-plugins/releases{/id}","deployments_url":"https://api.github.com/repos/wycats/merb-plugins/deployments"},{"id":220,"name":"ram","full_name":"up_the_irons/ram","owner":{"login":"up_the_irons","id":121,"avatar_url":"https://avatars3.githubusercontent.com/u/121?v=4","gravatar_id":"","url":"https://api.github.com/users/up_the_irons","html_url":"https://github.com/up_the_irons","followers_url":"https://api.github.com/users/up_the_irons/followers","following_url":"https://api.github.com/users/up_the_irons/following{/other_user}","gists_url":"https://api.github.com/users/up_the_irons/gists{/gist_id}","starred_url":"https://api.github.com/users/up_the_irons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/up_the_irons/subscriptions","organizations_url":"https://api.github.com/users/up_the_irons/orgs","repos_url":"https://api.github.com/users/up_the_irons/repos","events_url":"https://api.github.com/users/up_the_irons/events{/privacy}","received_events_url":"https://api.github.com/users/up_the_irons/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/up_the_irons/ram","description":"Ruby Asset Manager","fork":false,"url":"https://api.github.com/repos/up_the_irons/ram","forks_url":"https://api.github.com/repos/up_the_irons/ram/forks","keys_url":"https://api.github.com/repos/up_the_irons/ram/keys{/key_id}","collaborators_url":"https://api.github.com/repos/up_the_irons/ram/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/up_the_irons/ram/teams","hooks_url":"https://api.github.com/repos/up_the_irons/ram/hooks","issue_events_url":"https://api.github.com/repos/up_the_irons/ram/issues/events{/number}","events_url":"https://api.github.com/repos/up_the_irons/ram/events","assignees_url":"https://api.github.com/repos/up_the_irons/ram/assignees{/user}","branches_url":"https://api.github.com/repos/up_the_irons/ram/branches{/branch}","tags_url":"https://api.github.com/repos/up_the_irons/ram/tags","blobs_url":"https://api.github.com/repos/up_the_irons/ram/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/up_the_irons/ram/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/up_the_irons/ram/git/refs{/sha}","trees_url":"https://api.github.com/repos/up_the_irons/ram/git/trees{/sha}","statuses_url":"https://api.github.com/repos/up_the_irons/ram/statuses/{sha}","languages_url":"https://api.github.com/repos/up_the_irons/ram/languages","stargazers_url":"https://api.github.com/repos/up_the_irons/ram/stargazers","contributors_url":"https://api.github.com/repos/up_the_irons/ram/contributors","subscribers_url":"https://api.github.com/repos/up_the_irons/ram/subscribers","subscription_url":"https://api.github.com/repos/up_the_irons/ram/subscription","commits_url":"https://api.github.com/repos/up_the_irons/ram/commits{/sha}","git_commits_url":"https://api.github.com/repos/up_the_irons/ram/git/commits{/sha}","comments_url":"https://api.github.com/repos/up_the_irons/ram/comments{/number}","issue_comment_url":"https://api.github.com/repos/up_the_irons/ram/issues/comments{/number}","contents_url":"https://api.github.com/repos/up_the_irons/ram/contents/{+path}","compare_url":"https://api.github.com/repos/up_the_irons/ram/compare/{base}...{head}","merges_url":"https://api.github.com/repos/up_the_irons/ram/merges","archive_url":"https://api.github.com/repos/up_the_irons/ram/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/up_the_irons/ram/downloads","issues_url":"https://api.github.com/repos/up_the_irons/ram/issues{/number}","pulls_url":"https://api.github.com/repos/up_the_irons/ram/pulls{/number}","milestones_url":"https://api.github.com/repos/up_the_irons/ram/milestones{/number}","notifications_url":"https://api.github.com/repos/up_the_irons/ram/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/up_the_irons/ram/labels{/name}","releases_url":"https://api.github.com/repos/up_the_irons/ram/releases{/id}","deployments_url":"https://api.github.com/repos/up_the_irons/ram/deployments"},{"id":230,"name":"ambitious_activeldap","full_name":"defunkt/ambitious_activeldap","owner":{"login":"defunkt","id":2,"avatar_url":"https://avatars0.githubusercontent.com/u/2?v=4","gravatar_id":"","url":"https://api.github.com/users/defunkt","html_url":"https://github.com/defunkt","followers_url":"https://api.github.com/users/defunkt/followers","following_url":"https://api.github.com/users/defunkt/following{/other_user}","gists_url":"https://api.github.com/users/defunkt/gists{/gist_id}","starred_url":"https://api.github.com/users/defunkt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/defunkt/subscriptions","organizations_url":"https://api.github.com/users/defunkt/orgs","repos_url":"https://api.github.com/users/defunkt/repos","events_url":"https://api.github.com/users/defunkt/events{/privacy}","received_events_url":"https://api.github.com/users/defunkt/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/defunkt/ambitious_activeldap","description":"Ambition adapter for ActiveLdap","fork":false,"url":"https://api.github.com/repos/defunkt/ambitious_activeldap","forks_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/forks","keys_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/teams","hooks_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/hooks","issue_events_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/issues/events{/number}","events_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/events","assignees_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/assignees{/user}","branches_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/branches{/branch}","tags_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/tags","blobs_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/git/refs{/sha}","trees_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/statuses/{sha}","languages_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/languages","stargazers_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/stargazers","contributors_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/contributors","subscribers_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/subscribers","subscription_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/subscription","commits_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/commits{/sha}","git_commits_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/git/commits{/sha}","comments_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/comments{/number}","issue_comment_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/issues/comments{/number}","contents_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/contents/{+path}","compare_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/merges","archive_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/downloads","issues_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/issues{/number}","pulls_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/pulls{/number}","milestones_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/milestones{/number}","notifications_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/labels{/name}","releases_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/releases{/id}","deployments_url":"https://api.github.com/repos/defunkt/ambitious_activeldap/deployments"},{"id":232,"name":"fitter_happier","full_name":"atmos/fitter_happier","owner":{"login":"atmos","id":38,"avatar_url":"https://avatars3.githubusercontent.com/u/38?v=4","gravatar_id":"","url":"https://api.github.com/users/atmos","html_url":"https://github.com/atmos","followers_url":"https://api.github.com/users/atmos/followers","following_url":"https://api.github.com/users/atmos/following{/other_user}","gists_url":"https://api.github.com/users/atmos/gists{/gist_id}","starred_url":"https://api.github.com/users/atmos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/atmos/subscriptions","organizations_url":"https://api.github.com/users/atmos/orgs","repos_url":"https://api.github.com/users/atmos/repos","events_url":"https://api.github.com/users/atmos/events{/privacy}","received_events_url":"https://api.github.com/users/atmos/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/atmos/fitter_happier","description":"A Rails Plugin for adding a simple health check to your application","fork":false,"url":"https://api.github.com/repos/atmos/fitter_happier","forks_url":"https://api.github.com/repos/atmos/fitter_happier/forks","keys_url":"https://api.github.com/repos/atmos/fitter_happier/keys{/key_id}","collaborators_url":"https://api.github.com/repos/atmos/fitter_happier/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/atmos/fitter_happier/teams","hooks_url":"https://api.github.com/repos/atmos/fitter_happier/hooks","issue_events_url":"https://api.github.com/repos/atmos/fitter_happier/issues/events{/number}","events_url":"https://api.github.com/repos/atmos/fitter_happier/events","assignees_url":"https://api.github.com/repos/atmos/fitter_happier/assignees{/user}","branches_url":"https://api.github.com/repos/atmos/fitter_happier/branches{/branch}","tags_url":"https://api.github.com/repos/atmos/fitter_happier/tags","blobs_url":"https://api.github.com/repos/atmos/fitter_happier/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/atmos/fitter_happier/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/atmos/fitter_happier/git/refs{/sha}","trees_url":"https://api.github.com/repos/atmos/fitter_happier/git/trees{/sha}","statuses_url":"https://api.github.com/repos/atmos/fitter_happier/statuses/{sha}","languages_url":"https://api.github.com/repos/atmos/fitter_happier/languages","stargazers_url":"https://api.github.com/repos/atmos/fitter_happier/stargazers","contributors_url":"https://api.github.com/repos/atmos/fitter_happier/contributors","subscribers_url":"https://api.github.com/repos/atmos/fitter_happier/subscribers","subscription_url":"https://api.github.com/repos/atmos/fitter_happier/subscription","commits_url":"https://api.github.com/repos/atmos/fitter_happier/commits{/sha}","git_commits_url":"https://api.github.com/repos/atmos/fitter_happier/git/commits{/sha}","comments_url":"https://api.github.com/repos/atmos/fitter_happier/comments{/number}","issue_comment_url":"https://api.github.com/repos/atmos/fitter_happier/issues/comments{/number}","contents_url":"https://api.github.com/repos/atmos/fitter_happier/contents/{+path}","compare_url":"https://api.github.com/repos/atmos/fitter_happier/compare/{base}...{head}","merges_url":"https://api.github.com/repos/atmos/fitter_happier/merges","archive_url":"https://api.github.com/repos/atmos/fitter_happier/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/atmos/fitter_happier/downloads","issues_url":"https://api.github.com/repos/atmos/fitter_happier/issues{/number}","pulls_url":"https://api.github.com/repos/atmos/fitter_happier/pulls{/number}","milestones_url":"https://api.github.com/repos/atmos/fitter_happier/milestones{/number}","notifications_url":"https://api.github.com/repos/atmos/fitter_happier/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/atmos/fitter_happier/labels{/name}","releases_url":"https://api.github.com/repos/atmos/fitter_happier/releases{/id}","deployments_url":"https://api.github.com/repos/atmos/fitter_happier/deployments"},{"id":237,"name":"oebfare","full_name":"brosner/oebfare","owner":{"login":"brosner","id":124,"avatar_url":"https://avatars3.githubusercontent.com/u/124?v=4","gravatar_id":"","url":"https://api.github.com/users/brosner","html_url":"https://github.com/brosner","followers_url":"https://api.github.com/users/brosner/followers","following_url":"https://api.github.com/users/brosner/following{/other_user}","gists_url":"https://api.github.com/users/brosner/gists{/gist_id}","starred_url":"https://api.github.com/users/brosner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brosner/subscriptions","organizations_url":"https://api.github.com/users/brosner/orgs","repos_url":"https://api.github.com/users/brosner/repos","events_url":"https://api.github.com/users/brosner/events{/privacy}","received_events_url":"https://api.github.com/users/brosner/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/brosner/oebfare","description":"my personal blog written with django","fork":false,"url":"https://api.github.com/repos/brosner/oebfare","forks_url":"https://api.github.com/repos/brosner/oebfare/forks","keys_url":"https://api.github.com/repos/brosner/oebfare/keys{/key_id}","collaborators_url":"https://api.github.com/repos/brosner/oebfare/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/brosner/oebfare/teams","hooks_url":"https://api.github.com/repos/brosner/oebfare/hooks","issue_events_url":"https://api.github.com/repos/brosner/oebfare/issues/events{/number}","events_url":"https://api.github.com/repos/brosner/oebfare/events","assignees_url":"https://api.github.com/repos/brosner/oebfare/assignees{/user}","branches_url":"https://api.github.com/repos/brosner/oebfare/branches{/branch}","tags_url":"https://api.github.com/repos/brosner/oebfare/tags","blobs_url":"https://api.github.com/repos/brosner/oebfare/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/brosner/oebfare/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/brosner/oebfare/git/refs{/sha}","trees_url":"https://api.github.com/repos/brosner/oebfare/git/trees{/sha}","statuses_url":"https://api.github.com/repos/brosner/oebfare/statuses/{sha}","languages_url":"https://api.github.com/repos/brosner/oebfare/languages","stargazers_url":"https://api.github.com/repos/brosner/oebfare/stargazers","contributors_url":"https://api.github.com/repos/brosner/oebfare/contributors","subscribers_url":"https://api.github.com/repos/brosner/oebfare/subscribers","subscription_url":"https://api.github.com/repos/brosner/oebfare/subscription","commits_url":"https://api.github.com/repos/brosner/oebfare/commits{/sha}","git_commits_url":"https://api.github.com/repos/brosner/oebfare/git/commits{/sha}","comments_url":"https://api.github.com/repos/brosner/oebfare/comments{/number}","issue_comment_url":"https://api.github.com/repos/brosner/oebfare/issues/comments{/number}","contents_url":"https://api.github.com/repos/brosner/oebfare/contents/{+path}","compare_url":"https://api.github.com/repos/brosner/oebfare/compare/{base}...{head}","merges_url":"https://api.github.com/repos/brosner/oebfare/merges","archive_url":"https://api.github.com/repos/brosner/oebfare/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/brosner/oebfare/downloads","issues_url":"https://api.github.com/repos/brosner/oebfare/issues{/number}","pulls_url":"https://api.github.com/repos/brosner/oebfare/pulls{/number}","milestones_url":"https://api.github.com/repos/brosner/oebfare/milestones{/number}","notifications_url":"https://api.github.com/repos/brosner/oebfare/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/brosner/oebfare/labels{/name}","releases_url":"https://api.github.com/repos/brosner/oebfare/releases{/id}","deployments_url":"https://api.github.com/repos/brosner/oebfare/deployments"},{"id":245,"name":"credit_card_tools","full_name":"up_the_irons/credit_card_tools","owner":{"login":"up_the_irons","id":121,"avatar_url":"https://avatars3.githubusercontent.com/u/121?v=4","gravatar_id":"","url":"https://api.github.com/users/up_the_irons","html_url":"https://github.com/up_the_irons","followers_url":"https://api.github.com/users/up_the_irons/followers","following_url":"https://api.github.com/users/up_the_irons/following{/other_user}","gists_url":"https://api.github.com/users/up_the_irons/gists{/gist_id}","starred_url":"https://api.github.com/users/up_the_irons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/up_the_irons/subscriptions","organizations_url":"https://api.github.com/users/up_the_irons/orgs","repos_url":"https://api.github.com/users/up_the_irons/repos","events_url":"https://api.github.com/users/up_the_irons/events{/privacy}","received_events_url":"https://api.github.com/users/up_the_irons/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/up_the_irons/credit_card_tools","description":"Tools for processing credit cards on the command line","fork":false,"url":"https://api.github.com/repos/up_the_irons/credit_card_tools","forks_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/forks","keys_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/keys{/key_id}","collaborators_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/teams","hooks_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/hooks","issue_events_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/issues/events{/number}","events_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/events","assignees_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/assignees{/user}","branches_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/branches{/branch}","tags_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/tags","blobs_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/git/refs{/sha}","trees_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/git/trees{/sha}","statuses_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/statuses/{sha}","languages_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/languages","stargazers_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/stargazers","contributors_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/contributors","subscribers_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/subscribers","subscription_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/subscription","commits_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/commits{/sha}","git_commits_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/git/commits{/sha}","comments_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/comments{/number}","issue_comment_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/issues/comments{/number}","contents_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/contents/{+path}","compare_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/compare/{base}...{head}","merges_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/merges","archive_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/downloads","issues_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/issues{/number}","pulls_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/pulls{/number}","milestones_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/milestones{/number}","notifications_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/labels{/name}","releases_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/releases{/id}","deployments_url":"https://api.github.com/repos/up_the_irons/credit_card_tools/deployments"},{"id":248,"name":"rorem","full_name":"jnicklas/rorem","owner":{"login":"jnicklas","id":134,"avatar_url":"https://avatars2.githubusercontent.com/u/134?v=4","gravatar_id":"","url":"https://api.github.com/users/jnicklas","html_url":"https://github.com/jnicklas","followers_url":"https://api.github.com/users/jnicklas/followers","following_url":"https://api.github.com/users/jnicklas/following{/other_user}","gists_url":"https://api.github.com/users/jnicklas/gists{/gist_id}","starred_url":"https://api.github.com/users/jnicklas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnicklas/subscriptions","organizations_url":"https://api.github.com/users/jnicklas/orgs","repos_url":"https://api.github.com/users/jnicklas/repos","events_url":"https://api.github.com/users/jnicklas/events{/privacy}","received_events_url":"https://api.github.com/users/jnicklas/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jnicklas/rorem","description":"Rorem is a random data generator","fork":false,"url":"https://api.github.com/repos/jnicklas/rorem","forks_url":"https://api.github.com/repos/jnicklas/rorem/forks","keys_url":"https://api.github.com/repos/jnicklas/rorem/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnicklas/rorem/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnicklas/rorem/teams","hooks_url":"https://api.github.com/repos/jnicklas/rorem/hooks","issue_events_url":"https://api.github.com/repos/jnicklas/rorem/issues/events{/number}","events_url":"https://api.github.com/repos/jnicklas/rorem/events","assignees_url":"https://api.github.com/repos/jnicklas/rorem/assignees{/user}","branches_url":"https://api.github.com/repos/jnicklas/rorem/branches{/branch}","tags_url":"https://api.github.com/repos/jnicklas/rorem/tags","blobs_url":"https://api.github.com/repos/jnicklas/rorem/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnicklas/rorem/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnicklas/rorem/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnicklas/rorem/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnicklas/rorem/statuses/{sha}","languages_url":"https://api.github.com/repos/jnicklas/rorem/languages","stargazers_url":"https://api.github.com/repos/jnicklas/rorem/stargazers","contributors_url":"https://api.github.com/repos/jnicklas/rorem/contributors","subscribers_url":"https://api.github.com/repos/jnicklas/rorem/subscribers","subscription_url":"https://api.github.com/repos/jnicklas/rorem/subscription","commits_url":"https://api.github.com/repos/jnicklas/rorem/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnicklas/rorem/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnicklas/rorem/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnicklas/rorem/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnicklas/rorem/contents/{+path}","compare_url":"https://api.github.com/repos/jnicklas/rorem/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnicklas/rorem/merges","archive_url":"https://api.github.com/repos/jnicklas/rorem/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnicklas/rorem/downloads","issues_url":"https://api.github.com/repos/jnicklas/rorem/issues{/number}","pulls_url":"https://api.github.com/repos/jnicklas/rorem/pulls{/number}","milestones_url":"https://api.github.com/repos/jnicklas/rorem/milestones{/number}","notifications_url":"https://api.github.com/repos/jnicklas/rorem/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnicklas/rorem/labels{/name}","releases_url":"https://api.github.com/repos/jnicklas/rorem/releases{/id}","deployments_url":"https://api.github.com/repos/jnicklas/rorem/deployments"},{"id":249,"name":"braid","full_name":"cristibalan/braid","owner":{"login":"cristibalan","id":122,"avatar_url":"https://avatars3.githubusercontent.com/u/122?v=4","gravatar_id":"","url":"https://api.github.com/users/cristibalan","html_url":"https://github.com/cristibalan","followers_url":"https://api.github.com/users/cristibalan/followers","following_url":"https://api.github.com/users/cristibalan/following{/other_user}","gists_url":"https://api.github.com/users/cristibalan/gists{/gist_id}","starred_url":"https://api.github.com/users/cristibalan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cristibalan/subscriptions","organizations_url":"https://api.github.com/users/cristibalan/orgs","repos_url":"https://api.github.com/users/cristibalan/repos","events_url":"https://api.github.com/users/cristibalan/events{/privacy}","received_events_url":"https://api.github.com/users/cristibalan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cristibalan/braid","description":"Simple tool to help track vendor branches in a Git repository.","fork":false,"url":"https://api.github.com/repos/cristibalan/braid","forks_url":"https://api.github.com/repos/cristibalan/braid/forks","keys_url":"https://api.github.com/repos/cristibalan/braid/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cristibalan/braid/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cristibalan/braid/teams","hooks_url":"https://api.github.com/repos/cristibalan/braid/hooks","issue_events_url":"https://api.github.com/repos/cristibalan/braid/issues/events{/number}","events_url":"https://api.github.com/repos/cristibalan/braid/events","assignees_url":"https://api.github.com/repos/cristibalan/braid/assignees{/user}","branches_url":"https://api.github.com/repos/cristibalan/braid/branches{/branch}","tags_url":"https://api.github.com/repos/cristibalan/braid/tags","blobs_url":"https://api.github.com/repos/cristibalan/braid/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cristibalan/braid/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cristibalan/braid/git/refs{/sha}","trees_url":"https://api.github.com/repos/cristibalan/braid/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cristibalan/braid/statuses/{sha}","languages_url":"https://api.github.com/repos/cristibalan/braid/languages","stargazers_url":"https://api.github.com/repos/cristibalan/braid/stargazers","contributors_url":"https://api.github.com/repos/cristibalan/braid/contributors","subscribers_url":"https://api.github.com/repos/cristibalan/braid/subscribers","subscription_url":"https://api.github.com/repos/cristibalan/braid/subscription","commits_url":"https://api.github.com/repos/cristibalan/braid/commits{/sha}","git_commits_url":"https://api.github.com/repos/cristibalan/braid/git/commits{/sha}","comments_url":"https://api.github.com/repos/cristibalan/braid/comments{/number}","issue_comment_url":"https://api.github.com/repos/cristibalan/braid/issues/comments{/number}","contents_url":"https://api.github.com/repos/cristibalan/braid/contents/{+path}","compare_url":"https://api.github.com/repos/cristibalan/braid/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cristibalan/braid/merges","archive_url":"https://api.github.com/repos/cristibalan/braid/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cristibalan/braid/downloads","issues_url":"https://api.github.com/repos/cristibalan/braid/issues{/number}","pulls_url":"https://api.github.com/repos/cristibalan/braid/pulls{/number}","milestones_url":"https://api.github.com/repos/cristibalan/braid/milestones{/number}","notifications_url":"https://api.github.com/repos/cristibalan/braid/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cristibalan/braid/labels{/name}","releases_url":"https://api.github.com/repos/cristibalan/braid/releases{/id}","deployments_url":"https://api.github.com/repos/cristibalan/braid/deployments"},{"id":251,"name":"uploadcolumn","full_name":"jnicklas/uploadcolumn","owner":{"login":"jnicklas","id":134,"avatar_url":"https://avatars2.githubusercontent.com/u/134?v=4","gravatar_id":"","url":"https://api.github.com/users/jnicklas","html_url":"https://github.com/jnicklas","followers_url":"https://api.github.com/users/jnicklas/followers","following_url":"https://api.github.com/users/jnicklas/following{/other_user}","gists_url":"https://api.github.com/users/jnicklas/gists{/gist_id}","starred_url":"https://api.github.com/users/jnicklas/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnicklas/subscriptions","organizations_url":"https://api.github.com/users/jnicklas/orgs","repos_url":"https://api.github.com/users/jnicklas/repos","events_url":"https://api.github.com/users/jnicklas/events{/privacy}","received_events_url":"https://api.github.com/users/jnicklas/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jnicklas/uploadcolumn","description":"UploadColumn is no longer maintained, check out CarrierWave for an alternative","fork":false,"url":"https://api.github.com/repos/jnicklas/uploadcolumn","forks_url":"https://api.github.com/repos/jnicklas/uploadcolumn/forks","keys_url":"https://api.github.com/repos/jnicklas/uploadcolumn/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnicklas/uploadcolumn/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnicklas/uploadcolumn/teams","hooks_url":"https://api.github.com/repos/jnicklas/uploadcolumn/hooks","issue_events_url":"https://api.github.com/repos/jnicklas/uploadcolumn/issues/events{/number}","events_url":"https://api.github.com/repos/jnicklas/uploadcolumn/events","assignees_url":"https://api.github.com/repos/jnicklas/uploadcolumn/assignees{/user}","branches_url":"https://api.github.com/repos/jnicklas/uploadcolumn/branches{/branch}","tags_url":"https://api.github.com/repos/jnicklas/uploadcolumn/tags","blobs_url":"https://api.github.com/repos/jnicklas/uploadcolumn/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnicklas/uploadcolumn/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnicklas/uploadcolumn/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnicklas/uploadcolumn/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnicklas/uploadcolumn/statuses/{sha}","languages_url":"https://api.github.com/repos/jnicklas/uploadcolumn/languages","stargazers_url":"https://api.github.com/repos/jnicklas/uploadcolumn/stargazers","contributors_url":"https://api.github.com/repos/jnicklas/uploadcolumn/contributors","subscribers_url":"https://api.github.com/repos/jnicklas/uploadcolumn/subscribers","subscription_url":"https://api.github.com/repos/jnicklas/uploadcolumn/subscription","commits_url":"https://api.github.com/repos/jnicklas/uploadcolumn/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnicklas/uploadcolumn/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnicklas/uploadcolumn/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnicklas/uploadcolumn/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnicklas/uploadcolumn/contents/{+path}","compare_url":"https://api.github.com/repos/jnicklas/uploadcolumn/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnicklas/uploadcolumn/merges","archive_url":"https://api.github.com/repos/jnicklas/uploadcolumn/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnicklas/uploadcolumn/downloads","issues_url":"https://api.github.com/repos/jnicklas/uploadcolumn/issues{/number}","pulls_url":"https://api.github.com/repos/jnicklas/uploadcolumn/pulls{/number}","milestones_url":"https://api.github.com/repos/jnicklas/uploadcolumn/milestones{/number}","notifications_url":"https://api.github.com/repos/jnicklas/uploadcolumn/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnicklas/uploadcolumn/labels{/name}","releases_url":"https://api.github.com/repos/jnicklas/uploadcolumn/releases{/id}","deployments_url":"https://api.github.com/repos/jnicklas/uploadcolumn/deployments"},{"id":252,"name":"ruby-on-rails-tmbundle","full_name":"simonjefford/ruby-on-rails-tmbundle","owner":{"login":"simonjefford","id":136,"avatar_url":"https://avatars2.githubusercontent.com/u/136?v=4","gravatar_id":"","url":"https://api.github.com/users/simonjefford","html_url":"https://github.com/simonjefford","followers_url":"https://api.github.com/users/simonjefford/followers","following_url":"https://api.github.com/users/simonjefford/following{/other_user}","gists_url":"https://api.github.com/users/simonjefford/gists{/gist_id}","starred_url":"https://api.github.com/users/simonjefford/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/simonjefford/subscriptions","organizations_url":"https://api.github.com/users/simonjefford/orgs","repos_url":"https://api.github.com/users/simonjefford/repos","events_url":"https://api.github.com/users/simonjefford/events{/privacy}","received_events_url":"https://api.github.com/users/simonjefford/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/simonjefford/ruby-on-rails-tmbundle","description":"Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]","fork":true,"url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle","forks_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/forks","keys_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/teams","hooks_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/hooks","issue_events_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/events{/number}","events_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/events","assignees_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/assignees{/user}","branches_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/branches{/branch}","tags_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/tags","blobs_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/statuses/{sha}","languages_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/languages","stargazers_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/stargazers","contributors_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contributors","subscribers_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscribers","subscription_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscription","commits_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/comments{/number}","contents_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contents/{+path}","compare_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/merges","archive_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/downloads","issues_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues{/number}","pulls_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/pulls{/number}","milestones_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/milestones{/number}","notifications_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/labels{/name}","releases_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/releases{/id}","deployments_url":"https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/deployments"},{"id":256,"name":"rack-mirror","full_name":"chneukirchen/rack-mirror","owner":{"login":"chneukirchen","id":139,"avatar_url":"https://avatars3.githubusercontent.com/u/139?v=4","gravatar_id":"","url":"https://api.github.com/users/chneukirchen","html_url":"https://github.com/chneukirchen","followers_url":"https://api.github.com/users/chneukirchen/followers","following_url":"https://api.github.com/users/chneukirchen/following{/other_user}","gists_url":"https://api.github.com/users/chneukirchen/gists{/gist_id}","starred_url":"https://api.github.com/users/chneukirchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chneukirchen/subscriptions","organizations_url":"https://api.github.com/users/chneukirchen/orgs","repos_url":"https://api.github.com/users/chneukirchen/repos","events_url":"https://api.github.com/users/chneukirchen/events{/privacy}","received_events_url":"https://api.github.com/users/chneukirchen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chneukirchen/rack-mirror","description":"OUTDATED mirror of Rack\'s darcs repository, use github.com/chneukirchen/rack","fork":false,"url":"https://api.github.com/repos/chneukirchen/rack-mirror","forks_url":"https://api.github.com/repos/chneukirchen/rack-mirror/forks","keys_url":"https://api.github.com/repos/chneukirchen/rack-mirror/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chneukirchen/rack-mirror/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chneukirchen/rack-mirror/teams","hooks_url":"https://api.github.com/repos/chneukirchen/rack-mirror/hooks","issue_events_url":"https://api.github.com/repos/chneukirchen/rack-mirror/issues/events{/number}","events_url":"https://api.github.com/repos/chneukirchen/rack-mirror/events","assignees_url":"https://api.github.com/repos/chneukirchen/rack-mirror/assignees{/user}","branches_url":"https://api.github.com/repos/chneukirchen/rack-mirror/branches{/branch}","tags_url":"https://api.github.com/repos/chneukirchen/rack-mirror/tags","blobs_url":"https://api.github.com/repos/chneukirchen/rack-mirror/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chneukirchen/rack-mirror/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chneukirchen/rack-mirror/git/refs{/sha}","trees_url":"https://api.github.com/repos/chneukirchen/rack-mirror/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chneukirchen/rack-mirror/statuses/{sha}","languages_url":"https://api.github.com/repos/chneukirchen/rack-mirror/languages","stargazers_url":"https://api.github.com/repos/chneukirchen/rack-mirror/stargazers","contributors_url":"https://api.github.com/repos/chneukirchen/rack-mirror/contributors","subscribers_url":"https://api.github.com/repos/chneukirchen/rack-mirror/subscribers","subscription_url":"https://api.github.com/repos/chneukirchen/rack-mirror/subscription","commits_url":"https://api.github.com/repos/chneukirchen/rack-mirror/commits{/sha}","git_commits_url":"https://api.github.com/repos/chneukirchen/rack-mirror/git/commits{/sha}","comments_url":"https://api.github.com/repos/chneukirchen/rack-mirror/comments{/number}","issue_comment_url":"https://api.github.com/repos/chneukirchen/rack-mirror/issues/comments{/number}","contents_url":"https://api.github.com/repos/chneukirchen/rack-mirror/contents/{+path}","compare_url":"https://api.github.com/repos/chneukirchen/rack-mirror/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chneukirchen/rack-mirror/merges","archive_url":"https://api.github.com/repos/chneukirchen/rack-mirror/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chneukirchen/rack-mirror/downloads","issues_url":"https://api.github.com/repos/chneukirchen/rack-mirror/issues{/number}","pulls_url":"https://api.github.com/repos/chneukirchen/rack-mirror/pulls{/number}","milestones_url":"https://api.github.com/repos/chneukirchen/rack-mirror/milestones{/number}","notifications_url":"https://api.github.com/repos/chneukirchen/rack-mirror/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chneukirchen/rack-mirror/labels{/name}","releases_url":"https://api.github.com/repos/chneukirchen/rack-mirror/releases{/id}","deployments_url":"https://api.github.com/repos/chneukirchen/rack-mirror/deployments"},{"id":257,"name":"coset-mirror","full_name":"chneukirchen/coset-mirror","owner":{"login":"chneukirchen","id":139,"avatar_url":"https://avatars3.githubusercontent.com/u/139?v=4","gravatar_id":"","url":"https://api.github.com/users/chneukirchen","html_url":"https://github.com/chneukirchen","followers_url":"https://api.github.com/users/chneukirchen/followers","following_url":"https://api.github.com/users/chneukirchen/following{/other_user}","gists_url":"https://api.github.com/users/chneukirchen/gists{/gist_id}","starred_url":"https://api.github.com/users/chneukirchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chneukirchen/subscriptions","organizations_url":"https://api.github.com/users/chneukirchen/orgs","repos_url":"https://api.github.com/users/chneukirchen/repos","events_url":"https://api.github.com/users/chneukirchen/events{/privacy}","received_events_url":"https://api.github.com/users/chneukirchen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chneukirchen/coset-mirror","description":"(experimental) Mirror of the coset darcs repository","fork":false,"url":"https://api.github.com/repos/chneukirchen/coset-mirror","forks_url":"https://api.github.com/repos/chneukirchen/coset-mirror/forks","keys_url":"https://api.github.com/repos/chneukirchen/coset-mirror/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chneukirchen/coset-mirror/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chneukirchen/coset-mirror/teams","hooks_url":"https://api.github.com/repos/chneukirchen/coset-mirror/hooks","issue_events_url":"https://api.github.com/repos/chneukirchen/coset-mirror/issues/events{/number}","events_url":"https://api.github.com/repos/chneukirchen/coset-mirror/events","assignees_url":"https://api.github.com/repos/chneukirchen/coset-mirror/assignees{/user}","branches_url":"https://api.github.com/repos/chneukirchen/coset-mirror/branches{/branch}","tags_url":"https://api.github.com/repos/chneukirchen/coset-mirror/tags","blobs_url":"https://api.github.com/repos/chneukirchen/coset-mirror/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chneukirchen/coset-mirror/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chneukirchen/coset-mirror/git/refs{/sha}","trees_url":"https://api.github.com/repos/chneukirchen/coset-mirror/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chneukirchen/coset-mirror/statuses/{sha}","languages_url":"https://api.github.com/repos/chneukirchen/coset-mirror/languages","stargazers_url":"https://api.github.com/repos/chneukirchen/coset-mirror/stargazers","contributors_url":"https://api.github.com/repos/chneukirchen/coset-mirror/contributors","subscribers_url":"https://api.github.com/repos/chneukirchen/coset-mirror/subscribers","subscription_url":"https://api.github.com/repos/chneukirchen/coset-mirror/subscription","commits_url":"https://api.github.com/repos/chneukirchen/coset-mirror/commits{/sha}","git_commits_url":"https://api.github.com/repos/chneukirchen/coset-mirror/git/commits{/sha}","comments_url":"https://api.github.com/repos/chneukirchen/coset-mirror/comments{/number}","issue_comment_url":"https://api.github.com/repos/chneukirchen/coset-mirror/issues/comments{/number}","contents_url":"https://api.github.com/repos/chneukirchen/coset-mirror/contents/{+path}","compare_url":"https://api.github.com/repos/chneukirchen/coset-mirror/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chneukirchen/coset-mirror/merges","archive_url":"https://api.github.com/repos/chneukirchen/coset-mirror/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chneukirchen/coset-mirror/downloads","issues_url":"https://api.github.com/repos/chneukirchen/coset-mirror/issues{/number}","pulls_url":"https://api.github.com/repos/chneukirchen/coset-mirror/pulls{/number}","milestones_url":"https://api.github.com/repos/chneukirchen/coset-mirror/milestones{/number}","notifications_url":"https://api.github.com/repos/chneukirchen/coset-mirror/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chneukirchen/coset-mirror/labels{/name}","releases_url":"https://api.github.com/repos/chneukirchen/coset-mirror/releases{/id}","deployments_url":"https://api.github.com/repos/chneukirchen/coset-mirror/deployments"},{"id":267,"name":"javascript-unittest-tmbundle","full_name":"drnic/javascript-unittest-tmbundle","owner":{"login":"drnic","id":108,"avatar_url":"https://avatars1.githubusercontent.com/u/108?v=4","gravatar_id":"","url":"https://api.github.com/users/drnic","html_url":"https://github.com/drnic","followers_url":"https://api.github.com/users/drnic/followers","following_url":"https://api.github.com/users/drnic/following{/other_user}","gists_url":"https://api.github.com/users/drnic/gists{/gist_id}","starred_url":"https://api.github.com/users/drnic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/drnic/subscriptions","organizations_url":"https://api.github.com/users/drnic/orgs","repos_url":"https://api.github.com/users/drnic/repos","events_url":"https://api.github.com/users/drnic/events{/privacy}","received_events_url":"https://api.github.com/users/drnic/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/drnic/javascript-unittest-tmbundle","description":"JavaScript Unit Test TextMate Bundle [for prototype\'s unittest.js library]","fork":false,"url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle","forks_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/forks","keys_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/teams","hooks_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/hooks","issue_events_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/events{/number}","events_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/events","assignees_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/assignees{/user}","branches_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/branches{/branch}","tags_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/tags","blobs_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/statuses/{sha}","languages_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/languages","stargazers_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/stargazers","contributors_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contributors","subscribers_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscribers","subscription_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscription","commits_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/comments{/number}","contents_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contents/{+path}","compare_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/merges","archive_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/downloads","issues_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues{/number}","pulls_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/pulls{/number}","milestones_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/milestones{/number}","notifications_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/labels{/name}","releases_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/releases{/id}","deployments_url":"https://api.github.com/repos/drnic/javascript-unittest-tmbundle/deployments"},{"id":273,"name":"eycap","full_name":"engineyard/eycap","owner":{"login":"engineyard","id":81,"avatar_url":"https://avatars1.githubusercontent.com/u/81?v=4","gravatar_id":"","url":"https://api.github.com/users/engineyard","html_url":"https://github.com/engineyard","followers_url":"https://api.github.com/users/engineyard/followers","following_url":"https://api.github.com/users/engineyard/following{/other_user}","gists_url":"https://api.github.com/users/engineyard/gists{/gist_id}","starred_url":"https://api.github.com/users/engineyard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/engineyard/subscriptions","organizations_url":"https://api.github.com/users/engineyard/orgs","repos_url":"https://api.github.com/users/engineyard/repos","events_url":"https://api.github.com/users/engineyard/events{/privacy}","received_events_url":"https://api.github.com/users/engineyard/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/engineyard/eycap","description":"Engine Yard specific capistrano recipes","fork":false,"url":"https://api.github.com/repos/engineyard/eycap","forks_url":"https://api.github.com/repos/engineyard/eycap/forks","keys_url":"https://api.github.com/repos/engineyard/eycap/keys{/key_id}","collaborators_url":"https://api.github.com/repos/engineyard/eycap/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/engineyard/eycap/teams","hooks_url":"https://api.github.com/repos/engineyard/eycap/hooks","issue_events_url":"https://api.github.com/repos/engineyard/eycap/issues/events{/number}","events_url":"https://api.github.com/repos/engineyard/eycap/events","assignees_url":"https://api.github.com/repos/engineyard/eycap/assignees{/user}","branches_url":"https://api.github.com/repos/engineyard/eycap/branches{/branch}","tags_url":"https://api.github.com/repos/engineyard/eycap/tags","blobs_url":"https://api.github.com/repos/engineyard/eycap/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/engineyard/eycap/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/engineyard/eycap/git/refs{/sha}","trees_url":"https://api.github.com/repos/engineyard/eycap/git/trees{/sha}","statuses_url":"https://api.github.com/repos/engineyard/eycap/statuses/{sha}","languages_url":"https://api.github.com/repos/engineyard/eycap/languages","stargazers_url":"https://api.github.com/repos/engineyard/eycap/stargazers","contributors_url":"https://api.github.com/repos/engineyard/eycap/contributors","subscribers_url":"https://api.github.com/repos/engineyard/eycap/subscribers","subscription_url":"https://api.github.com/repos/engineyard/eycap/subscription","commits_url":"https://api.github.com/repos/engineyard/eycap/commits{/sha}","git_commits_url":"https://api.github.com/repos/engineyard/eycap/git/commits{/sha}","comments_url":"https://api.github.com/repos/engineyard/eycap/comments{/number}","issue_comment_url":"https://api.github.com/repos/engineyard/eycap/issues/comments{/number}","contents_url":"https://api.github.com/repos/engineyard/eycap/contents/{+path}","compare_url":"https://api.github.com/repos/engineyard/eycap/compare/{base}...{head}","merges_url":"https://api.github.com/repos/engineyard/eycap/merges","archive_url":"https://api.github.com/repos/engineyard/eycap/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/engineyard/eycap/downloads","issues_url":"https://api.github.com/repos/engineyard/eycap/issues{/number}","pulls_url":"https://api.github.com/repos/engineyard/eycap/pulls{/number}","milestones_url":"https://api.github.com/repos/engineyard/eycap/milestones{/number}","notifications_url":"https://api.github.com/repos/engineyard/eycap/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/engineyard/eycap/labels{/name}","releases_url":"https://api.github.com/repos/engineyard/eycap/releases{/id}","deployments_url":"https://api.github.com/repos/engineyard/eycap/deployments"},{"id":279,"name":"gitsum","full_name":"chneukirchen/gitsum","owner":{"login":"chneukirchen","id":139,"avatar_url":"https://avatars3.githubusercontent.com/u/139?v=4","gravatar_id":"","url":"https://api.github.com/users/chneukirchen","html_url":"https://github.com/chneukirchen","followers_url":"https://api.github.com/users/chneukirchen/followers","following_url":"https://api.github.com/users/chneukirchen/following{/other_user}","gists_url":"https://api.github.com/users/chneukirchen/gists{/gist_id}","starred_url":"https://api.github.com/users/chneukirchen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chneukirchen/subscriptions","organizations_url":"https://api.github.com/users/chneukirchen/orgs","repos_url":"https://api.github.com/users/chneukirchen/repos","events_url":"https://api.github.com/users/chneukirchen/events{/privacy}","received_events_url":"https://api.github.com/users/chneukirchen/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chneukirchen/gitsum","description":"basic darcsum feelalike for Git","fork":false,"url":"https://api.github.com/repos/chneukirchen/gitsum","forks_url":"https://api.github.com/repos/chneukirchen/gitsum/forks","keys_url":"https://api.github.com/repos/chneukirchen/gitsum/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chneukirchen/gitsum/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chneukirchen/gitsum/teams","hooks_url":"https://api.github.com/repos/chneukirchen/gitsum/hooks","issue_events_url":"https://api.github.com/repos/chneukirchen/gitsum/issues/events{/number}","events_url":"https://api.github.com/repos/chneukirchen/gitsum/events","assignees_url":"https://api.github.com/repos/chneukirchen/gitsum/assignees{/user}","branches_url":"https://api.github.com/repos/chneukirchen/gitsum/branches{/branch}","tags_url":"https://api.github.com/repos/chneukirchen/gitsum/tags","blobs_url":"https://api.github.com/repos/chneukirchen/gitsum/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chneukirchen/gitsum/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chneukirchen/gitsum/git/refs{/sha}","trees_url":"https://api.github.com/repos/chneukirchen/gitsum/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chneukirchen/gitsum/statuses/{sha}","languages_url":"https://api.github.com/repos/chneukirchen/gitsum/languages","stargazers_url":"https://api.github.com/repos/chneukirchen/gitsum/stargazers","contributors_url":"https://api.github.com/repos/chneukirchen/gitsum/contributors","subscribers_url":"https://api.github.com/repos/chneukirchen/gitsum/subscribers","subscription_url":"https://api.github.com/repos/chneukirchen/gitsum/subscription","commits_url":"https://api.github.com/repos/chneukirchen/gitsum/commits{/sha}","git_commits_url":"https://api.github.com/repos/chneukirchen/gitsum/git/commits{/sha}","comments_url":"https://api.github.com/repos/chneukirchen/gitsum/comments{/number}","issue_comment_url":"https://api.github.com/repos/chneukirchen/gitsum/issues/comments{/number}","contents_url":"https://api.github.com/repos/chneukirchen/gitsum/contents/{+path}","compare_url":"https://api.github.com/repos/chneukirchen/gitsum/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chneukirchen/gitsum/merges","archive_url":"https://api.github.com/repos/chneukirchen/gitsum/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chneukirchen/gitsum/downloads","issues_url":"https://api.github.com/repos/chneukirchen/gitsum/issues{/number}","pulls_url":"https://api.github.com/repos/chneukirchen/gitsum/pulls{/number}","milestones_url":"https://api.github.com/repos/chneukirchen/gitsum/milestones{/number}","notifications_url":"https://api.github.com/repos/chneukirchen/gitsum/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chneukirchen/gitsum/labels{/name}","releases_url":"https://api.github.com/repos/chneukirchen/gitsum/releases{/id}","deployments_url":"https://api.github.com/repos/chneukirchen/gitsum/deployments"},{"id":293,"name":"sequel-model","full_name":"wayneeseguin/sequel-model","owner":{"login":"wayneeseguin","id":18,"avatar_url":"https://avatars0.githubusercontent.com/u/18?v=4","gravatar_id":"","url":"https://api.github.com/users/wayneeseguin","html_url":"https://github.com/wayneeseguin","followers_url":"https://api.github.com/users/wayneeseguin/followers","following_url":"https://api.github.com/users/wayneeseguin/following{/other_user}","gists_url":"https://api.github.com/users/wayneeseguin/gists{/gist_id}","starred_url":"https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wayneeseguin/subscriptions","organizations_url":"https://api.github.com/users/wayneeseguin/orgs","repos_url":"https://api.github.com/users/wayneeseguin/repos","events_url":"https://api.github.com/users/wayneeseguin/events{/privacy}","received_events_url":"https://api.github.com/users/wayneeseguin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/wayneeseguin/sequel-model","description":"Sequel::Model (No longer working on this project)","fork":false,"url":"https://api.github.com/repos/wayneeseguin/sequel-model","forks_url":"https://api.github.com/repos/wayneeseguin/sequel-model/forks","keys_url":"https://api.github.com/repos/wayneeseguin/sequel-model/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wayneeseguin/sequel-model/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wayneeseguin/sequel-model/teams","hooks_url":"https://api.github.com/repos/wayneeseguin/sequel-model/hooks","issue_events_url":"https://api.github.com/repos/wayneeseguin/sequel-model/issues/events{/number}","events_url":"https://api.github.com/repos/wayneeseguin/sequel-model/events","assignees_url":"https://api.github.com/repos/wayneeseguin/sequel-model/assignees{/user}","branches_url":"https://api.github.com/repos/wayneeseguin/sequel-model/branches{/branch}","tags_url":"https://api.github.com/repos/wayneeseguin/sequel-model/tags","blobs_url":"https://api.github.com/repos/wayneeseguin/sequel-model/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wayneeseguin/sequel-model/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wayneeseguin/sequel-model/git/refs{/sha}","trees_url":"https://api.github.com/repos/wayneeseguin/sequel-model/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wayneeseguin/sequel-model/statuses/{sha}","languages_url":"https://api.github.com/repos/wayneeseguin/sequel-model/languages","stargazers_url":"https://api.github.com/repos/wayneeseguin/sequel-model/stargazers","contributors_url":"https://api.github.com/repos/wayneeseguin/sequel-model/contributors","subscribers_url":"https://api.github.com/repos/wayneeseguin/sequel-model/subscribers","subscription_url":"https://api.github.com/repos/wayneeseguin/sequel-model/subscription","commits_url":"https://api.github.com/repos/wayneeseguin/sequel-model/commits{/sha}","git_commits_url":"https://api.github.com/repos/wayneeseguin/sequel-model/git/commits{/sha}","comments_url":"https://api.github.com/repos/wayneeseguin/sequel-model/comments{/number}","issue_comment_url":"https://api.github.com/repos/wayneeseguin/sequel-model/issues/comments{/number}","contents_url":"https://api.github.com/repos/wayneeseguin/sequel-model/contents/{+path}","compare_url":"https://api.github.com/repos/wayneeseguin/sequel-model/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wayneeseguin/sequel-model/merges","archive_url":"https://api.github.com/repos/wayneeseguin/sequel-model/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wayneeseguin/sequel-model/downloads","issues_url":"https://api.github.com/repos/wayneeseguin/sequel-model/issues{/number}","pulls_url":"https://api.github.com/repos/wayneeseguin/sequel-model/pulls{/number}","milestones_url":"https://api.github.com/repos/wayneeseguin/sequel-model/milestones{/number}","notifications_url":"https://api.github.com/repos/wayneeseguin/sequel-model/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wayneeseguin/sequel-model/labels{/name}","releases_url":"https://api.github.com/repos/wayneeseguin/sequel-model/releases{/id}","deployments_url":"https://api.github.com/repos/wayneeseguin/sequel-model/deployments"},{"id":305,"name":"god","full_name":"kevinclark/god","owner":{"login":"kevinclark","id":20,"avatar_url":"https://avatars3.githubusercontent.com/u/20?v=4","gravatar_id":"","url":"https://api.github.com/users/kevinclark","html_url":"https://github.com/kevinclark","followers_url":"https://api.github.com/users/kevinclark/followers","following_url":"https://api.github.com/users/kevinclark/following{/other_user}","gists_url":"https://api.github.com/users/kevinclark/gists{/gist_id}","starred_url":"https://api.github.com/users/kevinclark/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kevinclark/subscriptions","organizations_url":"https://api.github.com/users/kevinclark/orgs","repos_url":"https://api.github.com/users/kevinclark/repos","events_url":"https://api.github.com/users/kevinclark/events{/privacy}","received_events_url":"https://api.github.com/users/kevinclark/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/kevinclark/god","description":"Ruby process monitor","fork":true,"url":"https://api.github.com/repos/kevinclark/god","forks_url":"https://api.github.com/repos/kevinclark/god/forks","keys_url":"https://api.github.com/repos/kevinclark/god/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kevinclark/god/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kevinclark/god/teams","hooks_url":"https://api.github.com/repos/kevinclark/god/hooks","issue_events_url":"https://api.github.com/repos/kevinclark/god/issues/events{/number}","events_url":"https://api.github.com/repos/kevinclark/god/events","assignees_url":"https://api.github.com/repos/kevinclark/god/assignees{/user}","branches_url":"https://api.github.com/repos/kevinclark/god/branches{/branch}","tags_url":"https://api.github.com/repos/kevinclark/god/tags","blobs_url":"https://api.github.com/repos/kevinclark/god/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kevinclark/god/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kevinclark/god/git/refs{/sha}","trees_url":"https://api.github.com/repos/kevinclark/god/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kevinclark/god/statuses/{sha}","languages_url":"https://api.github.com/repos/kevinclark/god/languages","stargazers_url":"https://api.github.com/repos/kevinclark/god/stargazers","contributors_url":"https://api.github.com/repos/kevinclark/god/contributors","subscribers_url":"https://api.github.com/repos/kevinclark/god/subscribers","subscription_url":"https://api.github.com/repos/kevinclark/god/subscription","commits_url":"https://api.github.com/repos/kevinclark/god/commits{/sha}","git_commits_url":"https://api.github.com/repos/kevinclark/god/git/commits{/sha}","comments_url":"https://api.github.com/repos/kevinclark/god/comments{/number}","issue_comment_url":"https://api.github.com/repos/kevinclark/god/issues/comments{/number}","contents_url":"https://api.github.com/repos/kevinclark/god/contents/{+path}","compare_url":"https://api.github.com/repos/kevinclark/god/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kevinclark/god/merges","archive_url":"https://api.github.com/repos/kevinclark/god/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kevinclark/god/downloads","issues_url":"https://api.github.com/repos/kevinclark/god/issues{/number}","pulls_url":"https://api.github.com/repos/kevinclark/god/pulls{/number}","milestones_url":"https://api.github.com/repos/kevinclark/god/milestones{/number}","notifications_url":"https://api.github.com/repos/kevinclark/god/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kevinclark/god/labels{/name}","releases_url":"https://api.github.com/repos/kevinclark/god/releases{/id}","deployments_url":"https://api.github.com/repos/kevinclark/god/deployments"},{"id":307,"name":"blerb-core","full_name":"hornbeck/blerb-core","owner":{"login":"hornbeck","id":49,"avatar_url":"https://avatars3.githubusercontent.com/u/49?v=4","gravatar_id":"","url":"https://api.github.com/users/hornbeck","html_url":"https://github.com/hornbeck","followers_url":"https://api.github.com/users/hornbeck/followers","following_url":"https://api.github.com/users/hornbeck/following{/other_user}","gists_url":"https://api.github.com/users/hornbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/hornbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hornbeck/subscriptions","organizations_url":"https://api.github.com/users/hornbeck/orgs","repos_url":"https://api.github.com/users/hornbeck/repos","events_url":"https://api.github.com/users/hornbeck/events{/privacy}","received_events_url":"https://api.github.com/users/hornbeck/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/hornbeck/blerb-core","description":"blerb running on merb-core","fork":false,"url":"https://api.github.com/repos/hornbeck/blerb-core","forks_url":"https://api.github.com/repos/hornbeck/blerb-core/forks","keys_url":"https://api.github.com/repos/hornbeck/blerb-core/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hornbeck/blerb-core/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hornbeck/blerb-core/teams","hooks_url":"https://api.github.com/repos/hornbeck/blerb-core/hooks","issue_events_url":"https://api.github.com/repos/hornbeck/blerb-core/issues/events{/number}","events_url":"https://api.github.com/repos/hornbeck/blerb-core/events","assignees_url":"https://api.github.com/repos/hornbeck/blerb-core/assignees{/user}","branches_url":"https://api.github.com/repos/hornbeck/blerb-core/branches{/branch}","tags_url":"https://api.github.com/repos/hornbeck/blerb-core/tags","blobs_url":"https://api.github.com/repos/hornbeck/blerb-core/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hornbeck/blerb-core/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hornbeck/blerb-core/git/refs{/sha}","trees_url":"https://api.github.com/repos/hornbeck/blerb-core/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hornbeck/blerb-core/statuses/{sha}","languages_url":"https://api.github.com/repos/hornbeck/blerb-core/languages","stargazers_url":"https://api.github.com/repos/hornbeck/blerb-core/stargazers","contributors_url":"https://api.github.com/repos/hornbeck/blerb-core/contributors","subscribers_url":"https://api.github.com/repos/hornbeck/blerb-core/subscribers","subscription_url":"https://api.github.com/repos/hornbeck/blerb-core/subscription","commits_url":"https://api.github.com/repos/hornbeck/blerb-core/commits{/sha}","git_commits_url":"https://api.github.com/repos/hornbeck/blerb-core/git/commits{/sha}","comments_url":"https://api.github.com/repos/hornbeck/blerb-core/comments{/number}","issue_comment_url":"https://api.github.com/repos/hornbeck/blerb-core/issues/comments{/number}","contents_url":"https://api.github.com/repos/hornbeck/blerb-core/contents/{+path}","compare_url":"https://api.github.com/repos/hornbeck/blerb-core/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hornbeck/blerb-core/merges","archive_url":"https://api.github.com/repos/hornbeck/blerb-core/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hornbeck/blerb-core/downloads","issues_url":"https://api.github.com/repos/hornbeck/blerb-core/issues{/number}","pulls_url":"https://api.github.com/repos/hornbeck/blerb-core/pulls{/number}","milestones_url":"https://api.github.com/repos/hornbeck/blerb-core/milestones{/number}","notifications_url":"https://api.github.com/repos/hornbeck/blerb-core/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hornbeck/blerb-core/labels{/name}","releases_url":"https://api.github.com/repos/hornbeck/blerb-core/releases{/id}","deployments_url":"https://api.github.com/repos/hornbeck/blerb-core/deployments"},{"id":312,"name":"django-mptt","full_name":"brosner/django-mptt","owner":{"login":"brosner","id":124,"avatar_url":"https://avatars3.githubusercontent.com/u/124?v=4","gravatar_id":"","url":"https://api.github.com/users/brosner","html_url":"https://github.com/brosner","followers_url":"https://api.github.com/users/brosner/followers","following_url":"https://api.github.com/users/brosner/following{/other_user}","gists_url":"https://api.github.com/users/brosner/gists{/gist_id}","starred_url":"https://api.github.com/users/brosner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/brosner/subscriptions","organizations_url":"https://api.github.com/users/brosner/orgs","repos_url":"https://api.github.com/users/brosner/repos","events_url":"https://api.github.com/users/brosner/events{/privacy}","received_events_url":"https://api.github.com/users/brosner/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/brosner/django-mptt","description":"utilities for implementing a modified pre-order traversal tree in django","fork":true,"url":"https://api.github.com/repos/brosner/django-mptt","forks_url":"https://api.github.com/repos/brosner/django-mptt/forks","keys_url":"https://api.github.com/repos/brosner/django-mptt/keys{/key_id}","collaborators_url":"https://api.github.com/repos/brosner/django-mptt/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/brosner/django-mptt/teams","hooks_url":"https://api.github.com/repos/brosner/django-mptt/hooks","issue_events_url":"https://api.github.com/repos/brosner/django-mptt/issues/events{/number}","events_url":"https://api.github.com/repos/brosner/django-mptt/events","assignees_url":"https://api.github.com/repos/brosner/django-mptt/assignees{/user}","branches_url":"https://api.github.com/repos/brosner/django-mptt/branches{/branch}","tags_url":"https://api.github.com/repos/brosner/django-mptt/tags","blobs_url":"https://api.github.com/repos/brosner/django-mptt/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/brosner/django-mptt/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/brosner/django-mptt/git/refs{/sha}","trees_url":"https://api.github.com/repos/brosner/django-mptt/git/trees{/sha}","statuses_url":"https://api.github.com/repos/brosner/django-mptt/statuses/{sha}","languages_url":"https://api.github.com/repos/brosner/django-mptt/languages","stargazers_url":"https://api.github.com/repos/brosner/django-mptt/stargazers","contributors_url":"https://api.github.com/repos/brosner/django-mptt/contributors","subscribers_url":"https://api.github.com/repos/brosner/django-mptt/subscribers","subscription_url":"https://api.github.com/repos/brosner/django-mptt/subscription","commits_url":"https://api.github.com/repos/brosner/django-mptt/commits{/sha}","git_commits_url":"https://api.github.com/repos/brosner/django-mptt/git/commits{/sha}","comments_url":"https://api.github.com/repos/brosner/django-mptt/comments{/number}","issue_comment_url":"https://api.github.com/repos/brosner/django-mptt/issues/comments{/number}","contents_url":"https://api.github.com/repos/brosner/django-mptt/contents/{+path}","compare_url":"https://api.github.com/repos/brosner/django-mptt/compare/{base}...{head}","merges_url":"https://api.github.com/repos/brosner/django-mptt/merges","archive_url":"https://api.github.com/repos/brosner/django-mptt/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/brosner/django-mptt/downloads","issues_url":"https://api.github.com/repos/brosner/django-mptt/issues{/number}","pulls_url":"https://api.github.com/repos/brosner/django-mptt/pulls{/number}","milestones_url":"https://api.github.com/repos/brosner/django-mptt/milestones{/number}","notifications_url":"https://api.github.com/repos/brosner/django-mptt/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/brosner/django-mptt/labels{/name}","releases_url":"https://api.github.com/repos/brosner/django-mptt/releases{/id}","deployments_url":"https://api.github.com/repos/brosner/django-mptt/deployments"},{"id":314,"name":"bus-scheme","full_name":"technomancy/bus-scheme","owner":{"login":"technomancy","id":141,"avatar_url":"https://avatars2.githubusercontent.com/u/141?v=4","gravatar_id":"","url":"https://api.github.com/users/technomancy","html_url":"https://github.com/technomancy","followers_url":"https://api.github.com/users/technomancy/followers","following_url":"https://api.github.com/users/technomancy/following{/other_user}","gists_url":"https://api.github.com/users/technomancy/gists{/gist_id}","starred_url":"https://api.github.com/users/technomancy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/technomancy/subscriptions","organizations_url":"https://api.github.com/users/technomancy/orgs","repos_url":"https://api.github.com/users/technomancy/repos","events_url":"https://api.github.com/users/technomancy/events{/privacy}","received_events_url":"https://api.github.com/users/technomancy/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/technomancy/bus-scheme","description":"a Scheme written in Ruby, but implemented on the bus!","fork":false,"url":"https://api.github.com/repos/technomancy/bus-scheme","forks_url":"https://api.github.com/repos/technomancy/bus-scheme/forks","keys_url":"https://api.github.com/repos/technomancy/bus-scheme/keys{/key_id}","collaborators_url":"https://api.github.com/repos/technomancy/bus-scheme/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/technomancy/bus-scheme/teams","hooks_url":"https://api.github.com/repos/technomancy/bus-scheme/hooks","issue_events_url":"https://api.github.com/repos/technomancy/bus-scheme/issues/events{/number}","events_url":"https://api.github.com/repos/technomancy/bus-scheme/events","assignees_url":"https://api.github.com/repos/technomancy/bus-scheme/assignees{/user}","branches_url":"https://api.github.com/repos/technomancy/bus-scheme/branches{/branch}","tags_url":"https://api.github.com/repos/technomancy/bus-scheme/tags","blobs_url":"https://api.github.com/repos/technomancy/bus-scheme/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/technomancy/bus-scheme/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/technomancy/bus-scheme/git/refs{/sha}","trees_url":"https://api.github.com/repos/technomancy/bus-scheme/git/trees{/sha}","statuses_url":"https://api.github.com/repos/technomancy/bus-scheme/statuses/{sha}","languages_url":"https://api.github.com/repos/technomancy/bus-scheme/languages","stargazers_url":"https://api.github.com/repos/technomancy/bus-scheme/stargazers","contributors_url":"https://api.github.com/repos/technomancy/bus-scheme/contributors","subscribers_url":"https://api.github.com/repos/technomancy/bus-scheme/subscribers","subscription_url":"https://api.github.com/repos/technomancy/bus-scheme/subscription","commits_url":"https://api.github.com/repos/technomancy/bus-scheme/commits{/sha}","git_commits_url":"https://api.github.com/repos/technomancy/bus-scheme/git/commits{/sha}","comments_url":"https://api.github.com/repos/technomancy/bus-scheme/comments{/number}","issue_comment_url":"https://api.github.com/repos/technomancy/bus-scheme/issues/comments{/number}","contents_url":"https://api.github.com/repos/technomancy/bus-scheme/contents/{+path}","compare_url":"https://api.github.com/repos/technomancy/bus-scheme/compare/{base}...{head}","merges_url":"https://api.github.com/repos/technomancy/bus-scheme/merges","archive_url":"https://api.github.com/repos/technomancy/bus-scheme/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/technomancy/bus-scheme/downloads","issues_url":"https://api.github.com/repos/technomancy/bus-scheme/issues{/number}","pulls_url":"https://api.github.com/repos/technomancy/bus-scheme/pulls{/number}","milestones_url":"https://api.github.com/repos/technomancy/bus-scheme/milestones{/number}","notifications_url":"https://api.github.com/repos/technomancy/bus-scheme/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/technomancy/bus-scheme/labels{/name}","releases_url":"https://api.github.com/repos/technomancy/bus-scheme/releases{/id}","deployments_url":"https://api.github.com/repos/technomancy/bus-scheme/deployments"},{"id":319,"name":"javascript-bits","full_name":"Caged/javascript-bits","owner":{"login":"Caged","id":25,"avatar_url":"https://avatars3.githubusercontent.com/u/25?v=4","gravatar_id":"","url":"https://api.github.com/users/Caged","html_url":"https://github.com/Caged","followers_url":"https://api.github.com/users/Caged/followers","following_url":"https://api.github.com/users/Caged/following{/other_user}","gists_url":"https://api.github.com/users/Caged/gists{/gist_id}","starred_url":"https://api.github.com/users/Caged/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Caged/subscriptions","organizations_url":"https://api.github.com/users/Caged/orgs","repos_url":"https://api.github.com/users/Caged/repos","events_url":"https://api.github.com/users/Caged/events{/privacy}","received_events_url":"https://api.github.com/users/Caged/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/Caged/javascript-bits","description":"Useful pieces of JavaScript.  Some old, some new.","fork":false,"url":"https://api.github.com/repos/Caged/javascript-bits","forks_url":"https://api.github.com/repos/Caged/javascript-bits/forks","keys_url":"https://api.github.com/repos/Caged/javascript-bits/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Caged/javascript-bits/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Caged/javascript-bits/teams","hooks_url":"https://api.github.com/repos/Caged/javascript-bits/hooks","issue_events_url":"https://api.github.com/repos/Caged/javascript-bits/issues/events{/number}","events_url":"https://api.github.com/repos/Caged/javascript-bits/events","assignees_url":"https://api.github.com/repos/Caged/javascript-bits/assignees{/user}","branches_url":"https://api.github.com/repos/Caged/javascript-bits/branches{/branch}","tags_url":"https://api.github.com/repos/Caged/javascript-bits/tags","blobs_url":"https://api.github.com/repos/Caged/javascript-bits/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Caged/javascript-bits/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Caged/javascript-bits/git/refs{/sha}","trees_url":"https://api.github.com/repos/Caged/javascript-bits/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Caged/javascript-bits/statuses/{sha}","languages_url":"https://api.github.com/repos/Caged/javascript-bits/languages","stargazers_url":"https://api.github.com/repos/Caged/javascript-bits/stargazers","contributors_url":"https://api.github.com/repos/Caged/javascript-bits/contributors","subscribers_url":"https://api.github.com/repos/Caged/javascript-bits/subscribers","subscription_url":"https://api.github.com/repos/Caged/javascript-bits/subscription","commits_url":"https://api.github.com/repos/Caged/javascript-bits/commits{/sha}","git_commits_url":"https://api.github.com/repos/Caged/javascript-bits/git/commits{/sha}","comments_url":"https://api.github.com/repos/Caged/javascript-bits/comments{/number}","issue_comment_url":"https://api.github.com/repos/Caged/javascript-bits/issues/comments{/number}","contents_url":"https://api.github.com/repos/Caged/javascript-bits/contents/{+path}","compare_url":"https://api.github.com/repos/Caged/javascript-bits/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Caged/javascript-bits/merges","archive_url":"https://api.github.com/repos/Caged/javascript-bits/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Caged/javascript-bits/downloads","issues_url":"https://api.github.com/repos/Caged/javascript-bits/issues{/number}","pulls_url":"https://api.github.com/repos/Caged/javascript-bits/pulls{/number}","milestones_url":"https://api.github.com/repos/Caged/javascript-bits/milestones{/number}","notifications_url":"https://api.github.com/repos/Caged/javascript-bits/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Caged/javascript-bits/labels{/name}","releases_url":"https://api.github.com/repos/Caged/javascript-bits/releases{/id}","deployments_url":"https://api.github.com/repos/Caged/javascript-bits/deployments"},{"id":320,"name":"groomlake","full_name":"Caged/groomlake","owner":{"login":"Caged","id":25,"avatar_url":"https://avatars3.githubusercontent.com/u/25?v=4","gravatar_id":"","url":"https://api.github.com/users/Caged","html_url":"https://github.com/Caged","followers_url":"https://api.github.com/users/Caged/followers","following_url":"https://api.github.com/users/Caged/following{/other_user}","gists_url":"https://api.github.com/users/Caged/gists{/gist_id}","starred_url":"https://api.github.com/users/Caged/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Caged/subscriptions","organizations_url":"https://api.github.com/users/Caged/orgs","repos_url":"https://api.github.com/users/Caged/repos","events_url":"https://api.github.com/users/Caged/events{/privacy}","received_events_url":"https://api.github.com/users/Caged/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/Caged/groomlake","description":"Ruby parsers for some Adobe file formats.","fork":false,"url":"https://api.github.com/repos/Caged/groomlake","forks_url":"https://api.github.com/repos/Caged/groomlake/forks","keys_url":"https://api.github.com/repos/Caged/groomlake/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Caged/groomlake/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Caged/groomlake/teams","hooks_url":"https://api.github.com/repos/Caged/groomlake/hooks","issue_events_url":"https://api.github.com/repos/Caged/groomlake/issues/events{/number}","events_url":"https://api.github.com/repos/Caged/groomlake/events","assignees_url":"https://api.github.com/repos/Caged/groomlake/assignees{/user}","branches_url":"https://api.github.com/repos/Caged/groomlake/branches{/branch}","tags_url":"https://api.github.com/repos/Caged/groomlake/tags","blobs_url":"https://api.github.com/repos/Caged/groomlake/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Caged/groomlake/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Caged/groomlake/git/refs{/sha}","trees_url":"https://api.github.com/repos/Caged/groomlake/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Caged/groomlake/statuses/{sha}","languages_url":"https://api.github.com/repos/Caged/groomlake/languages","stargazers_url":"https://api.github.com/repos/Caged/groomlake/stargazers","contributors_url":"https://api.github.com/repos/Caged/groomlake/contributors","subscribers_url":"https://api.github.com/repos/Caged/groomlake/subscribers","subscription_url":"https://api.github.com/repos/Caged/groomlake/subscription","commits_url":"https://api.github.com/repos/Caged/groomlake/commits{/sha}","git_commits_url":"https://api.github.com/repos/Caged/groomlake/git/commits{/sha}","comments_url":"https://api.github.com/repos/Caged/groomlake/comments{/number}","issue_comment_url":"https://api.github.com/repos/Caged/groomlake/issues/comments{/number}","contents_url":"https://api.github.com/repos/Caged/groomlake/contents/{+path}","compare_url":"https://api.github.com/repos/Caged/groomlake/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Caged/groomlake/merges","archive_url":"https://api.github.com/repos/Caged/groomlake/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Caged/groomlake/downloads","issues_url":"https://api.github.com/repos/Caged/groomlake/issues{/number}","pulls_url":"https://api.github.com/repos/Caged/groomlake/pulls{/number}","milestones_url":"https://api.github.com/repos/Caged/groomlake/milestones{/number}","notifications_url":"https://api.github.com/repos/Caged/groomlake/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Caged/groomlake/labels{/name}","releases_url":"https://api.github.com/repos/Caged/groomlake/releases{/id}","deployments_url":"https://api.github.com/repos/Caged/groomlake/deployments"},{"id":322,"name":"forgery","full_name":"sevenwire/forgery","owner":{"login":"sevenwire","id":150,"avatar_url":"https://avatars3.githubusercontent.com/u/150?v=4","gravatar_id":"","url":"https://api.github.com/users/sevenwire","html_url":"https://github.com/sevenwire","followers_url":"https://api.github.com/users/sevenwire/followers","following_url":"https://api.github.com/users/sevenwire/following{/other_user}","gists_url":"https://api.github.com/users/sevenwire/gists{/gist_id}","starred_url":"https://api.github.com/users/sevenwire/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sevenwire/subscriptions","organizations_url":"https://api.github.com/users/sevenwire/orgs","repos_url":"https://api.github.com/users/sevenwire/repos","events_url":"https://api.github.com/users/sevenwire/events{/privacy}","received_events_url":"https://api.github.com/users/sevenwire/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/sevenwire/forgery","description":"Easy and customizable generation of forged data.","fork":false,"url":"https://api.github.com/repos/sevenwire/forgery","forks_url":"https://api.github.com/repos/sevenwire/forgery/forks","keys_url":"https://api.github.com/repos/sevenwire/forgery/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sevenwire/forgery/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sevenwire/forgery/teams","hooks_url":"https://api.github.com/repos/sevenwire/forgery/hooks","issue_events_url":"https://api.github.com/repos/sevenwire/forgery/issues/events{/number}","events_url":"https://api.github.com/repos/sevenwire/forgery/events","assignees_url":"https://api.github.com/repos/sevenwire/forgery/assignees{/user}","branches_url":"https://api.github.com/repos/sevenwire/forgery/branches{/branch}","tags_url":"https://api.github.com/repos/sevenwire/forgery/tags","blobs_url":"https://api.github.com/repos/sevenwire/forgery/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sevenwire/forgery/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sevenwire/forgery/git/refs{/sha}","trees_url":"https://api.github.com/repos/sevenwire/forgery/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sevenwire/forgery/statuses/{sha}","languages_url":"https://api.github.com/repos/sevenwire/forgery/languages","stargazers_url":"https://api.github.com/repos/sevenwire/forgery/stargazers","contributors_url":"https://api.github.com/repos/sevenwire/forgery/contributors","subscribers_url":"https://api.github.com/repos/sevenwire/forgery/subscribers","subscription_url":"https://api.github.com/repos/sevenwire/forgery/subscription","commits_url":"https://api.github.com/repos/sevenwire/forgery/commits{/sha}","git_commits_url":"https://api.github.com/repos/sevenwire/forgery/git/commits{/sha}","comments_url":"https://api.github.com/repos/sevenwire/forgery/comments{/number}","issue_comment_url":"https://api.github.com/repos/sevenwire/forgery/issues/comments{/number}","contents_url":"https://api.github.com/repos/sevenwire/forgery/contents/{+path}","compare_url":"https://api.github.com/repos/sevenwire/forgery/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sevenwire/forgery/merges","archive_url":"https://api.github.com/repos/sevenwire/forgery/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sevenwire/forgery/downloads","issues_url":"https://api.github.com/repos/sevenwire/forgery/issues{/number}","pulls_url":"https://api.github.com/repos/sevenwire/forgery/pulls{/number}","milestones_url":"https://api.github.com/repos/sevenwire/forgery/milestones{/number}","notifications_url":"https://api.github.com/repos/sevenwire/forgery/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sevenwire/forgery/labels{/name}","releases_url":"https://api.github.com/repos/sevenwire/forgery/releases{/id}","deployments_url":"https://api.github.com/repos/sevenwire/forgery/deployments"},{"id":324,"name":"ambitious-sphinx","full_name":"technicalpickles/ambitious-sphinx","owner":{"login":"technicalpickles","id":159,"avatar_url":"https://avatars2.githubusercontent.com/u/159?v=4","gravatar_id":"","url":"https://api.github.com/users/technicalpickles","html_url":"https://github.com/technicalpickles","followers_url":"https://api.github.com/users/technicalpickles/followers","following_url":"https://api.github.com/users/technicalpickles/following{/other_user}","gists_url":"https://api.github.com/users/technicalpickles/gists{/gist_id}","starred_url":"https://api.github.com/users/technicalpickles/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/technicalpickles/subscriptions","organizations_url":"https://api.github.com/users/technicalpickles/orgs","repos_url":"https://api.github.com/users/technicalpickles/repos","events_url":"https://api.github.com/users/technicalpickles/events{/privacy}","received_events_url":"https://api.github.com/users/technicalpickles/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/technicalpickles/ambitious-sphinx","description":"Ambition adapter for Sphinx","fork":false,"url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx","forks_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/forks","keys_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/keys{/key_id}","collaborators_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/teams","hooks_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/hooks","issue_events_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/events{/number}","events_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/events","assignees_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/assignees{/user}","branches_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/branches{/branch}","tags_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/tags","blobs_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/refs{/sha}","trees_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/trees{/sha}","statuses_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/statuses/{sha}","languages_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/languages","stargazers_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/stargazers","contributors_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/contributors","subscribers_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscribers","subscription_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscription","commits_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/commits{/sha}","git_commits_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/commits{/sha}","comments_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/comments{/number}","issue_comment_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/comments{/number}","contents_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/contents/{+path}","compare_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/compare/{base}...{head}","merges_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/merges","archive_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/downloads","issues_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues{/number}","pulls_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/pulls{/number}","milestones_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/milestones{/number}","notifications_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/labels{/name}","releases_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/releases{/id}","deployments_url":"https://api.github.com/repos/technicalpickles/ambitious-sphinx/deployments"},{"id":329,"name":"soup","full_name":"lazyatom/soup","owner":{"login":"lazyatom","id":145,"avatar_url":"https://avatars2.githubusercontent.com/u/145?v=4","gravatar_id":"","url":"https://api.github.com/users/lazyatom","html_url":"https://github.com/lazyatom","followers_url":"https://api.github.com/users/lazyatom/followers","following_url":"https://api.github.com/users/lazyatom/following{/other_user}","gists_url":"https://api.github.com/users/lazyatom/gists{/gist_id}","starred_url":"https://api.github.com/users/lazyatom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lazyatom/subscriptions","organizations_url":"https://api.github.com/users/lazyatom/orgs","repos_url":"https://api.github.com/users/lazyatom/repos","events_url":"https://api.github.com/users/lazyatom/events{/privacy}","received_events_url":"https://api.github.com/users/lazyatom/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lazyatom/soup","description":"I suppose it\'s a document database. Or a tuple store. But really, it\'s just data sloshing around, waiting to be used.","fork":false,"url":"https://api.github.com/repos/lazyatom/soup","forks_url":"https://api.github.com/repos/lazyatom/soup/forks","keys_url":"https://api.github.com/repos/lazyatom/soup/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lazyatom/soup/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lazyatom/soup/teams","hooks_url":"https://api.github.com/repos/lazyatom/soup/hooks","issue_events_url":"https://api.github.com/repos/lazyatom/soup/issues/events{/number}","events_url":"https://api.github.com/repos/lazyatom/soup/events","assignees_url":"https://api.github.com/repos/lazyatom/soup/assignees{/user}","branches_url":"https://api.github.com/repos/lazyatom/soup/branches{/branch}","tags_url":"https://api.github.com/repos/lazyatom/soup/tags","blobs_url":"https://api.github.com/repos/lazyatom/soup/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lazyatom/soup/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lazyatom/soup/git/refs{/sha}","trees_url":"https://api.github.com/repos/lazyatom/soup/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lazyatom/soup/statuses/{sha}","languages_url":"https://api.github.com/repos/lazyatom/soup/languages","stargazers_url":"https://api.github.com/repos/lazyatom/soup/stargazers","contributors_url":"https://api.github.com/repos/lazyatom/soup/contributors","subscribers_url":"https://api.github.com/repos/lazyatom/soup/subscribers","subscription_url":"https://api.github.com/repos/lazyatom/soup/subscription","commits_url":"https://api.github.com/repos/lazyatom/soup/commits{/sha}","git_commits_url":"https://api.github.com/repos/lazyatom/soup/git/commits{/sha}","comments_url":"https://api.github.com/repos/lazyatom/soup/comments{/number}","issue_comment_url":"https://api.github.com/repos/lazyatom/soup/issues/comments{/number}","contents_url":"https://api.github.com/repos/lazyatom/soup/contents/{+path}","compare_url":"https://api.github.com/repos/lazyatom/soup/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lazyatom/soup/merges","archive_url":"https://api.github.com/repos/lazyatom/soup/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lazyatom/soup/downloads","issues_url":"https://api.github.com/repos/lazyatom/soup/issues{/number}","pulls_url":"https://api.github.com/repos/lazyatom/soup/pulls{/number}","milestones_url":"https://api.github.com/repos/lazyatom/soup/milestones{/number}","notifications_url":"https://api.github.com/repos/lazyatom/soup/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lazyatom/soup/labels{/name}","releases_url":"https://api.github.com/repos/lazyatom/soup/releases{/id}","deployments_url":"https://api.github.com/repos/lazyatom/soup/deployments"},{"id":332,"name":"rails","full_name":"josh/rails","owner":{"login":"josh","id":137,"avatar_url":"https://avatars2.githubusercontent.com/u/137?v=4","gravatar_id":"","url":"https://api.github.com/users/josh","html_url":"https://github.com/josh","followers_url":"https://api.github.com/users/josh/followers","following_url":"https://api.github.com/users/josh/following{/other_user}","gists_url":"https://api.github.com/users/josh/gists{/gist_id}","starred_url":"https://api.github.com/users/josh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/josh/subscriptions","organizations_url":"https://api.github.com/users/josh/orgs","repos_url":"https://api.github.com/users/josh/repos","events_url":"https://api.github.com/users/josh/events{/privacy}","received_events_url":"https://api.github.com/users/josh/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/josh/rails","description":"Ruby on Rails","fork":true,"url":"https://api.github.com/repos/josh/rails","forks_url":"https://api.github.com/repos/josh/rails/forks","keys_url":"https://api.github.com/repos/josh/rails/keys{/key_id}","collaborators_url":"https://api.github.com/repos/josh/rails/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/josh/rails/teams","hooks_url":"https://api.github.com/repos/josh/rails/hooks","issue_events_url":"https://api.github.com/repos/josh/rails/issues/events{/number}","events_url":"https://api.github.com/repos/josh/rails/events","assignees_url":"https://api.github.com/repos/josh/rails/assignees{/user}","branches_url":"https://api.github.com/repos/josh/rails/branches{/branch}","tags_url":"https://api.github.com/repos/josh/rails/tags","blobs_url":"https://api.github.com/repos/josh/rails/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/josh/rails/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/josh/rails/git/refs{/sha}","trees_url":"https://api.github.com/repos/josh/rails/git/trees{/sha}","statuses_url":"https://api.github.com/repos/josh/rails/statuses/{sha}","languages_url":"https://api.github.com/repos/josh/rails/languages","stargazers_url":"https://api.github.com/repos/josh/rails/stargazers","contributors_url":"https://api.github.com/repos/josh/rails/contributors","subscribers_url":"https://api.github.com/repos/josh/rails/subscribers","subscription_url":"https://api.github.com/repos/josh/rails/subscription","commits_url":"https://api.github.com/repos/josh/rails/commits{/sha}","git_commits_url":"https://api.github.com/repos/josh/rails/git/commits{/sha}","comments_url":"https://api.github.com/repos/josh/rails/comments{/number}","issue_comment_url":"https://api.github.com/repos/josh/rails/issues/comments{/number}","contents_url":"https://api.github.com/repos/josh/rails/contents/{+path}","compare_url":"https://api.github.com/repos/josh/rails/compare/{base}...{head}","merges_url":"https://api.github.com/repos/josh/rails/merges","archive_url":"https://api.github.com/repos/josh/rails/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/josh/rails/downloads","issues_url":"https://api.github.com/repos/josh/rails/issues{/number}","pulls_url":"https://api.github.com/repos/josh/rails/pulls{/number}","milestones_url":"https://api.github.com/repos/josh/rails/milestones{/number}","notifications_url":"https://api.github.com/repos/josh/rails/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/josh/rails/labels{/name}","releases_url":"https://api.github.com/repos/josh/rails/releases{/id}","deployments_url":"https://api.github.com/repos/josh/rails/deployments"},{"id":334,"name":"backpacking","full_name":"cdcarter/backpacking","owner":{"login":"cdcarter","id":164,"avatar_url":"https://avatars1.githubusercontent.com/u/164?v=4","gravatar_id":"","url":"https://api.github.com/users/cdcarter","html_url":"https://github.com/cdcarter","followers_url":"https://api.github.com/users/cdcarter/followers","following_url":"https://api.github.com/users/cdcarter/following{/other_user}","gists_url":"https://api.github.com/users/cdcarter/gists{/gist_id}","starred_url":"https://api.github.com/users/cdcarter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cdcarter/subscriptions","organizations_url":"https://api.github.com/users/cdcarter/orgs","repos_url":"https://api.github.com/users/cdcarter/repos","events_url":"https://api.github.com/users/cdcarter/events{/privacy}","received_events_url":"https://api.github.com/users/cdcarter/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/cdcarter/backpacking","description":"An Io web framework of sorts","fork":false,"url":"https://api.github.com/repos/cdcarter/backpacking","forks_url":"https://api.github.com/repos/cdcarter/backpacking/forks","keys_url":"https://api.github.com/repos/cdcarter/backpacking/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cdcarter/backpacking/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cdcarter/backpacking/teams","hooks_url":"https://api.github.com/repos/cdcarter/backpacking/hooks","issue_events_url":"https://api.github.com/repos/cdcarter/backpacking/issues/events{/number}","events_url":"https://api.github.com/repos/cdcarter/backpacking/events","assignees_url":"https://api.github.com/repos/cdcarter/backpacking/assignees{/user}","branches_url":"https://api.github.com/repos/cdcarter/backpacking/branches{/branch}","tags_url":"https://api.github.com/repos/cdcarter/backpacking/tags","blobs_url":"https://api.github.com/repos/cdcarter/backpacking/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cdcarter/backpacking/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cdcarter/backpacking/git/refs{/sha}","trees_url":"https://api.github.com/repos/cdcarter/backpacking/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cdcarter/backpacking/statuses/{sha}","languages_url":"https://api.github.com/repos/cdcarter/backpacking/languages","stargazers_url":"https://api.github.com/repos/cdcarter/backpacking/stargazers","contributors_url":"https://api.github.com/repos/cdcarter/backpacking/contributors","subscribers_url":"https://api.github.com/repos/cdcarter/backpacking/subscribers","subscription_url":"https://api.github.com/repos/cdcarter/backpacking/subscription","commits_url":"https://api.github.com/repos/cdcarter/backpacking/commits{/sha}","git_commits_url":"https://api.github.com/repos/cdcarter/backpacking/git/commits{/sha}","comments_url":"https://api.github.com/repos/cdcarter/backpacking/comments{/number}","issue_comment_url":"https://api.github.com/repos/cdcarter/backpacking/issues/comments{/number}","contents_url":"https://api.github.com/repos/cdcarter/backpacking/contents/{+path}","compare_url":"https://api.github.com/repos/cdcarter/backpacking/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cdcarter/backpacking/merges","archive_url":"https://api.github.com/repos/cdcarter/backpacking/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cdcarter/backpacking/downloads","issues_url":"https://api.github.com/repos/cdcarter/backpacking/issues{/number}","pulls_url":"https://api.github.com/repos/cdcarter/backpacking/pulls{/number}","milestones_url":"https://api.github.com/repos/cdcarter/backpacking/milestones{/number}","notifications_url":"https://api.github.com/repos/cdcarter/backpacking/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cdcarter/backpacking/labels{/name}","releases_url":"https://api.github.com/repos/cdcarter/backpacking/releases{/id}","deployments_url":"https://api.github.com/repos/cdcarter/backpacking/deployments"},{"id":339,"name":"capsize","full_name":"jnewland/capsize","owner":{"login":"jnewland","id":47,"avatar_url":"https://avatars2.githubusercontent.com/u/47?v=4","gravatar_id":"","url":"https://api.github.com/users/jnewland","html_url":"https://github.com/jnewland","followers_url":"https://api.github.com/users/jnewland/followers","following_url":"https://api.github.com/users/jnewland/following{/other_user}","gists_url":"https://api.github.com/users/jnewland/gists{/gist_id}","starred_url":"https://api.github.com/users/jnewland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnewland/subscriptions","organizations_url":"https://api.github.com/users/jnewland/orgs","repos_url":"https://api.github.com/users/jnewland/repos","events_url":"https://api.github.com/users/jnewland/events{/privacy}","received_events_url":"https://api.github.com/users/jnewland/received_events","type":"User","site_admin":true},"private":false,"html_url":"https://github.com/jnewland/capsize","description":"A Capistrano extension for managing and running your app on Amazon EC2.","fork":false,"url":"https://api.github.com/repos/jnewland/capsize","forks_url":"https://api.github.com/repos/jnewland/capsize/forks","keys_url":"https://api.github.com/repos/jnewland/capsize/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jnewland/capsize/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jnewland/capsize/teams","hooks_url":"https://api.github.com/repos/jnewland/capsize/hooks","issue_events_url":"https://api.github.com/repos/jnewland/capsize/issues/events{/number}","events_url":"https://api.github.com/repos/jnewland/capsize/events","assignees_url":"https://api.github.com/repos/jnewland/capsize/assignees{/user}","branches_url":"https://api.github.com/repos/jnewland/capsize/branches{/branch}","tags_url":"https://api.github.com/repos/jnewland/capsize/tags","blobs_url":"https://api.github.com/repos/jnewland/capsize/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jnewland/capsize/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jnewland/capsize/git/refs{/sha}","trees_url":"https://api.github.com/repos/jnewland/capsize/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jnewland/capsize/statuses/{sha}","languages_url":"https://api.github.com/repos/jnewland/capsize/languages","stargazers_url":"https://api.github.com/repos/jnewland/capsize/stargazers","contributors_url":"https://api.github.com/repos/jnewland/capsize/contributors","subscribers_url":"https://api.github.com/repos/jnewland/capsize/subscribers","subscription_url":"https://api.github.com/repos/jnewland/capsize/subscription","commits_url":"https://api.github.com/repos/jnewland/capsize/commits{/sha}","git_commits_url":"https://api.github.com/repos/jnewland/capsize/git/commits{/sha}","comments_url":"https://api.github.com/repos/jnewland/capsize/comments{/number}","issue_comment_url":"https://api.github.com/repos/jnewland/capsize/issues/comments{/number}","contents_url":"https://api.github.com/repos/jnewland/capsize/contents/{+path}","compare_url":"https://api.github.com/repos/jnewland/capsize/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jnewland/capsize/merges","archive_url":"https://api.github.com/repos/jnewland/capsize/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jnewland/capsize/downloads","issues_url":"https://api.github.com/repos/jnewland/capsize/issues{/number}","pulls_url":"https://api.github.com/repos/jnewland/capsize/pulls{/number}","milestones_url":"https://api.github.com/repos/jnewland/capsize/milestones{/number}","notifications_url":"https://api.github.com/repos/jnewland/capsize/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jnewland/capsize/labels{/name}","releases_url":"https://api.github.com/repos/jnewland/capsize/releases{/id}","deployments_url":"https://api.github.com/repos/jnewland/capsize/deployments"},{"id":351,"name":"starling","full_name":"bs/starling","owner":{"login":"bs","id":68,"avatar_url":"https://avatars0.githubusercontent.com/u/68?v=4","gravatar_id":"","url":"https://api.github.com/users/bs","html_url":"https://github.com/bs","followers_url":"https://api.github.com/users/bs/followers","following_url":"https://api.github.com/users/bs/following{/other_user}","gists_url":"https://api.github.com/users/bs/gists{/gist_id}","starred_url":"https://api.github.com/users/bs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bs/subscriptions","organizations_url":"https://api.github.com/users/bs/orgs","repos_url":"https://api.github.com/users/bs/repos","events_url":"https://api.github.com/users/bs/events{/privacy}","received_events_url":"https://api.github.com/users/bs/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bs/starling","description":"Starling Message Queue","fork":false,"url":"https://api.github.com/repos/bs/starling","forks_url":"https://api.github.com/repos/bs/starling/forks","keys_url":"https://api.github.com/repos/bs/starling/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bs/starling/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bs/starling/teams","hooks_url":"https://api.github.com/repos/bs/starling/hooks","issue_events_url":"https://api.github.com/repos/bs/starling/issues/events{/number}","events_url":"https://api.github.com/repos/bs/starling/events","assignees_url":"https://api.github.com/repos/bs/starling/assignees{/user}","branches_url":"https://api.github.com/repos/bs/starling/branches{/branch}","tags_url":"https://api.github.com/repos/bs/starling/tags","blobs_url":"https://api.github.com/repos/bs/starling/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bs/starling/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bs/starling/git/refs{/sha}","trees_url":"https://api.github.com/repos/bs/starling/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bs/starling/statuses/{sha}","languages_url":"https://api.github.com/repos/bs/starling/languages","stargazers_url":"https://api.github.com/repos/bs/starling/stargazers","contributors_url":"https://api.github.com/repos/bs/starling/contributors","subscribers_url":"https://api.github.com/repos/bs/starling/subscribers","subscription_url":"https://api.github.com/repos/bs/starling/subscription","commits_url":"https://api.github.com/repos/bs/starling/commits{/sha}","git_commits_url":"https://api.github.com/repos/bs/starling/git/commits{/sha}","comments_url":"https://api.github.com/repos/bs/starling/comments{/number}","issue_comment_url":"https://api.github.com/repos/bs/starling/issues/comments{/number}","contents_url":"https://api.github.com/repos/bs/starling/contents/{+path}","compare_url":"https://api.github.com/repos/bs/starling/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bs/starling/merges","archive_url":"https://api.github.com/repos/bs/starling/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bs/starling/downloads","issues_url":"https://api.github.com/repos/bs/starling/issues{/number}","pulls_url":"https://api.github.com/repos/bs/starling/pulls{/number}","milestones_url":"https://api.github.com/repos/bs/starling/milestones{/number}","notifications_url":"https://api.github.com/repos/bs/starling/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bs/starling/labels{/name}","releases_url":"https://api.github.com/repos/bs/starling/releases{/id}","deployments_url":"https://api.github.com/repos/bs/starling/deployments"},{"id":360,"name":"ape","full_name":"sr/ape","owner":{"login":"sr","id":90,"avatar_url":"https://avatars0.githubusercontent.com/u/90?v=4","gravatar_id":"","url":"https://api.github.com/users/sr","html_url":"https://github.com/sr","followers_url":"https://api.github.com/users/sr/followers","following_url":"https://api.github.com/users/sr/following{/other_user}","gists_url":"https://api.github.com/users/sr/gists{/gist_id}","starred_url":"https://api.github.com/users/sr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sr/subscriptions","organizations_url":"https://api.github.com/users/sr/orgs","repos_url":"https://api.github.com/users/sr/repos","events_url":"https://api.github.com/users/sr/events{/privacy}","received_events_url":"https://api.github.com/users/sr/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sr/ape","description":"The Atom Protocol Exerciser","fork":false,"url":"https://api.github.com/repos/sr/ape","forks_url":"https://api.github.com/repos/sr/ape/forks","keys_url":"https://api.github.com/repos/sr/ape/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sr/ape/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sr/ape/teams","hooks_url":"https://api.github.com/repos/sr/ape/hooks","issue_events_url":"https://api.github.com/repos/sr/ape/issues/events{/number}","events_url":"https://api.github.com/repos/sr/ape/events","assignees_url":"https://api.github.com/repos/sr/ape/assignees{/user}","branches_url":"https://api.github.com/repos/sr/ape/branches{/branch}","tags_url":"https://api.github.com/repos/sr/ape/tags","blobs_url":"https://api.github.com/repos/sr/ape/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sr/ape/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sr/ape/git/refs{/sha}","trees_url":"https://api.github.com/repos/sr/ape/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sr/ape/statuses/{sha}","languages_url":"https://api.github.com/repos/sr/ape/languages","stargazers_url":"https://api.github.com/repos/sr/ape/stargazers","contributors_url":"https://api.github.com/repos/sr/ape/contributors","subscribers_url":"https://api.github.com/repos/sr/ape/subscribers","subscription_url":"https://api.github.com/repos/sr/ape/subscription","commits_url":"https://api.github.com/repos/sr/ape/commits{/sha}","git_commits_url":"https://api.github.com/repos/sr/ape/git/commits{/sha}","comments_url":"https://api.github.com/repos/sr/ape/comments{/number}","issue_comment_url":"https://api.github.com/repos/sr/ape/issues/comments{/number}","contents_url":"https://api.github.com/repos/sr/ape/contents/{+path}","compare_url":"https://api.github.com/repos/sr/ape/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sr/ape/merges","archive_url":"https://api.github.com/repos/sr/ape/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sr/ape/downloads","issues_url":"https://api.github.com/repos/sr/ape/issues{/number}","pulls_url":"https://api.github.com/repos/sr/ape/pulls{/number}","milestones_url":"https://api.github.com/repos/sr/ape/milestones{/number}","notifications_url":"https://api.github.com/repos/sr/ape/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sr/ape/labels{/name}","releases_url":"https://api.github.com/repos/sr/ape/releases{/id}","deployments_url":"https://api.github.com/repos/sr/ape/deployments"},{"id":362,"name":"awesomeness","full_name":"collectiveidea/awesomeness","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/awesomeness","description":"Collective Idea\'s Awesomeness.  A collection of useful Rails bits and pieces.","fork":false,"url":"https://api.github.com/repos/collectiveidea/awesomeness","forks_url":"https://api.github.com/repos/collectiveidea/awesomeness/forks","keys_url":"https://api.github.com/repos/collectiveidea/awesomeness/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/awesomeness/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/awesomeness/teams","hooks_url":"https://api.github.com/repos/collectiveidea/awesomeness/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/awesomeness/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/awesomeness/events","assignees_url":"https://api.github.com/repos/collectiveidea/awesomeness/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/awesomeness/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/awesomeness/tags","blobs_url":"https://api.github.com/repos/collectiveidea/awesomeness/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/awesomeness/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/awesomeness/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/awesomeness/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/awesomeness/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/awesomeness/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/awesomeness/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/awesomeness/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/awesomeness/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/awesomeness/subscription","commits_url":"https://api.github.com/repos/collectiveidea/awesomeness/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/awesomeness/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/awesomeness/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/awesomeness/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/awesomeness/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/awesomeness/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/awesomeness/merges","archive_url":"https://api.github.com/repos/collectiveidea/awesomeness/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/awesomeness/downloads","issues_url":"https://api.github.com/repos/collectiveidea/awesomeness/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/awesomeness/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/awesomeness/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/awesomeness/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/awesomeness/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/awesomeness/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/awesomeness/deployments"},{"id":363,"name":"audited","full_name":"collectiveidea/audited","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/audited","description":"Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.","fork":false,"url":"https://api.github.com/repos/collectiveidea/audited","forks_url":"https://api.github.com/repos/collectiveidea/audited/forks","keys_url":"https://api.github.com/repos/collectiveidea/audited/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/audited/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/audited/teams","hooks_url":"https://api.github.com/repos/collectiveidea/audited/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/audited/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/audited/events","assignees_url":"https://api.github.com/repos/collectiveidea/audited/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/audited/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/audited/tags","blobs_url":"https://api.github.com/repos/collectiveidea/audited/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/audited/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/audited/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/audited/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/audited/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/audited/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/audited/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/audited/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/audited/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/audited/subscription","commits_url":"https://api.github.com/repos/collectiveidea/audited/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/audited/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/audited/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/audited/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/audited/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/audited/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/audited/merges","archive_url":"https://api.github.com/repos/collectiveidea/audited/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/audited/downloads","issues_url":"https://api.github.com/repos/collectiveidea/audited/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/audited/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/audited/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/audited/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/audited/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/audited/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/audited/deployments"},{"id":364,"name":"acts_as_geocodable","full_name":"collectiveidea/acts_as_geocodable","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/acts_as_geocodable","description":"Simple geocoding for Active Record models","fork":false,"url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable","forks_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/forks","keys_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/teams","hooks_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/events","assignees_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/tags","blobs_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscription","commits_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/merges","archive_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/downloads","issues_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/acts_as_geocodable/deployments"},{"id":365,"name":"acts_as_money","full_name":"collectiveidea/acts_as_money","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/acts_as_money","description":"an Active Record plugin that makes it easier to work with the money gem","fork":false,"url":"https://api.github.com/repos/collectiveidea/acts_as_money","forks_url":"https://api.github.com/repos/collectiveidea/acts_as_money/forks","keys_url":"https://api.github.com/repos/collectiveidea/acts_as_money/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/acts_as_money/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/acts_as_money/teams","hooks_url":"https://api.github.com/repos/collectiveidea/acts_as_money/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/acts_as_money/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/acts_as_money/events","assignees_url":"https://api.github.com/repos/collectiveidea/acts_as_money/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/acts_as_money/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/acts_as_money/tags","blobs_url":"https://api.github.com/repos/collectiveidea/acts_as_money/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/acts_as_money/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/acts_as_money/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/acts_as_money/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/acts_as_money/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/acts_as_money/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/acts_as_money/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/acts_as_money/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/acts_as_money/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/acts_as_money/subscription","commits_url":"https://api.github.com/repos/collectiveidea/acts_as_money/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/acts_as_money/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/acts_as_money/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/acts_as_money/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/acts_as_money/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/acts_as_money/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/acts_as_money/merges","archive_url":"https://api.github.com/repos/collectiveidea/acts_as_money/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/acts_as_money/downloads","issues_url":"https://api.github.com/repos/collectiveidea/acts_as_money/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/acts_as_money/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/acts_as_money/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/acts_as_money/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/acts_as_money/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/acts_as_money/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/acts_as_money/deployments"},{"id":367,"name":"calendar_builder","full_name":"collectiveidea/calendar_builder","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/calendar_builder","description":null,"fork":false,"url":"https://api.github.com/repos/collectiveidea/calendar_builder","forks_url":"https://api.github.com/repos/collectiveidea/calendar_builder/forks","keys_url":"https://api.github.com/repos/collectiveidea/calendar_builder/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/calendar_builder/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/calendar_builder/teams","hooks_url":"https://api.github.com/repos/collectiveidea/calendar_builder/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/calendar_builder/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/calendar_builder/events","assignees_url":"https://api.github.com/repos/collectiveidea/calendar_builder/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/calendar_builder/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/calendar_builder/tags","blobs_url":"https://api.github.com/repos/collectiveidea/calendar_builder/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/calendar_builder/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/calendar_builder/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/calendar_builder/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/calendar_builder/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/calendar_builder/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/calendar_builder/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/calendar_builder/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/calendar_builder/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/calendar_builder/subscription","commits_url":"https://api.github.com/repos/collectiveidea/calendar_builder/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/calendar_builder/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/calendar_builder/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/calendar_builder/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/calendar_builder/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/calendar_builder/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/calendar_builder/merges","archive_url":"https://api.github.com/repos/collectiveidea/calendar_builder/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/calendar_builder/downloads","issues_url":"https://api.github.com/repos/collectiveidea/calendar_builder/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/calendar_builder/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/calendar_builder/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/calendar_builder/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/calendar_builder/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/calendar_builder/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/calendar_builder/deployments"},{"id":368,"name":"clear_empty_attributes","full_name":"collectiveidea/clear_empty_attributes","owner":{"login":"collectiveidea","id":128,"avatar_url":"https://avatars2.githubusercontent.com/u/128?v=4","gravatar_id":"","url":"https://api.github.com/users/collectiveidea","html_url":"https://github.com/collectiveidea","followers_url":"https://api.github.com/users/collectiveidea/followers","following_url":"https://api.github.com/users/collectiveidea/following{/other_user}","gists_url":"https://api.github.com/users/collectiveidea/gists{/gist_id}","starred_url":"https://api.github.com/users/collectiveidea/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/collectiveidea/subscriptions","organizations_url":"https://api.github.com/users/collectiveidea/orgs","repos_url":"https://api.github.com/users/collectiveidea/repos","events_url":"https://api.github.com/users/collectiveidea/events{/privacy}","received_events_url":"https://api.github.com/users/collectiveidea/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/collectiveidea/clear_empty_attributes","description":"When Active Record objects are saved from a form, empty fields are saved as empty strings instead of nil.  This kills most validations.","fork":false,"url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes","forks_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/forks","keys_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/teams","hooks_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/hooks","issue_events_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/events{/number}","events_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/events","assignees_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/assignees{/user}","branches_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/branches{/branch}","tags_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/tags","blobs_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/refs{/sha}","trees_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/statuses/{sha}","languages_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/languages","stargazers_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/stargazers","contributors_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/contributors","subscribers_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscribers","subscription_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscription","commits_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/commits{/sha}","git_commits_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/commits{/sha}","comments_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/comments{/number}","issue_comment_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/comments{/number}","contents_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/contents/{+path}","compare_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/merges","archive_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/downloads","issues_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues{/number}","pulls_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/pulls{/number}","milestones_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/milestones{/number}","notifications_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/labels{/name}","releases_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/releases{/id}","deployments_url":"https://api.github.com/repos/collectiveidea/clear_empty_attributes/deployments"}]'
In [27]:
# HTTP status code
data.status_code
Out[27]:
200
In [32]:
# This is parsed data
# That is converted into python data structures
d = data.json()

d
Out[32]:
[{'archive_url': 'https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mojombo/grit/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mojombo/grit/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mojombo/grit/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mojombo/grit/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mojombo/grit/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mojombo/grit/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mojombo/grit/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mojombo/grit/contributors',
  'deployments_url': 'https://api.github.com/repos/mojombo/grit/deployments',
  'description': '**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.',
  'downloads_url': 'https://api.github.com/repos/mojombo/grit/downloads',
  'events_url': 'https://api.github.com/repos/mojombo/grit/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mojombo/grit/forks',
  'full_name': 'mojombo/grit',
  'git_commits_url': 'https://api.github.com/repos/mojombo/grit/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mojombo/grit/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mojombo/grit/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mojombo/grit/hooks',
  'html_url': 'https://github.com/mojombo/grit',
  'id': 1,
  'issue_comment_url': 'https://api.github.com/repos/mojombo/grit/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mojombo/grit/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mojombo/grit/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mojombo/grit/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mojombo/grit/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mojombo/grit/languages',
  'merges_url': 'https://api.github.com/repos/mojombo/grit/merges',
  'milestones_url': 'https://api.github.com/repos/mojombo/grit/milestones{/number}',
  'name': 'grit',
  'notifications_url': 'https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
   'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mojombo/followers',
   'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mojombo',
   'id': 1,
   'login': 'mojombo',
   'organizations_url': 'https://api.github.com/users/mojombo/orgs',
   'received_events_url': 'https://api.github.com/users/mojombo/received_events',
   'repos_url': 'https://api.github.com/users/mojombo/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mojombo'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mojombo/grit/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mojombo/grit/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mojombo/grit/stargazers',
  'statuses_url': 'https://api.github.com/repos/mojombo/grit/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mojombo/grit/subscribers',
  'subscription_url': 'https://api.github.com/repos/mojombo/grit/subscription',
  'tags_url': 'https://api.github.com/repos/mojombo/grit/tags',
  'teams_url': 'https://api.github.com/repos/mojombo/grit/teams',
  'trees_url': 'https://api.github.com/repos/mojombo/grit/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mojombo/grit'},
 {'archive_url': 'https://api.github.com/repos/wycats/merb-core/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wycats/merb-core/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wycats/merb-core/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wycats/merb-core/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wycats/merb-core/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wycats/merb-core/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wycats/merb-core/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wycats/merb-core/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wycats/merb-core/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wycats/merb-core/contributors',
  'deployments_url': 'https://api.github.com/repos/wycats/merb-core/deployments',
  'description': "Merb Core: All you need. None you don't.",
  'downloads_url': 'https://api.github.com/repos/wycats/merb-core/downloads',
  'events_url': 'https://api.github.com/repos/wycats/merb-core/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wycats/merb-core/forks',
  'full_name': 'wycats/merb-core',
  'git_commits_url': 'https://api.github.com/repos/wycats/merb-core/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wycats/merb-core/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wycats/merb-core/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wycats/merb-core/hooks',
  'html_url': 'https://github.com/wycats/merb-core',
  'id': 26,
  'issue_comment_url': 'https://api.github.com/repos/wycats/merb-core/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wycats/merb-core/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wycats/merb-core/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wycats/merb-core/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wycats/merb-core/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wycats/merb-core/languages',
  'merges_url': 'https://api.github.com/repos/wycats/merb-core/merges',
  'milestones_url': 'https://api.github.com/repos/wycats/merb-core/milestones{/number}',
  'name': 'merb-core',
  'notifications_url': 'https://api.github.com/repos/wycats/merb-core/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',
   'events_url': 'https://api.github.com/users/wycats/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wycats/followers',
   'following_url': 'https://api.github.com/users/wycats/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wycats',
   'id': 4,
   'login': 'wycats',
   'organizations_url': 'https://api.github.com/users/wycats/orgs',
   'received_events_url': 'https://api.github.com/users/wycats/received_events',
   'repos_url': 'https://api.github.com/users/wycats/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wycats'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wycats/merb-core/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wycats/merb-core/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wycats/merb-core/stargazers',
  'statuses_url': 'https://api.github.com/repos/wycats/merb-core/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wycats/merb-core/subscribers',
  'subscription_url': 'https://api.github.com/repos/wycats/merb-core/subscription',
  'tags_url': 'https://api.github.com/repos/wycats/merb-core/tags',
  'teams_url': 'https://api.github.com/repos/wycats/merb-core/teams',
  'trees_url': 'https://api.github.com/repos/wycats/merb-core/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wycats/merb-core'},
 {'archive_url': 'https://api.github.com/repos/rubinius/rubinius/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/rubinius/rubinius/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/rubinius/rubinius/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/rubinius/rubinius/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/rubinius/rubinius/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/rubinius/rubinius/comments{/number}',
  'commits_url': 'https://api.github.com/repos/rubinius/rubinius/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/rubinius/rubinius/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/rubinius/rubinius/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/rubinius/rubinius/contributors',
  'deployments_url': 'https://api.github.com/repos/rubinius/rubinius/deployments',
  'description': 'The Rubinius Language Platform',
  'downloads_url': 'https://api.github.com/repos/rubinius/rubinius/downloads',
  'events_url': 'https://api.github.com/repos/rubinius/rubinius/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/rubinius/rubinius/forks',
  'full_name': 'rubinius/rubinius',
  'git_commits_url': 'https://api.github.com/repos/rubinius/rubinius/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/rubinius/rubinius/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/rubinius/rubinius/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/rubinius/rubinius/hooks',
  'html_url': 'https://github.com/rubinius/rubinius',
  'id': 27,
  'issue_comment_url': 'https://api.github.com/repos/rubinius/rubinius/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/rubinius/rubinius/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/rubinius/rubinius/issues{/number}',
  'keys_url': 'https://api.github.com/repos/rubinius/rubinius/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/rubinius/rubinius/labels{/name}',
  'languages_url': 'https://api.github.com/repos/rubinius/rubinius/languages',
  'merges_url': 'https://api.github.com/repos/rubinius/rubinius/merges',
  'milestones_url': 'https://api.github.com/repos/rubinius/rubinius/milestones{/number}',
  'name': 'rubinius',
  'notifications_url': 'https://api.github.com/repos/rubinius/rubinius/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/317747?v=4',
   'events_url': 'https://api.github.com/users/rubinius/events{/privacy}',
   'followers_url': 'https://api.github.com/users/rubinius/followers',
   'following_url': 'https://api.github.com/users/rubinius/following{/other_user}',
   'gists_url': 'https://api.github.com/users/rubinius/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/rubinius',
   'id': 317747,
   'login': 'rubinius',
   'organizations_url': 'https://api.github.com/users/rubinius/orgs',
   'received_events_url': 'https://api.github.com/users/rubinius/received_events',
   'repos_url': 'https://api.github.com/users/rubinius/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/rubinius/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/rubinius/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/rubinius'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/rubinius/rubinius/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/rubinius/rubinius/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/rubinius/rubinius/stargazers',
  'statuses_url': 'https://api.github.com/repos/rubinius/rubinius/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/rubinius/rubinius/subscribers',
  'subscription_url': 'https://api.github.com/repos/rubinius/rubinius/subscription',
  'tags_url': 'https://api.github.com/repos/rubinius/rubinius/tags',
  'teams_url': 'https://api.github.com/repos/rubinius/rubinius/teams',
  'trees_url': 'https://api.github.com/repos/rubinius/rubinius/git/trees{/sha}',
  'url': 'https://api.github.com/repos/rubinius/rubinius'},
 {'archive_url': 'https://api.github.com/repos/mojombo/god/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mojombo/god/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mojombo/god/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mojombo/god/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mojombo/god/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mojombo/god/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mojombo/god/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mojombo/god/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mojombo/god/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mojombo/god/contributors',
  'deployments_url': 'https://api.github.com/repos/mojombo/god/deployments',
  'description': 'Ruby process monitor',
  'downloads_url': 'https://api.github.com/repos/mojombo/god/downloads',
  'events_url': 'https://api.github.com/repos/mojombo/god/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mojombo/god/forks',
  'full_name': 'mojombo/god',
  'git_commits_url': 'https://api.github.com/repos/mojombo/god/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mojombo/god/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mojombo/god/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mojombo/god/hooks',
  'html_url': 'https://github.com/mojombo/god',
  'id': 28,
  'issue_comment_url': 'https://api.github.com/repos/mojombo/god/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mojombo/god/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mojombo/god/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mojombo/god/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mojombo/god/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mojombo/god/languages',
  'merges_url': 'https://api.github.com/repos/mojombo/god/merges',
  'milestones_url': 'https://api.github.com/repos/mojombo/god/milestones{/number}',
  'name': 'god',
  'notifications_url': 'https://api.github.com/repos/mojombo/god/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
   'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mojombo/followers',
   'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mojombo',
   'id': 1,
   'login': 'mojombo',
   'organizations_url': 'https://api.github.com/users/mojombo/orgs',
   'received_events_url': 'https://api.github.com/users/mojombo/received_events',
   'repos_url': 'https://api.github.com/users/mojombo/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mojombo'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mojombo/god/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mojombo/god/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mojombo/god/stargazers',
  'statuses_url': 'https://api.github.com/repos/mojombo/god/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mojombo/god/subscribers',
  'subscription_url': 'https://api.github.com/repos/mojombo/god/subscription',
  'tags_url': 'https://api.github.com/repos/mojombo/god/tags',
  'teams_url': 'https://api.github.com/repos/mojombo/god/teams',
  'trees_url': 'https://api.github.com/repos/mojombo/god/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mojombo/god'},
 {'archive_url': 'https://api.github.com/repos/vanpelt/jsawesome/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/vanpelt/jsawesome/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/vanpelt/jsawesome/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/vanpelt/jsawesome/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/vanpelt/jsawesome/comments{/number}',
  'commits_url': 'https://api.github.com/repos/vanpelt/jsawesome/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/vanpelt/jsawesome/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/vanpelt/jsawesome/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/vanpelt/jsawesome/contributors',
  'deployments_url': 'https://api.github.com/repos/vanpelt/jsawesome/deployments',
  'description': 'Awesome JSON',
  'downloads_url': 'https://api.github.com/repos/vanpelt/jsawesome/downloads',
  'events_url': 'https://api.github.com/repos/vanpelt/jsawesome/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/vanpelt/jsawesome/forks',
  'full_name': 'vanpelt/jsawesome',
  'git_commits_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/vanpelt/jsawesome/hooks',
  'html_url': 'https://github.com/vanpelt/jsawesome',
  'id': 29,
  'issue_comment_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues{/number}',
  'keys_url': 'https://api.github.com/repos/vanpelt/jsawesome/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/vanpelt/jsawesome/labels{/name}',
  'languages_url': 'https://api.github.com/repos/vanpelt/jsawesome/languages',
  'merges_url': 'https://api.github.com/repos/vanpelt/jsawesome/merges',
  'milestones_url': 'https://api.github.com/repos/vanpelt/jsawesome/milestones{/number}',
  'name': 'jsawesome',
  'notifications_url': 'https://api.github.com/repos/vanpelt/jsawesome/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/17?v=4',
   'events_url': 'https://api.github.com/users/vanpelt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/vanpelt/followers',
   'following_url': 'https://api.github.com/users/vanpelt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/vanpelt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/vanpelt',
   'id': 17,
   'login': 'vanpelt',
   'organizations_url': 'https://api.github.com/users/vanpelt/orgs',
   'received_events_url': 'https://api.github.com/users/vanpelt/received_events',
   'repos_url': 'https://api.github.com/users/vanpelt/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/vanpelt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/vanpelt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/vanpelt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/vanpelt/jsawesome/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/vanpelt/jsawesome/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/vanpelt/jsawesome/stargazers',
  'statuses_url': 'https://api.github.com/repos/vanpelt/jsawesome/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/vanpelt/jsawesome/subscribers',
  'subscription_url': 'https://api.github.com/repos/vanpelt/jsawesome/subscription',
  'tags_url': 'https://api.github.com/repos/vanpelt/jsawesome/tags',
  'teams_url': 'https://api.github.com/repos/vanpelt/jsawesome/teams',
  'trees_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/trees{/sha}',
  'url': 'https://api.github.com/repos/vanpelt/jsawesome'},
 {'archive_url': 'https://api.github.com/repos/wycats/jspec/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wycats/jspec/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wycats/jspec/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wycats/jspec/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wycats/jspec/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wycats/jspec/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wycats/jspec/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wycats/jspec/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wycats/jspec/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wycats/jspec/contributors',
  'deployments_url': 'https://api.github.com/repos/wycats/jspec/deployments',
  'description': 'A JavaScript BDD Testing Library',
  'downloads_url': 'https://api.github.com/repos/wycats/jspec/downloads',
  'events_url': 'https://api.github.com/repos/wycats/jspec/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wycats/jspec/forks',
  'full_name': 'wycats/jspec',
  'git_commits_url': 'https://api.github.com/repos/wycats/jspec/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wycats/jspec/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wycats/jspec/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wycats/jspec/hooks',
  'html_url': 'https://github.com/wycats/jspec',
  'id': 31,
  'issue_comment_url': 'https://api.github.com/repos/wycats/jspec/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wycats/jspec/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wycats/jspec/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wycats/jspec/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wycats/jspec/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wycats/jspec/languages',
  'merges_url': 'https://api.github.com/repos/wycats/jspec/merges',
  'milestones_url': 'https://api.github.com/repos/wycats/jspec/milestones{/number}',
  'name': 'jspec',
  'notifications_url': 'https://api.github.com/repos/wycats/jspec/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',
   'events_url': 'https://api.github.com/users/wycats/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wycats/followers',
   'following_url': 'https://api.github.com/users/wycats/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wycats',
   'id': 4,
   'login': 'wycats',
   'organizations_url': 'https://api.github.com/users/wycats/orgs',
   'received_events_url': 'https://api.github.com/users/wycats/received_events',
   'repos_url': 'https://api.github.com/users/wycats/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wycats'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wycats/jspec/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wycats/jspec/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wycats/jspec/stargazers',
  'statuses_url': 'https://api.github.com/repos/wycats/jspec/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wycats/jspec/subscribers',
  'subscription_url': 'https://api.github.com/repos/wycats/jspec/subscription',
  'tags_url': 'https://api.github.com/repos/wycats/jspec/tags',
  'teams_url': 'https://api.github.com/repos/wycats/jspec/teams',
  'trees_url': 'https://api.github.com/repos/wycats/jspec/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wycats/jspec'},
 {'archive_url': 'https://api.github.com/repos/defunkt/exception_logger/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/exception_logger/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/exception_logger/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/exception_logger/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/exception_logger/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/exception_logger/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/exception_logger/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/exception_logger/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/exception_logger/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/exception_logger/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/exception_logger/deployments',
  'description': 'Unmaintained. Sorry.',
  'downloads_url': 'https://api.github.com/repos/defunkt/exception_logger/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/exception_logger/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/exception_logger/forks',
  'full_name': 'defunkt/exception_logger',
  'git_commits_url': 'https://api.github.com/repos/defunkt/exception_logger/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/exception_logger/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/exception_logger/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/exception_logger/hooks',
  'html_url': 'https://github.com/defunkt/exception_logger',
  'id': 35,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/exception_logger/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/exception_logger/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/exception_logger/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/exception_logger/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/exception_logger/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/exception_logger/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/exception_logger/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/exception_logger/milestones{/number}',
  'name': 'exception_logger',
  'notifications_url': 'https://api.github.com/repos/defunkt/exception_logger/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/exception_logger/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/exception_logger/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/exception_logger/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/exception_logger/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/exception_logger/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/exception_logger/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/exception_logger/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/exception_logger/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/exception_logger/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/exception_logger'},
 {'archive_url': 'https://api.github.com/repos/defunkt/ambition/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/ambition/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/ambition/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/ambition/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/ambition/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/ambition/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/ambition/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/ambition/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/ambition/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/ambition/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/ambition/deployments',
  'description': 'include Enumerable — Unmaintained',
  'downloads_url': 'https://api.github.com/repos/defunkt/ambition/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/ambition/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/ambition/forks',
  'full_name': 'defunkt/ambition',
  'git_commits_url': 'https://api.github.com/repos/defunkt/ambition/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/ambition/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/ambition/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/ambition/hooks',
  'html_url': 'https://github.com/defunkt/ambition',
  'id': 36,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/ambition/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/ambition/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/ambition/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/ambition/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/ambition/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/ambition/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/ambition/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/ambition/milestones{/number}',
  'name': 'ambition',
  'notifications_url': 'https://api.github.com/repos/defunkt/ambition/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/ambition/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/ambition/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/ambition/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/ambition/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/ambition/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/ambition/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/ambition/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/ambition/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/ambition/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/ambition'},
 {'archive_url': 'https://api.github.com/repos/technoweenie/restful-authentication/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/technoweenie/restful-authentication/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/technoweenie/restful-authentication/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/technoweenie/restful-authentication/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/technoweenie/restful-authentication/comments{/number}',
  'commits_url': 'https://api.github.com/repos/technoweenie/restful-authentication/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/technoweenie/restful-authentication/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/technoweenie/restful-authentication/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/technoweenie/restful-authentication/contributors',
  'deployments_url': 'https://api.github.com/repos/technoweenie/restful-authentication/deployments',
  'description': 'Generates common user authentication code for Rails/Merb, with a full test/unit and rspec suite and optional Acts as State Machine support built-in.',
  'downloads_url': 'https://api.github.com/repos/technoweenie/restful-authentication/downloads',
  'events_url': 'https://api.github.com/repos/technoweenie/restful-authentication/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/technoweenie/restful-authentication/forks',
  'full_name': 'technoweenie/restful-authentication',
  'git_commits_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/technoweenie/restful-authentication/hooks',
  'html_url': 'https://github.com/technoweenie/restful-authentication',
  'id': 42,
  'issue_comment_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues{/number}',
  'keys_url': 'https://api.github.com/repos/technoweenie/restful-authentication/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/technoweenie/restful-authentication/labels{/name}',
  'languages_url': 'https://api.github.com/repos/technoweenie/restful-authentication/languages',
  'merges_url': 'https://api.github.com/repos/technoweenie/restful-authentication/merges',
  'milestones_url': 'https://api.github.com/repos/technoweenie/restful-authentication/milestones{/number}',
  'name': 'restful-authentication',
  'notifications_url': 'https://api.github.com/repos/technoweenie/restful-authentication/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',
   'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',
   'followers_url': 'https://api.github.com/users/technoweenie/followers',
   'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',
   'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/technoweenie',
   'id': 21,
   'login': 'technoweenie',
   'organizations_url': 'https://api.github.com/users/technoweenie/orgs',
   'received_events_url': 'https://api.github.com/users/technoweenie/received_events',
   'repos_url': 'https://api.github.com/users/technoweenie/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/technoweenie'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/technoweenie/restful-authentication/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/technoweenie/restful-authentication/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/technoweenie/restful-authentication/stargazers',
  'statuses_url': 'https://api.github.com/repos/technoweenie/restful-authentication/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/technoweenie/restful-authentication/subscribers',
  'subscription_url': 'https://api.github.com/repos/technoweenie/restful-authentication/subscription',
  'tags_url': 'https://api.github.com/repos/technoweenie/restful-authentication/tags',
  'teams_url': 'https://api.github.com/repos/technoweenie/restful-authentication/teams',
  'trees_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/trees{/sha}',
  'url': 'https://api.github.com/repos/technoweenie/restful-authentication'},
 {'archive_url': 'https://api.github.com/repos/technoweenie/attachment_fu/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/technoweenie/attachment_fu/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/technoweenie/attachment_fu/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/technoweenie/attachment_fu/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/technoweenie/attachment_fu/comments{/number}',
  'commits_url': 'https://api.github.com/repos/technoweenie/attachment_fu/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/technoweenie/attachment_fu/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/technoweenie/attachment_fu/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/technoweenie/attachment_fu/contributors',
  'deployments_url': 'https://api.github.com/repos/technoweenie/attachment_fu/deployments',
  'description': 'Treat an ActiveRecord model as a file attachment, storing its patch, size, content type, etc.',
  'downloads_url': 'https://api.github.com/repos/technoweenie/attachment_fu/downloads',
  'events_url': 'https://api.github.com/repos/technoweenie/attachment_fu/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/technoweenie/attachment_fu/forks',
  'full_name': 'technoweenie/attachment_fu',
  'git_commits_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/technoweenie/attachment_fu/hooks',
  'html_url': 'https://github.com/technoweenie/attachment_fu',
  'id': 43,
  'issue_comment_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues{/number}',
  'keys_url': 'https://api.github.com/repos/technoweenie/attachment_fu/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/technoweenie/attachment_fu/labels{/name}',
  'languages_url': 'https://api.github.com/repos/technoweenie/attachment_fu/languages',
  'merges_url': 'https://api.github.com/repos/technoweenie/attachment_fu/merges',
  'milestones_url': 'https://api.github.com/repos/technoweenie/attachment_fu/milestones{/number}',
  'name': 'attachment_fu',
  'notifications_url': 'https://api.github.com/repos/technoweenie/attachment_fu/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',
   'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',
   'followers_url': 'https://api.github.com/users/technoweenie/followers',
   'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',
   'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/technoweenie',
   'id': 21,
   'login': 'technoweenie',
   'organizations_url': 'https://api.github.com/users/technoweenie/orgs',
   'received_events_url': 'https://api.github.com/users/technoweenie/received_events',
   'repos_url': 'https://api.github.com/users/technoweenie/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/technoweenie'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/technoweenie/attachment_fu/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/technoweenie/attachment_fu/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/technoweenie/attachment_fu/stargazers',
  'statuses_url': 'https://api.github.com/repos/technoweenie/attachment_fu/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/technoweenie/attachment_fu/subscribers',
  'subscription_url': 'https://api.github.com/repos/technoweenie/attachment_fu/subscription',
  'tags_url': 'https://api.github.com/repos/technoweenie/attachment_fu/tags',
  'teams_url': 'https://api.github.com/repos/technoweenie/attachment_fu/teams',
  'trees_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/trees{/sha}',
  'url': 'https://api.github.com/repos/technoweenie/attachment_fu'},
 {'archive_url': 'https://api.github.com/repos/Caged/microsis/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/Caged/microsis/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/Caged/microsis/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/Caged/microsis/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/Caged/microsis/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/Caged/microsis/comments{/number}',
  'commits_url': 'https://api.github.com/repos/Caged/microsis/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/Caged/microsis/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/Caged/microsis/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/Caged/microsis/contributors',
  'deployments_url': 'https://api.github.com/repos/Caged/microsis/deployments',
  'description': 'SUPER OLD STUFF',
  'downloads_url': 'https://api.github.com/repos/Caged/microsis/downloads',
  'events_url': 'https://api.github.com/repos/Caged/microsis/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/Caged/microsis/forks',
  'full_name': 'Caged/microsis',
  'git_commits_url': 'https://api.github.com/repos/Caged/microsis/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/Caged/microsis/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/Caged/microsis/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/Caged/microsis/hooks',
  'html_url': 'https://github.com/Caged/microsis',
  'id': 48,
  'issue_comment_url': 'https://api.github.com/repos/Caged/microsis/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/Caged/microsis/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/Caged/microsis/issues{/number}',
  'keys_url': 'https://api.github.com/repos/Caged/microsis/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/Caged/microsis/labels{/name}',
  'languages_url': 'https://api.github.com/repos/Caged/microsis/languages',
  'merges_url': 'https://api.github.com/repos/Caged/microsis/merges',
  'milestones_url': 'https://api.github.com/repos/Caged/microsis/milestones{/number}',
  'name': 'microsis',
  'notifications_url': 'https://api.github.com/repos/Caged/microsis/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',
   'events_url': 'https://api.github.com/users/Caged/events{/privacy}',
   'followers_url': 'https://api.github.com/users/Caged/followers',
   'following_url': 'https://api.github.com/users/Caged/following{/other_user}',
   'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/Caged',
   'id': 25,
   'login': 'Caged',
   'organizations_url': 'https://api.github.com/users/Caged/orgs',
   'received_events_url': 'https://api.github.com/users/Caged/received_events',
   'repos_url': 'https://api.github.com/users/Caged/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/Caged'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/Caged/microsis/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/Caged/microsis/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/Caged/microsis/stargazers',
  'statuses_url': 'https://api.github.com/repos/Caged/microsis/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/Caged/microsis/subscribers',
  'subscription_url': 'https://api.github.com/repos/Caged/microsis/subscription',
  'tags_url': 'https://api.github.com/repos/Caged/microsis/tags',
  'teams_url': 'https://api.github.com/repos/Caged/microsis/teams',
  'trees_url': 'https://api.github.com/repos/Caged/microsis/git/trees{/sha}',
  'url': 'https://api.github.com/repos/Caged/microsis'},
 {'archive_url': 'https://api.github.com/repos/anotherjesse/s3/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/anotherjesse/s3/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/anotherjesse/s3/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/anotherjesse/s3/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/anotherjesse/s3/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/anotherjesse/s3/comments{/number}',
  'commits_url': 'https://api.github.com/repos/anotherjesse/s3/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/anotherjesse/s3/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/anotherjesse/s3/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/anotherjesse/s3/contributors',
  'deployments_url': 'https://api.github.com/repos/anotherjesse/s3/deployments',
  'description': 'psuedo s3 protocol for mozilla browsers',
  'downloads_url': 'https://api.github.com/repos/anotherjesse/s3/downloads',
  'events_url': 'https://api.github.com/repos/anotherjesse/s3/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/anotherjesse/s3/forks',
  'full_name': 'anotherjesse/s3',
  'git_commits_url': 'https://api.github.com/repos/anotherjesse/s3/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/anotherjesse/s3/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/anotherjesse/s3/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/anotherjesse/s3/hooks',
  'html_url': 'https://github.com/anotherjesse/s3',
  'id': 52,
  'issue_comment_url': 'https://api.github.com/repos/anotherjesse/s3/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/anotherjesse/s3/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/anotherjesse/s3/issues{/number}',
  'keys_url': 'https://api.github.com/repos/anotherjesse/s3/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/anotherjesse/s3/labels{/name}',
  'languages_url': 'https://api.github.com/repos/anotherjesse/s3/languages',
  'merges_url': 'https://api.github.com/repos/anotherjesse/s3/merges',
  'milestones_url': 'https://api.github.com/repos/anotherjesse/s3/milestones{/number}',
  'name': 's3',
  'notifications_url': 'https://api.github.com/repos/anotherjesse/s3/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',
   'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',
   'followers_url': 'https://api.github.com/users/anotherjesse/followers',
   'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',
   'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/anotherjesse',
   'id': 27,
   'login': 'anotherjesse',
   'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',
   'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',
   'repos_url': 'https://api.github.com/users/anotherjesse/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/anotherjesse'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/anotherjesse/s3/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/anotherjesse/s3/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/anotherjesse/s3/stargazers',
  'statuses_url': 'https://api.github.com/repos/anotherjesse/s3/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/anotherjesse/s3/subscribers',
  'subscription_url': 'https://api.github.com/repos/anotherjesse/s3/subscription',
  'tags_url': 'https://api.github.com/repos/anotherjesse/s3/tags',
  'teams_url': 'https://api.github.com/repos/anotherjesse/s3/teams',
  'trees_url': 'https://api.github.com/repos/anotherjesse/s3/git/trees{/sha}',
  'url': 'https://api.github.com/repos/anotherjesse/s3'},
 {'archive_url': 'https://api.github.com/repos/anotherjesse/taboo/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/anotherjesse/taboo/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/anotherjesse/taboo/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/anotherjesse/taboo/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/anotherjesse/taboo/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/anotherjesse/taboo/comments{/number}',
  'commits_url': 'https://api.github.com/repos/anotherjesse/taboo/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/anotherjesse/taboo/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/anotherjesse/taboo/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/anotherjesse/taboo/contributors',
  'deployments_url': 'https://api.github.com/repos/anotherjesse/taboo/deployments',
  'description': 'The solution for tabitus of the browser ',
  'downloads_url': 'https://api.github.com/repos/anotherjesse/taboo/downloads',
  'events_url': 'https://api.github.com/repos/anotherjesse/taboo/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/anotherjesse/taboo/forks',
  'full_name': 'anotherjesse/taboo',
  'git_commits_url': 'https://api.github.com/repos/anotherjesse/taboo/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/anotherjesse/taboo/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/anotherjesse/taboo/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/anotherjesse/taboo/hooks',
  'html_url': 'https://github.com/anotherjesse/taboo',
  'id': 53,
  'issue_comment_url': 'https://api.github.com/repos/anotherjesse/taboo/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/anotherjesse/taboo/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/anotherjesse/taboo/issues{/number}',
  'keys_url': 'https://api.github.com/repos/anotherjesse/taboo/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/anotherjesse/taboo/labels{/name}',
  'languages_url': 'https://api.github.com/repos/anotherjesse/taboo/languages',
  'merges_url': 'https://api.github.com/repos/anotherjesse/taboo/merges',
  'milestones_url': 'https://api.github.com/repos/anotherjesse/taboo/milestones{/number}',
  'name': 'taboo',
  'notifications_url': 'https://api.github.com/repos/anotherjesse/taboo/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',
   'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',
   'followers_url': 'https://api.github.com/users/anotherjesse/followers',
   'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',
   'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/anotherjesse',
   'id': 27,
   'login': 'anotherjesse',
   'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',
   'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',
   'repos_url': 'https://api.github.com/users/anotherjesse/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/anotherjesse'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/anotherjesse/taboo/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/anotherjesse/taboo/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/anotherjesse/taboo/stargazers',
  'statuses_url': 'https://api.github.com/repos/anotherjesse/taboo/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/anotherjesse/taboo/subscribers',
  'subscription_url': 'https://api.github.com/repos/anotherjesse/taboo/subscription',
  'tags_url': 'https://api.github.com/repos/anotherjesse/taboo/tags',
  'teams_url': 'https://api.github.com/repos/anotherjesse/taboo/teams',
  'trees_url': 'https://api.github.com/repos/anotherjesse/taboo/git/trees{/sha}',
  'url': 'https://api.github.com/repos/anotherjesse/taboo'},
 {'archive_url': 'https://api.github.com/repos/anotherjesse/foxtracs/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/anotherjesse/foxtracs/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/anotherjesse/foxtracs/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/anotherjesse/foxtracs/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/anotherjesse/foxtracs/comments{/number}',
  'commits_url': 'https://api.github.com/repos/anotherjesse/foxtracs/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/anotherjesse/foxtracs/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/anotherjesse/foxtracs/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/anotherjesse/foxtracs/contributors',
  'deployments_url': 'https://api.github.com/repos/anotherjesse/foxtracs/deployments',
  'description': 'firefox trac integration',
  'downloads_url': 'https://api.github.com/repos/anotherjesse/foxtracs/downloads',
  'events_url': 'https://api.github.com/repos/anotherjesse/foxtracs/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/anotherjesse/foxtracs/forks',
  'full_name': 'anotherjesse/foxtracs',
  'git_commits_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/anotherjesse/foxtracs/hooks',
  'html_url': 'https://github.com/anotherjesse/foxtracs',
  'id': 54,
  'issue_comment_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues{/number}',
  'keys_url': 'https://api.github.com/repos/anotherjesse/foxtracs/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/anotherjesse/foxtracs/labels{/name}',
  'languages_url': 'https://api.github.com/repos/anotherjesse/foxtracs/languages',
  'merges_url': 'https://api.github.com/repos/anotherjesse/foxtracs/merges',
  'milestones_url': 'https://api.github.com/repos/anotherjesse/foxtracs/milestones{/number}',
  'name': 'foxtracs',
  'notifications_url': 'https://api.github.com/repos/anotherjesse/foxtracs/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',
   'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',
   'followers_url': 'https://api.github.com/users/anotherjesse/followers',
   'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',
   'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/anotherjesse',
   'id': 27,
   'login': 'anotherjesse',
   'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',
   'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',
   'repos_url': 'https://api.github.com/users/anotherjesse/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/anotherjesse'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/anotherjesse/foxtracs/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/anotherjesse/foxtracs/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/anotherjesse/foxtracs/stargazers',
  'statuses_url': 'https://api.github.com/repos/anotherjesse/foxtracs/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/anotherjesse/foxtracs/subscribers',
  'subscription_url': 'https://api.github.com/repos/anotherjesse/foxtracs/subscription',
  'tags_url': 'https://api.github.com/repos/anotherjesse/foxtracs/tags',
  'teams_url': 'https://api.github.com/repos/anotherjesse/foxtracs/teams',
  'trees_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/trees{/sha}',
  'url': 'https://api.github.com/repos/anotherjesse/foxtracs'},
 {'archive_url': 'https://api.github.com/repos/anotherjesse/fotomatic/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/anotherjesse/fotomatic/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/anotherjesse/fotomatic/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/anotherjesse/fotomatic/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/anotherjesse/fotomatic/comments{/number}',
  'commits_url': 'https://api.github.com/repos/anotherjesse/fotomatic/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/anotherjesse/fotomatic/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/anotherjesse/fotomatic/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/anotherjesse/fotomatic/contributors',
  'deployments_url': 'https://api.github.com/repos/anotherjesse/fotomatic/deployments',
  'description': 'Flash photo widget prototype - hacked at last SHDH of 2007',
  'downloads_url': 'https://api.github.com/repos/anotherjesse/fotomatic/downloads',
  'events_url': 'https://api.github.com/repos/anotherjesse/fotomatic/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/anotherjesse/fotomatic/forks',
  'full_name': 'anotherjesse/fotomatic',
  'git_commits_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/anotherjesse/fotomatic/hooks',
  'html_url': 'https://github.com/anotherjesse/fotomatic',
  'id': 56,
  'issue_comment_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues{/number}',
  'keys_url': 'https://api.github.com/repos/anotherjesse/fotomatic/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/anotherjesse/fotomatic/labels{/name}',
  'languages_url': 'https://api.github.com/repos/anotherjesse/fotomatic/languages',
  'merges_url': 'https://api.github.com/repos/anotherjesse/fotomatic/merges',
  'milestones_url': 'https://api.github.com/repos/anotherjesse/fotomatic/milestones{/number}',
  'name': 'fotomatic',
  'notifications_url': 'https://api.github.com/repos/anotherjesse/fotomatic/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',
   'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',
   'followers_url': 'https://api.github.com/users/anotherjesse/followers',
   'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',
   'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/anotherjesse',
   'id': 27,
   'login': 'anotherjesse',
   'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',
   'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',
   'repos_url': 'https://api.github.com/users/anotherjesse/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/anotherjesse'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/anotherjesse/fotomatic/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/anotherjesse/fotomatic/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/anotherjesse/fotomatic/stargazers',
  'statuses_url': 'https://api.github.com/repos/anotherjesse/fotomatic/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/anotherjesse/fotomatic/subscribers',
  'subscription_url': 'https://api.github.com/repos/anotherjesse/fotomatic/subscription',
  'tags_url': 'https://api.github.com/repos/anotherjesse/fotomatic/tags',
  'teams_url': 'https://api.github.com/repos/anotherjesse/fotomatic/teams',
  'trees_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/trees{/sha}',
  'url': 'https://api.github.com/repos/anotherjesse/fotomatic'},
 {'archive_url': 'https://api.github.com/repos/mojombo/glowstick/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mojombo/glowstick/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mojombo/glowstick/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mojombo/glowstick/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mojombo/glowstick/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mojombo/glowstick/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mojombo/glowstick/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mojombo/glowstick/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mojombo/glowstick/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mojombo/glowstick/contributors',
  'deployments_url': 'https://api.github.com/repos/mojombo/glowstick/deployments',
  'description': 'A realtime, OpenGL graphing library for Ruby',
  'downloads_url': 'https://api.github.com/repos/mojombo/glowstick/downloads',
  'events_url': 'https://api.github.com/repos/mojombo/glowstick/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mojombo/glowstick/forks',
  'full_name': 'mojombo/glowstick',
  'git_commits_url': 'https://api.github.com/repos/mojombo/glowstick/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mojombo/glowstick/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mojombo/glowstick/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mojombo/glowstick/hooks',
  'html_url': 'https://github.com/mojombo/glowstick',
  'id': 61,
  'issue_comment_url': 'https://api.github.com/repos/mojombo/glowstick/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mojombo/glowstick/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mojombo/glowstick/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mojombo/glowstick/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mojombo/glowstick/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mojombo/glowstick/languages',
  'merges_url': 'https://api.github.com/repos/mojombo/glowstick/merges',
  'milestones_url': 'https://api.github.com/repos/mojombo/glowstick/milestones{/number}',
  'name': 'glowstick',
  'notifications_url': 'https://api.github.com/repos/mojombo/glowstick/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
   'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mojombo/followers',
   'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mojombo',
   'id': 1,
   'login': 'mojombo',
   'organizations_url': 'https://api.github.com/users/mojombo/orgs',
   'received_events_url': 'https://api.github.com/users/mojombo/received_events',
   'repos_url': 'https://api.github.com/users/mojombo/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mojombo'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mojombo/glowstick/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mojombo/glowstick/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mojombo/glowstick/stargazers',
  'statuses_url': 'https://api.github.com/repos/mojombo/glowstick/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mojombo/glowstick/subscribers',
  'subscription_url': 'https://api.github.com/repos/mojombo/glowstick/subscription',
  'tags_url': 'https://api.github.com/repos/mojombo/glowstick/tags',
  'teams_url': 'https://api.github.com/repos/mojombo/glowstick/teams',
  'trees_url': 'https://api.github.com/repos/mojombo/glowstick/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mojombo/glowstick'},
 {'archive_url': 'https://api.github.com/repos/defunkt/starling/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/starling/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/starling/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/starling/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/starling/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/starling/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/starling/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/starling/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/starling/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/starling/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/starling/deployments',
  'description': None,
  'downloads_url': 'https://api.github.com/repos/defunkt/starling/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/starling/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/starling/forks',
  'full_name': 'defunkt/starling',
  'git_commits_url': 'https://api.github.com/repos/defunkt/starling/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/starling/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/starling/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/starling/hooks',
  'html_url': 'https://github.com/defunkt/starling',
  'id': 63,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/starling/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/starling/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/starling/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/starling/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/starling/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/starling/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/starling/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/starling/milestones{/number}',
  'name': 'starling',
  'notifications_url': 'https://api.github.com/repos/defunkt/starling/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/starling/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/starling/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/starling/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/starling/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/starling/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/starling/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/starling/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/starling/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/starling/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/starling'},
 {'archive_url': 'https://api.github.com/repos/wycats/merb-more/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wycats/merb-more/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wycats/merb-more/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wycats/merb-more/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wycats/merb-more/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wycats/merb-more/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wycats/merb-more/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wycats/merb-more/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wycats/merb-more/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wycats/merb-more/contributors',
  'deployments_url': 'https://api.github.com/repos/wycats/merb-more/deployments',
  'description': "Merb More: The Full Stack. Take what you need; leave what you don't.",
  'downloads_url': 'https://api.github.com/repos/wycats/merb-more/downloads',
  'events_url': 'https://api.github.com/repos/wycats/merb-more/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wycats/merb-more/forks',
  'full_name': 'wycats/merb-more',
  'git_commits_url': 'https://api.github.com/repos/wycats/merb-more/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wycats/merb-more/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wycats/merb-more/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wycats/merb-more/hooks',
  'html_url': 'https://github.com/wycats/merb-more',
  'id': 65,
  'issue_comment_url': 'https://api.github.com/repos/wycats/merb-more/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wycats/merb-more/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wycats/merb-more/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wycats/merb-more/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wycats/merb-more/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wycats/merb-more/languages',
  'merges_url': 'https://api.github.com/repos/wycats/merb-more/merges',
  'milestones_url': 'https://api.github.com/repos/wycats/merb-more/milestones{/number}',
  'name': 'merb-more',
  'notifications_url': 'https://api.github.com/repos/wycats/merb-more/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',
   'events_url': 'https://api.github.com/users/wycats/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wycats/followers',
   'following_url': 'https://api.github.com/users/wycats/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wycats',
   'id': 4,
   'login': 'wycats',
   'organizations_url': 'https://api.github.com/users/wycats/orgs',
   'received_events_url': 'https://api.github.com/users/wycats/received_events',
   'repos_url': 'https://api.github.com/users/wycats/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wycats'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wycats/merb-more/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wycats/merb-more/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wycats/merb-more/stargazers',
  'statuses_url': 'https://api.github.com/repos/wycats/merb-more/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wycats/merb-more/subscribers',
  'subscription_url': 'https://api.github.com/repos/wycats/merb-more/subscription',
  'tags_url': 'https://api.github.com/repos/wycats/merb-more/tags',
  'teams_url': 'https://api.github.com/repos/wycats/merb-more/teams',
  'trees_url': 'https://api.github.com/repos/wycats/merb-more/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wycats/merb-more'},
 {'archive_url': 'https://api.github.com/repos/macournoyer/thin/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/macournoyer/thin/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/macournoyer/thin/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/macournoyer/thin/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/macournoyer/thin/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/macournoyer/thin/comments{/number}',
  'commits_url': 'https://api.github.com/repos/macournoyer/thin/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/macournoyer/thin/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/macournoyer/thin/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/macournoyer/thin/contributors',
  'deployments_url': 'https://api.github.com/repos/macournoyer/thin/deployments',
  'description': 'A very fast & simple Ruby web server',
  'downloads_url': 'https://api.github.com/repos/macournoyer/thin/downloads',
  'events_url': 'https://api.github.com/repos/macournoyer/thin/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/macournoyer/thin/forks',
  'full_name': 'macournoyer/thin',
  'git_commits_url': 'https://api.github.com/repos/macournoyer/thin/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/macournoyer/thin/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/macournoyer/thin/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/macournoyer/thin/hooks',
  'html_url': 'https://github.com/macournoyer/thin',
  'id': 68,
  'issue_comment_url': 'https://api.github.com/repos/macournoyer/thin/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/macournoyer/thin/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/macournoyer/thin/issues{/number}',
  'keys_url': 'https://api.github.com/repos/macournoyer/thin/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/macournoyer/thin/labels{/name}',
  'languages_url': 'https://api.github.com/repos/macournoyer/thin/languages',
  'merges_url': 'https://api.github.com/repos/macournoyer/thin/merges',
  'milestones_url': 'https://api.github.com/repos/macournoyer/thin/milestones{/number}',
  'name': 'thin',
  'notifications_url': 'https://api.github.com/repos/macournoyer/thin/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/22?v=4',
   'events_url': 'https://api.github.com/users/macournoyer/events{/privacy}',
   'followers_url': 'https://api.github.com/users/macournoyer/followers',
   'following_url': 'https://api.github.com/users/macournoyer/following{/other_user}',
   'gists_url': 'https://api.github.com/users/macournoyer/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/macournoyer',
   'id': 22,
   'login': 'macournoyer',
   'organizations_url': 'https://api.github.com/users/macournoyer/orgs',
   'received_events_url': 'https://api.github.com/users/macournoyer/received_events',
   'repos_url': 'https://api.github.com/users/macournoyer/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/macournoyer/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/macournoyer/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/macournoyer'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/macournoyer/thin/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/macournoyer/thin/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/macournoyer/thin/stargazers',
  'statuses_url': 'https://api.github.com/repos/macournoyer/thin/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/macournoyer/thin/subscribers',
  'subscription_url': 'https://api.github.com/repos/macournoyer/thin/subscription',
  'tags_url': 'https://api.github.com/repos/macournoyer/thin/tags',
  'teams_url': 'https://api.github.com/repos/macournoyer/thin/teams',
  'trees_url': 'https://api.github.com/repos/macournoyer/thin/git/trees{/sha}',
  'url': 'https://api.github.com/repos/macournoyer/thin'},
 {'archive_url': 'https://api.github.com/repos/jamesgolick/resource_controller/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jamesgolick/resource_controller/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jamesgolick/resource_controller/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jamesgolick/resource_controller/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jamesgolick/resource_controller/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jamesgolick/resource_controller/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jamesgolick/resource_controller/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jamesgolick/resource_controller/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jamesgolick/resource_controller/contributors',
  'deployments_url': 'https://api.github.com/repos/jamesgolick/resource_controller/deployments',
  'description': 'Rails RESTful controller abstraction plugin.',
  'downloads_url': 'https://api.github.com/repos/jamesgolick/resource_controller/downloads',
  'events_url': 'https://api.github.com/repos/jamesgolick/resource_controller/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jamesgolick/resource_controller/forks',
  'full_name': 'jamesgolick/resource_controller',
  'git_commits_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jamesgolick/resource_controller/hooks',
  'html_url': 'https://github.com/jamesgolick/resource_controller',
  'id': 71,
  'issue_comment_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jamesgolick/resource_controller/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jamesgolick/resource_controller/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jamesgolick/resource_controller/languages',
  'merges_url': 'https://api.github.com/repos/jamesgolick/resource_controller/merges',
  'milestones_url': 'https://api.github.com/repos/jamesgolick/resource_controller/milestones{/number}',
  'name': 'resource_controller',
  'notifications_url': 'https://api.github.com/repos/jamesgolick/resource_controller/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',
   'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jamesgolick/followers',
   'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jamesgolick',
   'id': 37,
   'login': 'jamesgolick',
   'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',
   'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',
   'repos_url': 'https://api.github.com/users/jamesgolick/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jamesgolick'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jamesgolick/resource_controller/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jamesgolick/resource_controller/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jamesgolick/resource_controller/stargazers',
  'statuses_url': 'https://api.github.com/repos/jamesgolick/resource_controller/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jamesgolick/resource_controller/subscribers',
  'subscription_url': 'https://api.github.com/repos/jamesgolick/resource_controller/subscription',
  'tags_url': 'https://api.github.com/repos/jamesgolick/resource_controller/tags',
  'teams_url': 'https://api.github.com/repos/jamesgolick/resource_controller/teams',
  'trees_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jamesgolick/resource_controller'},
 {'archive_url': 'https://api.github.com/repos/jamesgolick/markaby/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jamesgolick/markaby/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jamesgolick/markaby/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jamesgolick/markaby/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jamesgolick/markaby/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jamesgolick/markaby/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jamesgolick/markaby/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jamesgolick/markaby/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jamesgolick/markaby/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jamesgolick/markaby/contributors',
  'deployments_url': 'https://api.github.com/repos/jamesgolick/markaby/deployments',
  'description': 'Markaby patched to run on rails 2.0.2',
  'downloads_url': 'https://api.github.com/repos/jamesgolick/markaby/downloads',
  'events_url': 'https://api.github.com/repos/jamesgolick/markaby/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jamesgolick/markaby/forks',
  'full_name': 'jamesgolick/markaby',
  'git_commits_url': 'https://api.github.com/repos/jamesgolick/markaby/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jamesgolick/markaby/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jamesgolick/markaby/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jamesgolick/markaby/hooks',
  'html_url': 'https://github.com/jamesgolick/markaby',
  'id': 73,
  'issue_comment_url': 'https://api.github.com/repos/jamesgolick/markaby/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jamesgolick/markaby/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jamesgolick/markaby/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jamesgolick/markaby/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jamesgolick/markaby/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jamesgolick/markaby/languages',
  'merges_url': 'https://api.github.com/repos/jamesgolick/markaby/merges',
  'milestones_url': 'https://api.github.com/repos/jamesgolick/markaby/milestones{/number}',
  'name': 'markaby',
  'notifications_url': 'https://api.github.com/repos/jamesgolick/markaby/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',
   'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jamesgolick/followers',
   'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jamesgolick',
   'id': 37,
   'login': 'jamesgolick',
   'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',
   'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',
   'repos_url': 'https://api.github.com/users/jamesgolick/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jamesgolick'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jamesgolick/markaby/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jamesgolick/markaby/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jamesgolick/markaby/stargazers',
  'statuses_url': 'https://api.github.com/repos/jamesgolick/markaby/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jamesgolick/markaby/subscribers',
  'subscription_url': 'https://api.github.com/repos/jamesgolick/markaby/subscription',
  'tags_url': 'https://api.github.com/repos/jamesgolick/markaby/tags',
  'teams_url': 'https://api.github.com/repos/jamesgolick/markaby/teams',
  'trees_url': 'https://api.github.com/repos/jamesgolick/markaby/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jamesgolick/markaby'},
 {'archive_url': 'https://api.github.com/repos/jamesgolick/enum_field/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jamesgolick/enum_field/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jamesgolick/enum_field/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jamesgolick/enum_field/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jamesgolick/enum_field/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jamesgolick/enum_field/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jamesgolick/enum_field/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jamesgolick/enum_field/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jamesgolick/enum_field/contributors',
  'deployments_url': 'https://api.github.com/repos/jamesgolick/enum_field/deployments',
  'description': None,
  'downloads_url': 'https://api.github.com/repos/jamesgolick/enum_field/downloads',
  'events_url': 'https://api.github.com/repos/jamesgolick/enum_field/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jamesgolick/enum_field/forks',
  'full_name': 'jamesgolick/enum_field',
  'git_commits_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jamesgolick/enum_field/hooks',
  'html_url': 'https://github.com/jamesgolick/enum_field',
  'id': 74,
  'issue_comment_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jamesgolick/enum_field/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jamesgolick/enum_field/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jamesgolick/enum_field/languages',
  'merges_url': 'https://api.github.com/repos/jamesgolick/enum_field/merges',
  'milestones_url': 'https://api.github.com/repos/jamesgolick/enum_field/milestones{/number}',
  'name': 'enum_field',
  'notifications_url': 'https://api.github.com/repos/jamesgolick/enum_field/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',
   'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jamesgolick/followers',
   'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jamesgolick',
   'id': 37,
   'login': 'jamesgolick',
   'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',
   'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',
   'repos_url': 'https://api.github.com/users/jamesgolick/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jamesgolick'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jamesgolick/enum_field/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jamesgolick/enum_field/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jamesgolick/enum_field/stargazers',
  'statuses_url': 'https://api.github.com/repos/jamesgolick/enum_field/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jamesgolick/enum_field/subscribers',
  'subscription_url': 'https://api.github.com/repos/jamesgolick/enum_field/subscription',
  'tags_url': 'https://api.github.com/repos/jamesgolick/enum_field/tags',
  'teams_url': 'https://api.github.com/repos/jamesgolick/enum_field/teams',
  'trees_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jamesgolick/enum_field'},
 {'archive_url': 'https://api.github.com/repos/defunkt/subtlety/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/subtlety/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/subtlety/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/subtlety/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/subtlety/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/subtlety/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/subtlety/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/subtlety/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/subtlety/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/subtlety/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/subtlety/deployments',
  'description': 'Subtlety: SVN => RSS, hAtom => Atom',
  'downloads_url': 'https://api.github.com/repos/defunkt/subtlety/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/subtlety/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/subtlety/forks',
  'full_name': 'defunkt/subtlety',
  'git_commits_url': 'https://api.github.com/repos/defunkt/subtlety/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/subtlety/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/subtlety/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/subtlety/hooks',
  'html_url': 'https://github.com/defunkt/subtlety',
  'id': 75,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/subtlety/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/subtlety/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/subtlety/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/subtlety/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/subtlety/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/subtlety/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/subtlety/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/subtlety/milestones{/number}',
  'name': 'subtlety',
  'notifications_url': 'https://api.github.com/repos/defunkt/subtlety/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/subtlety/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/subtlety/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/subtlety/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/subtlety/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/subtlety/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/subtlety/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/subtlety/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/subtlety/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/subtlety/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/subtlety'},
 {'archive_url': 'https://api.github.com/repos/defunkt/zippy/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/zippy/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/zippy/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/zippy/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/zippy/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/zippy/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/zippy/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/zippy/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/zippy/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/zippy/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/zippy/deployments',
  'description': 'Zippy lil’ zipcode lib.',
  'downloads_url': 'https://api.github.com/repos/defunkt/zippy/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/zippy/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/zippy/forks',
  'full_name': 'defunkt/zippy',
  'git_commits_url': 'https://api.github.com/repos/defunkt/zippy/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/zippy/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/zippy/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/zippy/hooks',
  'html_url': 'https://github.com/defunkt/zippy',
  'id': 92,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/zippy/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/zippy/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/zippy/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/zippy/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/zippy/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/zippy/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/zippy/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/zippy/milestones{/number}',
  'name': 'zippy',
  'notifications_url': 'https://api.github.com/repos/defunkt/zippy/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/zippy/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/zippy/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/zippy/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/zippy/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/zippy/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/zippy/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/zippy/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/zippy/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/zippy/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/zippy'},
 {'archive_url': 'https://api.github.com/repos/defunkt/cache_fu/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/cache_fu/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/cache_fu/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/cache_fu/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/cache_fu/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/cache_fu/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/cache_fu/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/cache_fu/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/cache_fu/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/cache_fu/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/cache_fu/deployments',
  'description': 'Ghost from Christmas past. Unmaintained.',
  'downloads_url': 'https://api.github.com/repos/defunkt/cache_fu/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/cache_fu/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/cache_fu/forks',
  'full_name': 'defunkt/cache_fu',
  'git_commits_url': 'https://api.github.com/repos/defunkt/cache_fu/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/cache_fu/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/cache_fu/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/cache_fu/hooks',
  'html_url': 'https://github.com/defunkt/cache_fu',
  'id': 93,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/cache_fu/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/cache_fu/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/cache_fu/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/cache_fu/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/cache_fu/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/cache_fu/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/cache_fu/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/cache_fu/milestones{/number}',
  'name': 'cache_fu',
  'notifications_url': 'https://api.github.com/repos/defunkt/cache_fu/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/cache_fu/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/cache_fu/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/cache_fu/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/cache_fu/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/cache_fu/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/cache_fu/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/cache_fu/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/cache_fu/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/cache_fu/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/cache_fu'},
 {'archive_url': 'https://api.github.com/repos/KirinDave/phosphor/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/KirinDave/phosphor/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/KirinDave/phosphor/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/KirinDave/phosphor/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/KirinDave/phosphor/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/KirinDave/phosphor/comments{/number}',
  'commits_url': 'https://api.github.com/repos/KirinDave/phosphor/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/KirinDave/phosphor/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/KirinDave/phosphor/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/KirinDave/phosphor/contributors',
  'deployments_url': 'https://api.github.com/repos/KirinDave/phosphor/deployments',
  'description': ' A ruby library to inexpensively emit runtime events via Dtrace',
  'downloads_url': 'https://api.github.com/repos/KirinDave/phosphor/downloads',
  'events_url': 'https://api.github.com/repos/KirinDave/phosphor/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/KirinDave/phosphor/forks',
  'full_name': 'KirinDave/phosphor',
  'git_commits_url': 'https://api.github.com/repos/KirinDave/phosphor/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/KirinDave/phosphor/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/KirinDave/phosphor/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/KirinDave/phosphor/hooks',
  'html_url': 'https://github.com/KirinDave/phosphor',
  'id': 95,
  'issue_comment_url': 'https://api.github.com/repos/KirinDave/phosphor/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/KirinDave/phosphor/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/KirinDave/phosphor/issues{/number}',
  'keys_url': 'https://api.github.com/repos/KirinDave/phosphor/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/KirinDave/phosphor/labels{/name}',
  'languages_url': 'https://api.github.com/repos/KirinDave/phosphor/languages',
  'merges_url': 'https://api.github.com/repos/KirinDave/phosphor/merges',
  'milestones_url': 'https://api.github.com/repos/KirinDave/phosphor/milestones{/number}',
  'name': 'phosphor',
  'notifications_url': 'https://api.github.com/repos/KirinDave/phosphor/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/36?v=4',
   'events_url': 'https://api.github.com/users/KirinDave/events{/privacy}',
   'followers_url': 'https://api.github.com/users/KirinDave/followers',
   'following_url': 'https://api.github.com/users/KirinDave/following{/other_user}',
   'gists_url': 'https://api.github.com/users/KirinDave/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/KirinDave',
   'id': 36,
   'login': 'KirinDave',
   'organizations_url': 'https://api.github.com/users/KirinDave/orgs',
   'received_events_url': 'https://api.github.com/users/KirinDave/received_events',
   'repos_url': 'https://api.github.com/users/KirinDave/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/KirinDave/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/KirinDave'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/KirinDave/phosphor/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/KirinDave/phosphor/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/KirinDave/phosphor/stargazers',
  'statuses_url': 'https://api.github.com/repos/KirinDave/phosphor/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/KirinDave/phosphor/subscribers',
  'subscription_url': 'https://api.github.com/repos/KirinDave/phosphor/subscription',
  'tags_url': 'https://api.github.com/repos/KirinDave/phosphor/tags',
  'teams_url': 'https://api.github.com/repos/KirinDave/phosphor/teams',
  'trees_url': 'https://api.github.com/repos/KirinDave/phosphor/git/trees{/sha}',
  'url': 'https://api.github.com/repos/KirinDave/phosphor'},
 {'archive_url': 'https://api.github.com/repos/bmizerany/sinatra/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/bmizerany/sinatra/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/bmizerany/sinatra/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/bmizerany/sinatra/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/bmizerany/sinatra/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/bmizerany/sinatra/comments{/number}',
  'commits_url': 'https://api.github.com/repos/bmizerany/sinatra/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/bmizerany/sinatra/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/bmizerany/sinatra/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/bmizerany/sinatra/contributors',
  'deployments_url': 'https://api.github.com/repos/bmizerany/sinatra/deployments',
  'description': '(offically at github.com/sinatra/sinatra) Classy web-development dressed in a DSL',
  'downloads_url': 'https://api.github.com/repos/bmizerany/sinatra/downloads',
  'events_url': 'https://api.github.com/repos/bmizerany/sinatra/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/bmizerany/sinatra/forks',
  'full_name': 'bmizerany/sinatra',
  'git_commits_url': 'https://api.github.com/repos/bmizerany/sinatra/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/bmizerany/sinatra/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/bmizerany/sinatra/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/bmizerany/sinatra/hooks',
  'html_url': 'https://github.com/bmizerany/sinatra',
  'id': 98,
  'issue_comment_url': 'https://api.github.com/repos/bmizerany/sinatra/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/bmizerany/sinatra/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/bmizerany/sinatra/issues{/number}',
  'keys_url': 'https://api.github.com/repos/bmizerany/sinatra/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/bmizerany/sinatra/labels{/name}',
  'languages_url': 'https://api.github.com/repos/bmizerany/sinatra/languages',
  'merges_url': 'https://api.github.com/repos/bmizerany/sinatra/merges',
  'milestones_url': 'https://api.github.com/repos/bmizerany/sinatra/milestones{/number}',
  'name': 'sinatra',
  'notifications_url': 'https://api.github.com/repos/bmizerany/sinatra/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/46?v=4',
   'events_url': 'https://api.github.com/users/bmizerany/events{/privacy}',
   'followers_url': 'https://api.github.com/users/bmizerany/followers',
   'following_url': 'https://api.github.com/users/bmizerany/following{/other_user}',
   'gists_url': 'https://api.github.com/users/bmizerany/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/bmizerany',
   'id': 46,
   'login': 'bmizerany',
   'organizations_url': 'https://api.github.com/users/bmizerany/orgs',
   'received_events_url': 'https://api.github.com/users/bmizerany/received_events',
   'repos_url': 'https://api.github.com/users/bmizerany/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/bmizerany/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/bmizerany'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/bmizerany/sinatra/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/bmizerany/sinatra/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/bmizerany/sinatra/stargazers',
  'statuses_url': 'https://api.github.com/repos/bmizerany/sinatra/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/bmizerany/sinatra/subscribers',
  'subscription_url': 'https://api.github.com/repos/bmizerany/sinatra/subscription',
  'tags_url': 'https://api.github.com/repos/bmizerany/sinatra/tags',
  'teams_url': 'https://api.github.com/repos/bmizerany/sinatra/teams',
  'trees_url': 'https://api.github.com/repos/bmizerany/sinatra/git/trees{/sha}',
  'url': 'https://api.github.com/repos/bmizerany/sinatra'},
 {'archive_url': 'https://api.github.com/repos/jnewland/gsa-prototype/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/gsa-prototype/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/gsa-prototype/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/gsa-prototype/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/gsa-prototype/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/gsa-prototype/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/gsa-prototype/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/gsa-prototype/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/gsa-prototype/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/gsa-prototype/deployments',
  'description': 'Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.',
  'downloads_url': 'https://api.github.com/repos/jnewland/gsa-prototype/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/gsa-prototype/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/gsa-prototype/forks',
  'full_name': 'jnewland/gsa-prototype',
  'git_commits_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/gsa-prototype/hooks',
  'html_url': 'https://github.com/jnewland/gsa-prototype',
  'id': 102,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/gsa-prototype/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/gsa-prototype/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/gsa-prototype/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/gsa-prototype/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/gsa-prototype/milestones{/number}',
  'name': 'gsa-prototype',
  'notifications_url': 'https://api.github.com/repos/jnewland/gsa-prototype/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/gsa-prototype/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/gsa-prototype/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/gsa-prototype/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/gsa-prototype/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/gsa-prototype/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/gsa-prototype/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/gsa-prototype/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/gsa-prototype/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/gsa-prototype'},
 {'archive_url': 'https://api.github.com/repos/technoweenie/duplikate/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/technoweenie/duplikate/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/technoweenie/duplikate/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/technoweenie/duplikate/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/technoweenie/duplikate/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/technoweenie/duplikate/comments{/number}',
  'commits_url': 'https://api.github.com/repos/technoweenie/duplikate/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/technoweenie/duplikate/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/technoweenie/duplikate/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/technoweenie/duplikate/contributors',
  'deployments_url': 'https://api.github.com/repos/technoweenie/duplikate/deployments',
  'description': 'Syncs one directory to another (example: a git project to an svn repo)',
  'downloads_url': 'https://api.github.com/repos/technoweenie/duplikate/downloads',
  'events_url': 'https://api.github.com/repos/technoweenie/duplikate/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/technoweenie/duplikate/forks',
  'full_name': 'technoweenie/duplikate',
  'git_commits_url': 'https://api.github.com/repos/technoweenie/duplikate/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/technoweenie/duplikate/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/technoweenie/duplikate/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/technoweenie/duplikate/hooks',
  'html_url': 'https://github.com/technoweenie/duplikate',
  'id': 105,
  'issue_comment_url': 'https://api.github.com/repos/technoweenie/duplikate/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/technoweenie/duplikate/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/technoweenie/duplikate/issues{/number}',
  'keys_url': 'https://api.github.com/repos/technoweenie/duplikate/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/technoweenie/duplikate/labels{/name}',
  'languages_url': 'https://api.github.com/repos/technoweenie/duplikate/languages',
  'merges_url': 'https://api.github.com/repos/technoweenie/duplikate/merges',
  'milestones_url': 'https://api.github.com/repos/technoweenie/duplikate/milestones{/number}',
  'name': 'duplikate',
  'notifications_url': 'https://api.github.com/repos/technoweenie/duplikate/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',
   'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',
   'followers_url': 'https://api.github.com/users/technoweenie/followers',
   'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',
   'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/technoweenie',
   'id': 21,
   'login': 'technoweenie',
   'organizations_url': 'https://api.github.com/users/technoweenie/orgs',
   'received_events_url': 'https://api.github.com/users/technoweenie/received_events',
   'repos_url': 'https://api.github.com/users/technoweenie/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/technoweenie'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/technoweenie/duplikate/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/technoweenie/duplikate/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/technoweenie/duplikate/stargazers',
  'statuses_url': 'https://api.github.com/repos/technoweenie/duplikate/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/technoweenie/duplikate/subscribers',
  'subscription_url': 'https://api.github.com/repos/technoweenie/duplikate/subscription',
  'tags_url': 'https://api.github.com/repos/technoweenie/duplikate/tags',
  'teams_url': 'https://api.github.com/repos/technoweenie/duplikate/teams',
  'trees_url': 'https://api.github.com/repos/technoweenie/duplikate/git/trees{/sha}',
  'url': 'https://api.github.com/repos/technoweenie/duplikate'},
 {'archive_url': 'https://api.github.com/repos/jnewland/lazy_record/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/lazy_record/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/lazy_record/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/lazy_record/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/lazy_record/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/lazy_record/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/lazy_record/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/lazy_record/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/lazy_record/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/lazy_record/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/lazy_record/deployments',
  'description': "Proof of concept Lazy-Loading for ActiveRecord. Inspired by the 'kickers' of Ambition.",
  'downloads_url': 'https://api.github.com/repos/jnewland/lazy_record/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/lazy_record/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/lazy_record/forks',
  'full_name': 'jnewland/lazy_record',
  'git_commits_url': 'https://api.github.com/repos/jnewland/lazy_record/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/lazy_record/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/lazy_record/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/lazy_record/hooks',
  'html_url': 'https://github.com/jnewland/lazy_record',
  'id': 118,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/lazy_record/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/lazy_record/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/lazy_record/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/lazy_record/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/lazy_record/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/lazy_record/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/lazy_record/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/lazy_record/milestones{/number}',
  'name': 'lazy_record',
  'notifications_url': 'https://api.github.com/repos/jnewland/lazy_record/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/lazy_record/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/lazy_record/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/lazy_record/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/lazy_record/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/lazy_record/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/lazy_record/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/lazy_record/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/lazy_record/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/lazy_record/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/lazy_record'},
 {'archive_url': 'https://api.github.com/repos/jnewland/gsa-feeds/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/gsa-feeds/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/gsa-feeds/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/gsa-feeds/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/gsa-feeds/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/gsa-feeds/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/gsa-feeds/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/gsa-feeds/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/gsa-feeds/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/gsa-feeds/deployments',
  'description': 'A Ruby wrapper for the Google Search Appliance Feeds Protocol',
  'downloads_url': 'https://api.github.com/repos/jnewland/gsa-feeds/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/gsa-feeds/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/gsa-feeds/forks',
  'full_name': 'jnewland/gsa-feeds',
  'git_commits_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/gsa-feeds/hooks',
  'html_url': 'https://github.com/jnewland/gsa-feeds',
  'id': 119,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/gsa-feeds/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/gsa-feeds/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/gsa-feeds/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/gsa-feeds/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/gsa-feeds/milestones{/number}',
  'name': 'gsa-feeds',
  'notifications_url': 'https://api.github.com/repos/jnewland/gsa-feeds/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/gsa-feeds/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/gsa-feeds/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/gsa-feeds/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/gsa-feeds/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/gsa-feeds/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/gsa-feeds/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/gsa-feeds/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/gsa-feeds/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/gsa-feeds'},
 {'archive_url': 'https://api.github.com/repos/jnewland/votigoto/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/votigoto/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/votigoto/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/votigoto/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/votigoto/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/votigoto/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/votigoto/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/votigoto/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/votigoto/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/votigoto/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/votigoto/deployments',
  'description': 'Ruby API wrapper for the TiVoToGo protocol. Use it to access a list of recorded shows and programs on your Tivo.',
  'downloads_url': 'https://api.github.com/repos/jnewland/votigoto/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/votigoto/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/votigoto/forks',
  'full_name': 'jnewland/votigoto',
  'git_commits_url': 'https://api.github.com/repos/jnewland/votigoto/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/votigoto/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/votigoto/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/votigoto/hooks',
  'html_url': 'https://github.com/jnewland/votigoto',
  'id': 120,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/votigoto/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/votigoto/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/votigoto/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/votigoto/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/votigoto/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/votigoto/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/votigoto/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/votigoto/milestones{/number}',
  'name': 'votigoto',
  'notifications_url': 'https://api.github.com/repos/jnewland/votigoto/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/votigoto/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/votigoto/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/votigoto/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/votigoto/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/votigoto/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/votigoto/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/votigoto/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/votigoto/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/votigoto/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/votigoto'},
 {'archive_url': 'https://api.github.com/repos/defunkt/mofo/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/mofo/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/mofo/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/mofo/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/mofo/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/mofo/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/mofo/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/mofo/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/mofo/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/mofo/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/mofo/deployments',
  'description': 'Mofo was a fast and simple microformat parser, based on a concise DSL and Hpricot. No longer maintained.',
  'downloads_url': 'https://api.github.com/repos/defunkt/mofo/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/mofo/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/mofo/forks',
  'full_name': 'defunkt/mofo',
  'git_commits_url': 'https://api.github.com/repos/defunkt/mofo/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/mofo/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/mofo/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/mofo/hooks',
  'html_url': 'https://github.com/defunkt/mofo',
  'id': 127,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/mofo/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/mofo/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/mofo/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/mofo/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/mofo/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/mofo/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/mofo/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/mofo/milestones{/number}',
  'name': 'mofo',
  'notifications_url': 'https://api.github.com/repos/defunkt/mofo/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/mofo/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/mofo/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/mofo/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/mofo/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/mofo/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/mofo/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/mofo/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/mofo/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/mofo/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/mofo'},
 {'archive_url': 'https://api.github.com/repos/jnewland/xhtmlize/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/xhtmlize/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/xhtmlize/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/xhtmlize/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/xhtmlize/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/xhtmlize/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/xhtmlize/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/xhtmlize/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/xhtmlize/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/xhtmlize/deployments',
  'description': 'Rails helper to XHTML-ize chunks of user submitted HTML. For the standardista in all of us',
  'downloads_url': 'https://api.github.com/repos/jnewland/xhtmlize/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/xhtmlize/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/xhtmlize/forks',
  'full_name': 'jnewland/xhtmlize',
  'git_commits_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/xhtmlize/hooks',
  'html_url': 'https://github.com/jnewland/xhtmlize',
  'id': 129,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/xhtmlize/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/xhtmlize/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/xhtmlize/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/xhtmlize/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/xhtmlize/milestones{/number}',
  'name': 'xhtmlize',
  'notifications_url': 'https://api.github.com/repos/jnewland/xhtmlize/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/xhtmlize/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/xhtmlize/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/xhtmlize/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/xhtmlize/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/xhtmlize/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/xhtmlize/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/xhtmlize/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/xhtmlize/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/xhtmlize'},
 {'archive_url': 'https://api.github.com/repos/schacon/ruby-git/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/schacon/ruby-git/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/schacon/ruby-git/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/schacon/ruby-git/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/schacon/ruby-git/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/schacon/ruby-git/comments{/number}',
  'commits_url': 'https://api.github.com/repos/schacon/ruby-git/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/schacon/ruby-git/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/schacon/ruby-git/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/schacon/ruby-git/contributors',
  'deployments_url': 'https://api.github.com/repos/schacon/ruby-git/deployments',
  'description': 'Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.',
  'downloads_url': 'https://api.github.com/repos/schacon/ruby-git/downloads',
  'events_url': 'https://api.github.com/repos/schacon/ruby-git/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/schacon/ruby-git/forks',
  'full_name': 'schacon/ruby-git',
  'git_commits_url': 'https://api.github.com/repos/schacon/ruby-git/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/schacon/ruby-git/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/schacon/ruby-git/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/schacon/ruby-git/hooks',
  'html_url': 'https://github.com/schacon/ruby-git',
  'id': 130,
  'issue_comment_url': 'https://api.github.com/repos/schacon/ruby-git/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/schacon/ruby-git/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/schacon/ruby-git/issues{/number}',
  'keys_url': 'https://api.github.com/repos/schacon/ruby-git/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/schacon/ruby-git/labels{/name}',
  'languages_url': 'https://api.github.com/repos/schacon/ruby-git/languages',
  'merges_url': 'https://api.github.com/repos/schacon/ruby-git/merges',
  'milestones_url': 'https://api.github.com/repos/schacon/ruby-git/milestones{/number}',
  'name': 'ruby-git',
  'notifications_url': 'https://api.github.com/repos/schacon/ruby-git/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/70?v=4',
   'events_url': 'https://api.github.com/users/schacon/events{/privacy}',
   'followers_url': 'https://api.github.com/users/schacon/followers',
   'following_url': 'https://api.github.com/users/schacon/following{/other_user}',
   'gists_url': 'https://api.github.com/users/schacon/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/schacon',
   'id': 70,
   'login': 'schacon',
   'organizations_url': 'https://api.github.com/users/schacon/orgs',
   'received_events_url': 'https://api.github.com/users/schacon/received_events',
   'repos_url': 'https://api.github.com/users/schacon/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/schacon/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/schacon/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/schacon'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/schacon/ruby-git/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/schacon/ruby-git/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/schacon/ruby-git/stargazers',
  'statuses_url': 'https://api.github.com/repos/schacon/ruby-git/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/schacon/ruby-git/subscribers',
  'subscription_url': 'https://api.github.com/repos/schacon/ruby-git/subscription',
  'tags_url': 'https://api.github.com/repos/schacon/ruby-git/tags',
  'teams_url': 'https://api.github.com/repos/schacon/ruby-git/teams',
  'trees_url': 'https://api.github.com/repos/schacon/ruby-git/git/trees{/sha}',
  'url': 'https://api.github.com/repos/schacon/ruby-git'},
 {'archive_url': 'https://api.github.com/repos/ezmobius/bmhsearch/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/ezmobius/bmhsearch/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/ezmobius/bmhsearch/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/ezmobius/bmhsearch/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/ezmobius/bmhsearch/comments{/number}',
  'commits_url': 'https://api.github.com/repos/ezmobius/bmhsearch/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/ezmobius/bmhsearch/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/ezmobius/bmhsearch/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/ezmobius/bmhsearch/contributors',
  'deployments_url': 'https://api.github.com/repos/ezmobius/bmhsearch/deployments',
  'description': 'Fast string searcher, useful for multi-part post parsing',
  'downloads_url': 'https://api.github.com/repos/ezmobius/bmhsearch/downloads',
  'events_url': 'https://api.github.com/repos/ezmobius/bmhsearch/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/ezmobius/bmhsearch/forks',
  'full_name': 'ezmobius/bmhsearch',
  'git_commits_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/ezmobius/bmhsearch/hooks',
  'html_url': 'https://github.com/ezmobius/bmhsearch',
  'id': 131,
  'issue_comment_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues{/number}',
  'keys_url': 'https://api.github.com/repos/ezmobius/bmhsearch/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/ezmobius/bmhsearch/labels{/name}',
  'languages_url': 'https://api.github.com/repos/ezmobius/bmhsearch/languages',
  'merges_url': 'https://api.github.com/repos/ezmobius/bmhsearch/merges',
  'milestones_url': 'https://api.github.com/repos/ezmobius/bmhsearch/milestones{/number}',
  'name': 'bmhsearch',
  'notifications_url': 'https://api.github.com/repos/ezmobius/bmhsearch/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/5?v=4',
   'events_url': 'https://api.github.com/users/ezmobius/events{/privacy}',
   'followers_url': 'https://api.github.com/users/ezmobius/followers',
   'following_url': 'https://api.github.com/users/ezmobius/following{/other_user}',
   'gists_url': 'https://api.github.com/users/ezmobius/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/ezmobius',
   'id': 5,
   'login': 'ezmobius',
   'organizations_url': 'https://api.github.com/users/ezmobius/orgs',
   'received_events_url': 'https://api.github.com/users/ezmobius/received_events',
   'repos_url': 'https://api.github.com/users/ezmobius/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/ezmobius/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/ezmobius/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/ezmobius'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/ezmobius/bmhsearch/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/ezmobius/bmhsearch/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/ezmobius/bmhsearch/stargazers',
  'statuses_url': 'https://api.github.com/repos/ezmobius/bmhsearch/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/ezmobius/bmhsearch/subscribers',
  'subscription_url': 'https://api.github.com/repos/ezmobius/bmhsearch/subscription',
  'tags_url': 'https://api.github.com/repos/ezmobius/bmhsearch/tags',
  'teams_url': 'https://api.github.com/repos/ezmobius/bmhsearch/teams',
  'trees_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/trees{/sha}',
  'url': 'https://api.github.com/repos/ezmobius/bmhsearch'},
 {'archive_url': 'https://api.github.com/repos/uggedal/mofo/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/uggedal/mofo/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/uggedal/mofo/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/uggedal/mofo/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/uggedal/mofo/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/uggedal/mofo/comments{/number}',
  'commits_url': 'https://api.github.com/repos/uggedal/mofo/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/uggedal/mofo/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/uggedal/mofo/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/uggedal/mofo/contributors',
  'deployments_url': 'https://api.github.com/repos/uggedal/mofo/deployments',
  'description': 'Mofo is a fast and simple microformat parser, based on a concise DSL and Hpricot.',
  'downloads_url': 'https://api.github.com/repos/uggedal/mofo/downloads',
  'events_url': 'https://api.github.com/repos/uggedal/mofo/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/uggedal/mofo/forks',
  'full_name': 'uggedal/mofo',
  'git_commits_url': 'https://api.github.com/repos/uggedal/mofo/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/uggedal/mofo/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/uggedal/mofo/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/uggedal/mofo/hooks',
  'html_url': 'https://github.com/uggedal/mofo',
  'id': 137,
  'issue_comment_url': 'https://api.github.com/repos/uggedal/mofo/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/uggedal/mofo/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/uggedal/mofo/issues{/number}',
  'keys_url': 'https://api.github.com/repos/uggedal/mofo/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/uggedal/mofo/labels{/name}',
  'languages_url': 'https://api.github.com/repos/uggedal/mofo/languages',
  'merges_url': 'https://api.github.com/repos/uggedal/mofo/merges',
  'milestones_url': 'https://api.github.com/repos/uggedal/mofo/milestones{/number}',
  'name': 'mofo',
  'notifications_url': 'https://api.github.com/repos/uggedal/mofo/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/71?v=4',
   'events_url': 'https://api.github.com/users/uggedal/events{/privacy}',
   'followers_url': 'https://api.github.com/users/uggedal/followers',
   'following_url': 'https://api.github.com/users/uggedal/following{/other_user}',
   'gists_url': 'https://api.github.com/users/uggedal/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/uggedal',
   'id': 71,
   'login': 'uggedal',
   'organizations_url': 'https://api.github.com/users/uggedal/orgs',
   'received_events_url': 'https://api.github.com/users/uggedal/received_events',
   'repos_url': 'https://api.github.com/users/uggedal/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/uggedal/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/uggedal/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/uggedal'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/uggedal/mofo/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/uggedal/mofo/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/uggedal/mofo/stargazers',
  'statuses_url': 'https://api.github.com/repos/uggedal/mofo/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/uggedal/mofo/subscribers',
  'subscription_url': 'https://api.github.com/repos/uggedal/mofo/subscription',
  'tags_url': 'https://api.github.com/repos/uggedal/mofo/tags',
  'teams_url': 'https://api.github.com/repos/uggedal/mofo/teams',
  'trees_url': 'https://api.github.com/repos/uggedal/mofo/git/trees{/sha}',
  'url': 'https://api.github.com/repos/uggedal/mofo'},
 {'archive_url': 'https://api.github.com/repos/mmower/simply_versioned/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mmower/simply_versioned/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mmower/simply_versioned/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mmower/simply_versioned/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mmower/simply_versioned/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mmower/simply_versioned/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mmower/simply_versioned/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mmower/simply_versioned/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mmower/simply_versioned/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mmower/simply_versioned/contributors',
  'deployments_url': 'https://api.github.com/repos/mmower/simply_versioned/deployments',
  'description': 'A simple, non-invasive, approach to versioning ActiveRecord models',
  'downloads_url': 'https://api.github.com/repos/mmower/simply_versioned/downloads',
  'events_url': 'https://api.github.com/repos/mmower/simply_versioned/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mmower/simply_versioned/forks',
  'full_name': 'mmower/simply_versioned',
  'git_commits_url': 'https://api.github.com/repos/mmower/simply_versioned/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mmower/simply_versioned/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mmower/simply_versioned/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mmower/simply_versioned/hooks',
  'html_url': 'https://github.com/mmower/simply_versioned',
  'id': 139,
  'issue_comment_url': 'https://api.github.com/repos/mmower/simply_versioned/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mmower/simply_versioned/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mmower/simply_versioned/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mmower/simply_versioned/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mmower/simply_versioned/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mmower/simply_versioned/languages',
  'merges_url': 'https://api.github.com/repos/mmower/simply_versioned/merges',
  'milestones_url': 'https://api.github.com/repos/mmower/simply_versioned/milestones{/number}',
  'name': 'simply_versioned',
  'notifications_url': 'https://api.github.com/repos/mmower/simply_versioned/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/74?v=4',
   'events_url': 'https://api.github.com/users/mmower/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mmower/followers',
   'following_url': 'https://api.github.com/users/mmower/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mmower/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mmower',
   'id': 74,
   'login': 'mmower',
   'organizations_url': 'https://api.github.com/users/mmower/orgs',
   'received_events_url': 'https://api.github.com/users/mmower/received_events',
   'repos_url': 'https://api.github.com/users/mmower/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mmower/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mmower/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mmower'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mmower/simply_versioned/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mmower/simply_versioned/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mmower/simply_versioned/stargazers',
  'statuses_url': 'https://api.github.com/repos/mmower/simply_versioned/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mmower/simply_versioned/subscribers',
  'subscription_url': 'https://api.github.com/repos/mmower/simply_versioned/subscription',
  'tags_url': 'https://api.github.com/repos/mmower/simply_versioned/tags',
  'teams_url': 'https://api.github.com/repos/mmower/simply_versioned/teams',
  'trees_url': 'https://api.github.com/repos/mmower/simply_versioned/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mmower/simply_versioned'},
 {'archive_url': 'https://api.github.com/repos/abhay/gchart/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/abhay/gchart/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/abhay/gchart/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/abhay/gchart/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/abhay/gchart/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/abhay/gchart/comments{/number}',
  'commits_url': 'https://api.github.com/repos/abhay/gchart/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/abhay/gchart/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/abhay/gchart/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/abhay/gchart/contributors',
  'deployments_url': 'https://api.github.com/repos/abhay/gchart/deployments',
  'description': 'GChart exposes the Google Chart API (http://code.google.com/apis/chart) via a friendly Ruby interface. It can generate the URL for a given chart (for webpage use), or download the generated PNG (for offline use).',
  'downloads_url': 'https://api.github.com/repos/abhay/gchart/downloads',
  'events_url': 'https://api.github.com/repos/abhay/gchart/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/abhay/gchart/forks',
  'full_name': 'abhay/gchart',
  'git_commits_url': 'https://api.github.com/repos/abhay/gchart/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/abhay/gchart/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/abhay/gchart/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/abhay/gchart/hooks',
  'html_url': 'https://github.com/abhay/gchart',
  'id': 140,
  'issue_comment_url': 'https://api.github.com/repos/abhay/gchart/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/abhay/gchart/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/abhay/gchart/issues{/number}',
  'keys_url': 'https://api.github.com/repos/abhay/gchart/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/abhay/gchart/labels{/name}',
  'languages_url': 'https://api.github.com/repos/abhay/gchart/languages',
  'merges_url': 'https://api.github.com/repos/abhay/gchart/merges',
  'milestones_url': 'https://api.github.com/repos/abhay/gchart/milestones{/number}',
  'name': 'gchart',
  'notifications_url': 'https://api.github.com/repos/abhay/gchart/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/75?v=4',
   'events_url': 'https://api.github.com/users/abhay/events{/privacy}',
   'followers_url': 'https://api.github.com/users/abhay/followers',
   'following_url': 'https://api.github.com/users/abhay/following{/other_user}',
   'gists_url': 'https://api.github.com/users/abhay/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/abhay',
   'id': 75,
   'login': 'abhay',
   'organizations_url': 'https://api.github.com/users/abhay/orgs',
   'received_events_url': 'https://api.github.com/users/abhay/received_events',
   'repos_url': 'https://api.github.com/users/abhay/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/abhay/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/abhay/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/abhay'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/abhay/gchart/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/abhay/gchart/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/abhay/gchart/stargazers',
  'statuses_url': 'https://api.github.com/repos/abhay/gchart/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/abhay/gchart/subscribers',
  'subscription_url': 'https://api.github.com/repos/abhay/gchart/subscription',
  'tags_url': 'https://api.github.com/repos/abhay/gchart/tags',
  'teams_url': 'https://api.github.com/repos/abhay/gchart/teams',
  'trees_url': 'https://api.github.com/repos/abhay/gchart/git/trees{/sha}',
  'url': 'https://api.github.com/repos/abhay/gchart'},
 {'archive_url': 'https://api.github.com/repos/benburkert/schemr/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/benburkert/schemr/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/benburkert/schemr/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/benburkert/schemr/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/benburkert/schemr/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/benburkert/schemr/comments{/number}',
  'commits_url': 'https://api.github.com/repos/benburkert/schemr/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/benburkert/schemr/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/benburkert/schemr/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/benburkert/schemr/contributors',
  'deployments_url': 'https://api.github.com/repos/benburkert/schemr/deployments',
  'description': 'A DSL for creating schema documents in ruby',
  'downloads_url': 'https://api.github.com/repos/benburkert/schemr/downloads',
  'events_url': 'https://api.github.com/repos/benburkert/schemr/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/benburkert/schemr/forks',
  'full_name': 'benburkert/schemr',
  'git_commits_url': 'https://api.github.com/repos/benburkert/schemr/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/benburkert/schemr/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/benburkert/schemr/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/benburkert/schemr/hooks',
  'html_url': 'https://github.com/benburkert/schemr',
  'id': 141,
  'issue_comment_url': 'https://api.github.com/repos/benburkert/schemr/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/benburkert/schemr/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/benburkert/schemr/issues{/number}',
  'keys_url': 'https://api.github.com/repos/benburkert/schemr/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/benburkert/schemr/labels{/name}',
  'languages_url': 'https://api.github.com/repos/benburkert/schemr/languages',
  'merges_url': 'https://api.github.com/repos/benburkert/schemr/merges',
  'milestones_url': 'https://api.github.com/repos/benburkert/schemr/milestones{/number}',
  'name': 'schemr',
  'notifications_url': 'https://api.github.com/repos/benburkert/schemr/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/77?v=4',
   'events_url': 'https://api.github.com/users/benburkert/events{/privacy}',
   'followers_url': 'https://api.github.com/users/benburkert/followers',
   'following_url': 'https://api.github.com/users/benburkert/following{/other_user}',
   'gists_url': 'https://api.github.com/users/benburkert/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/benburkert',
   'id': 77,
   'login': 'benburkert',
   'organizations_url': 'https://api.github.com/users/benburkert/orgs',
   'received_events_url': 'https://api.github.com/users/benburkert/received_events',
   'repos_url': 'https://api.github.com/users/benburkert/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/benburkert/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/benburkert/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/benburkert'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/benburkert/schemr/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/benburkert/schemr/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/benburkert/schemr/stargazers',
  'statuses_url': 'https://api.github.com/repos/benburkert/schemr/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/benburkert/schemr/subscribers',
  'subscription_url': 'https://api.github.com/repos/benburkert/schemr/subscription',
  'tags_url': 'https://api.github.com/repos/benburkert/schemr/tags',
  'teams_url': 'https://api.github.com/repos/benburkert/schemr/teams',
  'trees_url': 'https://api.github.com/repos/benburkert/schemr/git/trees{/sha}',
  'url': 'https://api.github.com/repos/benburkert/schemr'},
 {'archive_url': 'https://api.github.com/repos/abhay/calais/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/abhay/calais/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/abhay/calais/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/abhay/calais/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/abhay/calais/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/abhay/calais/comments{/number}',
  'commits_url': 'https://api.github.com/repos/abhay/calais/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/abhay/calais/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/abhay/calais/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/abhay/calais/contributors',
  'deployments_url': 'https://api.github.com/repos/abhay/calais/deployments',
  'description': 'A Ruby interface to the Open Calais API (http://opencalais.com)',
  'downloads_url': 'https://api.github.com/repos/abhay/calais/downloads',
  'events_url': 'https://api.github.com/repos/abhay/calais/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/abhay/calais/forks',
  'full_name': 'abhay/calais',
  'git_commits_url': 'https://api.github.com/repos/abhay/calais/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/abhay/calais/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/abhay/calais/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/abhay/calais/hooks',
  'html_url': 'https://github.com/abhay/calais',
  'id': 142,
  'issue_comment_url': 'https://api.github.com/repos/abhay/calais/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/abhay/calais/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/abhay/calais/issues{/number}',
  'keys_url': 'https://api.github.com/repos/abhay/calais/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/abhay/calais/labels{/name}',
  'languages_url': 'https://api.github.com/repos/abhay/calais/languages',
  'merges_url': 'https://api.github.com/repos/abhay/calais/merges',
  'milestones_url': 'https://api.github.com/repos/abhay/calais/milestones{/number}',
  'name': 'calais',
  'notifications_url': 'https://api.github.com/repos/abhay/calais/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/75?v=4',
   'events_url': 'https://api.github.com/users/abhay/events{/privacy}',
   'followers_url': 'https://api.github.com/users/abhay/followers',
   'following_url': 'https://api.github.com/users/abhay/following{/other_user}',
   'gists_url': 'https://api.github.com/users/abhay/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/abhay',
   'id': 75,
   'login': 'abhay',
   'organizations_url': 'https://api.github.com/users/abhay/orgs',
   'received_events_url': 'https://api.github.com/users/abhay/received_events',
   'repos_url': 'https://api.github.com/users/abhay/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/abhay/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/abhay/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/abhay'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/abhay/calais/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/abhay/calais/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/abhay/calais/stargazers',
  'statuses_url': 'https://api.github.com/repos/abhay/calais/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/abhay/calais/subscribers',
  'subscription_url': 'https://api.github.com/repos/abhay/calais/subscription',
  'tags_url': 'https://api.github.com/repos/abhay/calais/tags',
  'teams_url': 'https://api.github.com/repos/abhay/calais/teams',
  'trees_url': 'https://api.github.com/repos/abhay/calais/git/trees{/sha}',
  'url': 'https://api.github.com/repos/abhay/calais'},
 {'archive_url': 'https://api.github.com/repos/mojombo/chronic/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mojombo/chronic/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mojombo/chronic/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mojombo/chronic/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mojombo/chronic/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mojombo/chronic/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mojombo/chronic/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mojombo/chronic/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mojombo/chronic/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mojombo/chronic/contributors',
  'deployments_url': 'https://api.github.com/repos/mojombo/chronic/deployments',
  'description': 'Chronic is a pure Ruby natural language date parser.',
  'downloads_url': 'https://api.github.com/repos/mojombo/chronic/downloads',
  'events_url': 'https://api.github.com/repos/mojombo/chronic/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mojombo/chronic/forks',
  'full_name': 'mojombo/chronic',
  'git_commits_url': 'https://api.github.com/repos/mojombo/chronic/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mojombo/chronic/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mojombo/chronic/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mojombo/chronic/hooks',
  'html_url': 'https://github.com/mojombo/chronic',
  'id': 144,
  'issue_comment_url': 'https://api.github.com/repos/mojombo/chronic/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mojombo/chronic/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mojombo/chronic/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mojombo/chronic/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mojombo/chronic/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mojombo/chronic/languages',
  'merges_url': 'https://api.github.com/repos/mojombo/chronic/merges',
  'milestones_url': 'https://api.github.com/repos/mojombo/chronic/milestones{/number}',
  'name': 'chronic',
  'notifications_url': 'https://api.github.com/repos/mojombo/chronic/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
   'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mojombo/followers',
   'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mojombo',
   'id': 1,
   'login': 'mojombo',
   'organizations_url': 'https://api.github.com/users/mojombo/orgs',
   'received_events_url': 'https://api.github.com/users/mojombo/received_events',
   'repos_url': 'https://api.github.com/users/mojombo/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mojombo'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mojombo/chronic/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mojombo/chronic/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mojombo/chronic/stargazers',
  'statuses_url': 'https://api.github.com/repos/mojombo/chronic/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mojombo/chronic/subscribers',
  'subscription_url': 'https://api.github.com/repos/mojombo/chronic/subscription',
  'tags_url': 'https://api.github.com/repos/mojombo/chronic/tags',
  'teams_url': 'https://api.github.com/repos/mojombo/chronic/teams',
  'trees_url': 'https://api.github.com/repos/mojombo/chronic/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mojombo/chronic'},
 {'archive_url': 'https://api.github.com/repos/sr/git-wiki/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/sr/git-wiki/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/sr/git-wiki/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/sr/git-wiki/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/sr/git-wiki/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/sr/git-wiki/comments{/number}',
  'commits_url': 'https://api.github.com/repos/sr/git-wiki/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/sr/git-wiki/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/sr/git-wiki/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/sr/git-wiki/contributors',
  'deployments_url': 'https://api.github.com/repos/sr/git-wiki/deployments',
  'description': 'A quick & dirty git-powered Sinatra wiki',
  'downloads_url': 'https://api.github.com/repos/sr/git-wiki/downloads',
  'events_url': 'https://api.github.com/repos/sr/git-wiki/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/sr/git-wiki/forks',
  'full_name': 'sr/git-wiki',
  'git_commits_url': 'https://api.github.com/repos/sr/git-wiki/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/sr/git-wiki/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/sr/git-wiki/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/sr/git-wiki/hooks',
  'html_url': 'https://github.com/sr/git-wiki',
  'id': 165,
  'issue_comment_url': 'https://api.github.com/repos/sr/git-wiki/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/sr/git-wiki/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/sr/git-wiki/issues{/number}',
  'keys_url': 'https://api.github.com/repos/sr/git-wiki/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/sr/git-wiki/labels{/name}',
  'languages_url': 'https://api.github.com/repos/sr/git-wiki/languages',
  'merges_url': 'https://api.github.com/repos/sr/git-wiki/merges',
  'milestones_url': 'https://api.github.com/repos/sr/git-wiki/milestones{/number}',
  'name': 'git-wiki',
  'notifications_url': 'https://api.github.com/repos/sr/git-wiki/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',
   'events_url': 'https://api.github.com/users/sr/events{/privacy}',
   'followers_url': 'https://api.github.com/users/sr/followers',
   'following_url': 'https://api.github.com/users/sr/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/sr',
   'id': 90,
   'login': 'sr',
   'organizations_url': 'https://api.github.com/users/sr/orgs',
   'received_events_url': 'https://api.github.com/users/sr/received_events',
   'repos_url': 'https://api.github.com/users/sr/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/sr'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/sr/git-wiki/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/sr/git-wiki/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/sr/git-wiki/stargazers',
  'statuses_url': 'https://api.github.com/repos/sr/git-wiki/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/sr/git-wiki/subscribers',
  'subscription_url': 'https://api.github.com/repos/sr/git-wiki/subscription',
  'tags_url': 'https://api.github.com/repos/sr/git-wiki/tags',
  'teams_url': 'https://api.github.com/repos/sr/git-wiki/teams',
  'trees_url': 'https://api.github.com/repos/sr/git-wiki/git/trees{/sha}',
  'url': 'https://api.github.com/repos/sr/git-wiki'},
 {'archive_url': 'https://api.github.com/repos/queso/signal-wiki/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/queso/signal-wiki/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/queso/signal-wiki/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/queso/signal-wiki/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/queso/signal-wiki/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/queso/signal-wiki/comments{/number}',
  'commits_url': 'https://api.github.com/repos/queso/signal-wiki/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/queso/signal-wiki/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/queso/signal-wiki/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/queso/signal-wiki/contributors',
  'deployments_url': 'https://api.github.com/repos/queso/signal-wiki/deployments',
  'description': 'The easy to use rails wiki',
  'downloads_url': 'https://api.github.com/repos/queso/signal-wiki/downloads',
  'events_url': 'https://api.github.com/repos/queso/signal-wiki/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/queso/signal-wiki/forks',
  'full_name': 'queso/signal-wiki',
  'git_commits_url': 'https://api.github.com/repos/queso/signal-wiki/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/queso/signal-wiki/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/queso/signal-wiki/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/queso/signal-wiki/hooks',
  'html_url': 'https://github.com/queso/signal-wiki',
  'id': 177,
  'issue_comment_url': 'https://api.github.com/repos/queso/signal-wiki/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/queso/signal-wiki/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/queso/signal-wiki/issues{/number}',
  'keys_url': 'https://api.github.com/repos/queso/signal-wiki/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/queso/signal-wiki/labels{/name}',
  'languages_url': 'https://api.github.com/repos/queso/signal-wiki/languages',
  'merges_url': 'https://api.github.com/repos/queso/signal-wiki/merges',
  'milestones_url': 'https://api.github.com/repos/queso/signal-wiki/milestones{/number}',
  'name': 'signal-wiki',
  'notifications_url': 'https://api.github.com/repos/queso/signal-wiki/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/106?v=4',
   'events_url': 'https://api.github.com/users/queso/events{/privacy}',
   'followers_url': 'https://api.github.com/users/queso/followers',
   'following_url': 'https://api.github.com/users/queso/following{/other_user}',
   'gists_url': 'https://api.github.com/users/queso/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/queso',
   'id': 106,
   'login': 'queso',
   'organizations_url': 'https://api.github.com/users/queso/orgs',
   'received_events_url': 'https://api.github.com/users/queso/received_events',
   'repos_url': 'https://api.github.com/users/queso/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/queso/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/queso/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/queso'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/queso/signal-wiki/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/queso/signal-wiki/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/queso/signal-wiki/stargazers',
  'statuses_url': 'https://api.github.com/repos/queso/signal-wiki/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/queso/signal-wiki/subscribers',
  'subscription_url': 'https://api.github.com/repos/queso/signal-wiki/subscription',
  'tags_url': 'https://api.github.com/repos/queso/signal-wiki/tags',
  'teams_url': 'https://api.github.com/repos/queso/signal-wiki/teams',
  'trees_url': 'https://api.github.com/repos/queso/signal-wiki/git/trees{/sha}',
  'url': 'https://api.github.com/repos/queso/signal-wiki'},
 {'archive_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/comments{/number}',
  'commits_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contributors',
  'deployments_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/deployments',
  'description': 'Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]',
  'downloads_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/downloads',
  'events_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/forks',
  'full_name': 'drnic/ruby-on-rails-tmbundle',
  'git_commits_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/hooks',
  'html_url': 'https://github.com/drnic/ruby-on-rails-tmbundle',
  'id': 179,
  'issue_comment_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues{/number}',
  'keys_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/labels{/name}',
  'languages_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/languages',
  'merges_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/merges',
  'milestones_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/milestones{/number}',
  'name': 'ruby-on-rails-tmbundle',
  'notifications_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/108?v=4',
   'events_url': 'https://api.github.com/users/drnic/events{/privacy}',
   'followers_url': 'https://api.github.com/users/drnic/followers',
   'following_url': 'https://api.github.com/users/drnic/following{/other_user}',
   'gists_url': 'https://api.github.com/users/drnic/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/drnic',
   'id': 108,
   'login': 'drnic',
   'organizations_url': 'https://api.github.com/users/drnic/orgs',
   'received_events_url': 'https://api.github.com/users/drnic/received_events',
   'repos_url': 'https://api.github.com/users/drnic/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/drnic/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/drnic/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/drnic'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/stargazers',
  'statuses_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscribers',
  'subscription_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscription',
  'tags_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/tags',
  'teams_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/teams',
  'trees_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/trees{/sha}',
  'url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle'},
 {'archive_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/comments{/number}',
  'commits_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contributors',
  'deployments_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/deployments',
  'description': 'A jQuery plugin version of the Low Pro behavior framework.',
  'downloads_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/downloads',
  'events_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/forks',
  'full_name': 'danwrong/low-pro-for-jquery',
  'git_commits_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/hooks',
  'html_url': 'https://github.com/danwrong/low-pro-for-jquery',
  'id': 185,
  'issue_comment_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues{/number}',
  'keys_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/labels{/name}',
  'languages_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/languages',
  'merges_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/merges',
  'milestones_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/milestones{/number}',
  'name': 'low-pro-for-jquery',
  'notifications_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/110?v=4',
   'events_url': 'https://api.github.com/users/danwrong/events{/privacy}',
   'followers_url': 'https://api.github.com/users/danwrong/followers',
   'following_url': 'https://api.github.com/users/danwrong/following{/other_user}',
   'gists_url': 'https://api.github.com/users/danwrong/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/danwrong',
   'id': 110,
   'login': 'danwrong',
   'organizations_url': 'https://api.github.com/users/danwrong/orgs',
   'received_events_url': 'https://api.github.com/users/danwrong/received_events',
   'repos_url': 'https://api.github.com/users/danwrong/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/danwrong/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/danwrong/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/danwrong'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/stargazers',
  'statuses_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscribers',
  'subscription_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscription',
  'tags_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/tags',
  'teams_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/teams',
  'trees_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/trees{/sha}',
  'url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/merb-core/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/merb-core/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/merb-core/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merb-core/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/merb-core/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/merb-core/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/merb-core/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/merb-core/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/merb-core/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/merb-core/deployments',
  'description': "Merb Core: All you need. None you don't.",
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/merb-core/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/merb-core/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/merb-core/forks',
  'full_name': 'wayneeseguin/merb-core',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/merb-core/hooks',
  'html_url': 'https://github.com/wayneeseguin/merb-core',
  'id': 186,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/merb-core/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/merb-core/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/merb-core/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/merb-core/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/merb-core/milestones{/number}',
  'name': 'merb-core',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/merb-core/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/merb-core/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/merb-core/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merb-core/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/merb-core/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merb-core/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/merb-core/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/merb-core/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/merb-core/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/merb-core'},
 {'archive_url': 'https://api.github.com/repos/sr/dst/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/sr/dst/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/sr/dst/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/sr/dst/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/sr/dst/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/sr/dst/comments{/number}',
  'commits_url': 'https://api.github.com/repos/sr/dst/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/sr/dst/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/sr/dst/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/sr/dst/contributors',
  'deployments_url': 'https://api.github.com/repos/sr/dst/deployments',
  'description': 'todo-list manager I wrote back in 2008 with the help of Gregory Brown in order to learn Ruby and TDD',
  'downloads_url': 'https://api.github.com/repos/sr/dst/downloads',
  'events_url': 'https://api.github.com/repos/sr/dst/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/sr/dst/forks',
  'full_name': 'sr/dst',
  'git_commits_url': 'https://api.github.com/repos/sr/dst/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/sr/dst/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/sr/dst/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/sr/dst/hooks',
  'html_url': 'https://github.com/sr/dst',
  'id': 190,
  'issue_comment_url': 'https://api.github.com/repos/sr/dst/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/sr/dst/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/sr/dst/issues{/number}',
  'keys_url': 'https://api.github.com/repos/sr/dst/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/sr/dst/labels{/name}',
  'languages_url': 'https://api.github.com/repos/sr/dst/languages',
  'merges_url': 'https://api.github.com/repos/sr/dst/merges',
  'milestones_url': 'https://api.github.com/repos/sr/dst/milestones{/number}',
  'name': 'dst',
  'notifications_url': 'https://api.github.com/repos/sr/dst/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',
   'events_url': 'https://api.github.com/users/sr/events{/privacy}',
   'followers_url': 'https://api.github.com/users/sr/followers',
   'following_url': 'https://api.github.com/users/sr/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/sr',
   'id': 90,
   'login': 'sr',
   'organizations_url': 'https://api.github.com/users/sr/orgs',
   'received_events_url': 'https://api.github.com/users/sr/received_events',
   'repos_url': 'https://api.github.com/users/sr/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/sr'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/sr/dst/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/sr/dst/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/sr/dst/stargazers',
  'statuses_url': 'https://api.github.com/repos/sr/dst/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/sr/dst/subscribers',
  'subscription_url': 'https://api.github.com/repos/sr/dst/subscription',
  'tags_url': 'https://api.github.com/repos/sr/dst/tags',
  'teams_url': 'https://api.github.com/repos/sr/dst/teams',
  'trees_url': 'https://api.github.com/repos/sr/dst/git/trees{/sha}',
  'url': 'https://api.github.com/repos/sr/dst'},
 {'archive_url': 'https://api.github.com/repos/mojombo/yaws/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mojombo/yaws/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mojombo/yaws/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mojombo/yaws/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mojombo/yaws/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mojombo/yaws/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mojombo/yaws/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mojombo/yaws/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mojombo/yaws/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mojombo/yaws/contributors',
  'deployments_url': 'https://api.github.com/repos/mojombo/yaws/deployments',
  'description': 'YAWS is an erlang web server',
  'downloads_url': 'https://api.github.com/repos/mojombo/yaws/downloads',
  'events_url': 'https://api.github.com/repos/mojombo/yaws/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/mojombo/yaws/forks',
  'full_name': 'mojombo/yaws',
  'git_commits_url': 'https://api.github.com/repos/mojombo/yaws/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mojombo/yaws/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mojombo/yaws/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mojombo/yaws/hooks',
  'html_url': 'https://github.com/mojombo/yaws',
  'id': 191,
  'issue_comment_url': 'https://api.github.com/repos/mojombo/yaws/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mojombo/yaws/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mojombo/yaws/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mojombo/yaws/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mojombo/yaws/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mojombo/yaws/languages',
  'merges_url': 'https://api.github.com/repos/mojombo/yaws/merges',
  'milestones_url': 'https://api.github.com/repos/mojombo/yaws/milestones{/number}',
  'name': 'yaws',
  'notifications_url': 'https://api.github.com/repos/mojombo/yaws/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
   'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mojombo/followers',
   'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mojombo',
   'id': 1,
   'login': 'mojombo',
   'organizations_url': 'https://api.github.com/users/mojombo/orgs',
   'received_events_url': 'https://api.github.com/users/mojombo/received_events',
   'repos_url': 'https://api.github.com/users/mojombo/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mojombo'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mojombo/yaws/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mojombo/yaws/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mojombo/yaws/stargazers',
  'statuses_url': 'https://api.github.com/repos/mojombo/yaws/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mojombo/yaws/subscribers',
  'subscription_url': 'https://api.github.com/repos/mojombo/yaws/subscription',
  'tags_url': 'https://api.github.com/repos/mojombo/yaws/tags',
  'teams_url': 'https://api.github.com/repos/mojombo/yaws/teams',
  'trees_url': 'https://api.github.com/repos/mojombo/yaws/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mojombo/yaws'},
 {'archive_url': 'https://api.github.com/repos/KirinDave/yaws/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/KirinDave/yaws/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/KirinDave/yaws/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/KirinDave/yaws/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/KirinDave/yaws/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/KirinDave/yaws/comments{/number}',
  'commits_url': 'https://api.github.com/repos/KirinDave/yaws/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/KirinDave/yaws/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/KirinDave/yaws/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/KirinDave/yaws/contributors',
  'deployments_url': 'https://api.github.com/repos/KirinDave/yaws/deployments',
  'description': 'YAWS is an erlang web server',
  'downloads_url': 'https://api.github.com/repos/KirinDave/yaws/downloads',
  'events_url': 'https://api.github.com/repos/KirinDave/yaws/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/KirinDave/yaws/forks',
  'full_name': 'KirinDave/yaws',
  'git_commits_url': 'https://api.github.com/repos/KirinDave/yaws/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/KirinDave/yaws/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/KirinDave/yaws/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/KirinDave/yaws/hooks',
  'html_url': 'https://github.com/KirinDave/yaws',
  'id': 192,
  'issue_comment_url': 'https://api.github.com/repos/KirinDave/yaws/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/KirinDave/yaws/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/KirinDave/yaws/issues{/number}',
  'keys_url': 'https://api.github.com/repos/KirinDave/yaws/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/KirinDave/yaws/labels{/name}',
  'languages_url': 'https://api.github.com/repos/KirinDave/yaws/languages',
  'merges_url': 'https://api.github.com/repos/KirinDave/yaws/merges',
  'milestones_url': 'https://api.github.com/repos/KirinDave/yaws/milestones{/number}',
  'name': 'yaws',
  'notifications_url': 'https://api.github.com/repos/KirinDave/yaws/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/36?v=4',
   'events_url': 'https://api.github.com/users/KirinDave/events{/privacy}',
   'followers_url': 'https://api.github.com/users/KirinDave/followers',
   'following_url': 'https://api.github.com/users/KirinDave/following{/other_user}',
   'gists_url': 'https://api.github.com/users/KirinDave/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/KirinDave',
   'id': 36,
   'login': 'KirinDave',
   'organizations_url': 'https://api.github.com/users/KirinDave/orgs',
   'received_events_url': 'https://api.github.com/users/KirinDave/received_events',
   'repos_url': 'https://api.github.com/users/KirinDave/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/KirinDave/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/KirinDave'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/KirinDave/yaws/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/KirinDave/yaws/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/KirinDave/yaws/stargazers',
  'statuses_url': 'https://api.github.com/repos/KirinDave/yaws/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/KirinDave/yaws/subscribers',
  'subscription_url': 'https://api.github.com/repos/KirinDave/yaws/subscription',
  'tags_url': 'https://api.github.com/repos/KirinDave/yaws/tags',
  'teams_url': 'https://api.github.com/repos/KirinDave/yaws/teams',
  'trees_url': 'https://api.github.com/repos/KirinDave/yaws/git/trees{/sha}',
  'url': 'https://api.github.com/repos/KirinDave/yaws'},
 {'archive_url': 'https://api.github.com/repos/sr/tasks/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/sr/tasks/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/sr/tasks/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/sr/tasks/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/sr/tasks/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/sr/tasks/comments{/number}',
  'commits_url': 'https://api.github.com/repos/sr/tasks/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/sr/tasks/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/sr/tasks/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/sr/tasks/contributors',
  'deployments_url': 'https://api.github.com/repos/sr/tasks/deployments',
  'description': 'Some more or less useful rake tasks. Includes tasks to work with git-cvs, convert an Atom collection to a blog, post to an AtomPub server and more.',
  'downloads_url': 'https://api.github.com/repos/sr/tasks/downloads',
  'events_url': 'https://api.github.com/repos/sr/tasks/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/sr/tasks/forks',
  'full_name': 'sr/tasks',
  'git_commits_url': 'https://api.github.com/repos/sr/tasks/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/sr/tasks/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/sr/tasks/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/sr/tasks/hooks',
  'html_url': 'https://github.com/sr/tasks',
  'id': 193,
  'issue_comment_url': 'https://api.github.com/repos/sr/tasks/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/sr/tasks/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/sr/tasks/issues{/number}',
  'keys_url': 'https://api.github.com/repos/sr/tasks/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/sr/tasks/labels{/name}',
  'languages_url': 'https://api.github.com/repos/sr/tasks/languages',
  'merges_url': 'https://api.github.com/repos/sr/tasks/merges',
  'milestones_url': 'https://api.github.com/repos/sr/tasks/milestones{/number}',
  'name': 'tasks',
  'notifications_url': 'https://api.github.com/repos/sr/tasks/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',
   'events_url': 'https://api.github.com/users/sr/events{/privacy}',
   'followers_url': 'https://api.github.com/users/sr/followers',
   'following_url': 'https://api.github.com/users/sr/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/sr',
   'id': 90,
   'login': 'sr',
   'organizations_url': 'https://api.github.com/users/sr/orgs',
   'received_events_url': 'https://api.github.com/users/sr/received_events',
   'repos_url': 'https://api.github.com/users/sr/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/sr'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/sr/tasks/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/sr/tasks/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/sr/tasks/stargazers',
  'statuses_url': 'https://api.github.com/repos/sr/tasks/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/sr/tasks/subscribers',
  'subscription_url': 'https://api.github.com/repos/sr/tasks/subscription',
  'tags_url': 'https://api.github.com/repos/sr/tasks/tags',
  'teams_url': 'https://api.github.com/repos/sr/tasks/teams',
  'trees_url': 'https://api.github.com/repos/sr/tasks/git/trees{/sha}',
  'url': 'https://api.github.com/repos/sr/tasks'},
 {'archive_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/comments{/number}',
  'commits_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contributors',
  'deployments_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/deployments',
  'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',
  'downloads_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/downloads',
  'events_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/forks',
  'full_name': 'mattetti/ruby-on-rails-tmbundle',
  'git_commits_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/hooks',
  'html_url': 'https://github.com/mattetti/ruby-on-rails-tmbundle',
  'id': 195,
  'issue_comment_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues{/number}',
  'keys_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/labels{/name}',
  'languages_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/languages',
  'merges_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/merges',
  'milestones_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/milestones{/number}',
  'name': 'ruby-on-rails-tmbundle',
  'notifications_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/113?v=4',
   'events_url': 'https://api.github.com/users/mattetti/events{/privacy}',
   'followers_url': 'https://api.github.com/users/mattetti/followers',
   'following_url': 'https://api.github.com/users/mattetti/following{/other_user}',
   'gists_url': 'https://api.github.com/users/mattetti/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/mattetti',
   'id': 113,
   'login': 'mattetti',
   'organizations_url': 'https://api.github.com/users/mattetti/orgs',
   'received_events_url': 'https://api.github.com/users/mattetti/received_events',
   'repos_url': 'https://api.github.com/users/mattetti/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/mattetti/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/mattetti/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/mattetti'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/stargazers',
  'statuses_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscribers',
  'subscription_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscription',
  'tags_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/tags',
  'teams_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/teams',
  'trees_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/trees{/sha}',
  'url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle'},
 {'archive_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/comments{/number}',
  'commits_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contributors',
  'deployments_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/deployments',
  'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',
  'downloads_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/downloads',
  'events_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/forks',
  'full_name': 'lawrencepit/ruby-on-rails-tmbundle',
  'git_commits_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/hooks',
  'html_url': 'https://github.com/lawrencepit/ruby-on-rails-tmbundle',
  'id': 196,
  'issue_comment_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues{/number}',
  'keys_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/labels{/name}',
  'languages_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/languages',
  'merges_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/merges',
  'milestones_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/milestones{/number}',
  'name': 'ruby-on-rails-tmbundle',
  'notifications_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/115?v=4',
   'events_url': 'https://api.github.com/users/lawrencepit/events{/privacy}',
   'followers_url': 'https://api.github.com/users/lawrencepit/followers',
   'following_url': 'https://api.github.com/users/lawrencepit/following{/other_user}',
   'gists_url': 'https://api.github.com/users/lawrencepit/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/lawrencepit',
   'id': 115,
   'login': 'lawrencepit',
   'organizations_url': 'https://api.github.com/users/lawrencepit/orgs',
   'received_events_url': 'https://api.github.com/users/lawrencepit/received_events',
   'repos_url': 'https://api.github.com/users/lawrencepit/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/lawrencepit/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/lawrencepit/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/lawrencepit'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/stargazers',
  'statuses_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscribers',
  'subscription_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscription',
  'tags_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/tags',
  'teams_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/teams',
  'trees_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/trees{/sha}',
  'url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle'},
 {'archive_url': 'https://api.github.com/repos/grempe/amazon-ec2/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/grempe/amazon-ec2/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/grempe/amazon-ec2/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/grempe/amazon-ec2/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/grempe/amazon-ec2/comments{/number}',
  'commits_url': 'https://api.github.com/repos/grempe/amazon-ec2/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/grempe/amazon-ec2/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/grempe/amazon-ec2/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/grempe/amazon-ec2/contributors',
  'deployments_url': 'https://api.github.com/repos/grempe/amazon-ec2/deployments',
  'description': 'A Ruby Gem that gives you full access to several of the Amazon Web Services API from your Ruby/Ruby on Rails apps',
  'downloads_url': 'https://api.github.com/repos/grempe/amazon-ec2/downloads',
  'events_url': 'https://api.github.com/repos/grempe/amazon-ec2/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/grempe/amazon-ec2/forks',
  'full_name': 'grempe/amazon-ec2',
  'git_commits_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/grempe/amazon-ec2/hooks',
  'html_url': 'https://github.com/grempe/amazon-ec2',
  'id': 199,
  'issue_comment_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues{/number}',
  'keys_url': 'https://api.github.com/repos/grempe/amazon-ec2/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/grempe/amazon-ec2/labels{/name}',
  'languages_url': 'https://api.github.com/repos/grempe/amazon-ec2/languages',
  'merges_url': 'https://api.github.com/repos/grempe/amazon-ec2/merges',
  'milestones_url': 'https://api.github.com/repos/grempe/amazon-ec2/milestones{/number}',
  'name': 'amazon-ec2',
  'notifications_url': 'https://api.github.com/repos/grempe/amazon-ec2/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/117?v=4',
   'events_url': 'https://api.github.com/users/grempe/events{/privacy}',
   'followers_url': 'https://api.github.com/users/grempe/followers',
   'following_url': 'https://api.github.com/users/grempe/following{/other_user}',
   'gists_url': 'https://api.github.com/users/grempe/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/grempe',
   'id': 117,
   'login': 'grempe',
   'organizations_url': 'https://api.github.com/users/grempe/orgs',
   'received_events_url': 'https://api.github.com/users/grempe/received_events',
   'repos_url': 'https://api.github.com/users/grempe/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/grempe/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/grempe/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/grempe'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/grempe/amazon-ec2/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/grempe/amazon-ec2/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/grempe/amazon-ec2/stargazers',
  'statuses_url': 'https://api.github.com/repos/grempe/amazon-ec2/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/grempe/amazon-ec2/subscribers',
  'subscription_url': 'https://api.github.com/repos/grempe/amazon-ec2/subscription',
  'tags_url': 'https://api.github.com/repos/grempe/amazon-ec2/tags',
  'teams_url': 'https://api.github.com/repos/grempe/amazon-ec2/teams',
  'trees_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/trees{/sha}',
  'url': 'https://api.github.com/repos/grempe/amazon-ec2'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/merblogger/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/merblogger/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/merblogger/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merblogger/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/merblogger/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/merblogger/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/merblogger/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/merblogger/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/merblogger/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/merblogger/deployments',
  'description': 'A Merb Blogging & Publishing Platform using Merb, DataMapper, haml and jQuery.',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/merblogger/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/merblogger/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/merblogger/forks',
  'full_name': 'wayneeseguin/merblogger',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/merblogger/hooks',
  'html_url': 'https://github.com/wayneeseguin/merblogger',
  'id': 203,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/merblogger/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/merblogger/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/merblogger/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/merblogger/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/merblogger/milestones{/number}',
  'name': 'merblogger',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/merblogger/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/merblogger/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/merblogger/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merblogger/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/merblogger/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merblogger/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/merblogger/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/merblogger/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/merblogger/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/merblogger'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/deployments',
  'description': 'Merb + Webgen CMS system that has dynamic routing, Nginx config and static site generation with haml/sass/erb/... support.',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/forks',
  'full_name': 'wayneeseguin/merbtastic',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/hooks',
  'html_url': 'https://github.com/wayneeseguin/merbtastic',
  'id': 204,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/milestones{/number}',
  'name': 'merbtastic',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/merbtastic'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/alogr/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/alogr/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/alogr/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/alogr/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/alogr/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/alogr/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/alogr/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/alogr/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/alogr/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/alogr/deployments',
  'description': 'AlogR is a threadsafe non-blocking asynchronous configurable logger for Ruby.',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/alogr/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/alogr/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/alogr/forks',
  'full_name': 'wayneeseguin/alogr',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/alogr/hooks',
  'html_url': 'https://github.com/wayneeseguin/alogr',
  'id': 205,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/alogr/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/alogr/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/alogr/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/alogr/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/alogr/milestones{/number}',
  'name': 'alogr',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/alogr/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/alogr/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/alogr/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/alogr/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/alogr/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/alogr/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/alogr/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/alogr/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/alogr/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/alogr'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/autozest/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/autozest/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/autozest/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/autozest/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/autozest/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/autozest/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/autozest/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/autozest/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/autozest/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/autozest/deployments',
  'description': 'AutoZest is an autotest addon that: * automated growl installation * generation of .autotest with growl & autozest config * generation of .autozest.yml config file * autozest.sqlite3 database file for pulling random messages based on severity',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/autozest/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/autozest/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/autozest/forks',
  'full_name': 'wayneeseguin/autozest',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/autozest/hooks',
  'html_url': 'https://github.com/wayneeseguin/autozest',
  'id': 206,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/autozest/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/autozest/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/autozest/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/autozest/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/autozest/milestones{/number}',
  'name': 'autozest',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/autozest/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/autozest/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/autozest/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/autozest/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/autozest/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/autozest/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/autozest/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/autozest/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/autozest/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/autozest'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/rnginx/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/rnginx/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/rnginx/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/rnginx/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/rnginx/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/rnginx/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/rnginx/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/rnginx/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/rnginx/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/rnginx/deployments',
  'description': 'Command line utility and library for working with Nginx configuration scripts.',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/rnginx/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/rnginx/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/rnginx/forks',
  'full_name': 'wayneeseguin/rnginx',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/rnginx/hooks',
  'html_url': 'https://github.com/wayneeseguin/rnginx',
  'id': 207,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/rnginx/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/rnginx/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/rnginx/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/rnginx/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/rnginx/milestones{/number}',
  'name': 'rnginx',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/rnginx/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/rnginx/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/rnginx/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/rnginx/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/rnginx/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/rnginx/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/rnginx/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/rnginx/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/rnginx/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/rnginx'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/sequel/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/sequel/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/sequel/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/sequel/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/sequel/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/sequel/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/sequel/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/sequel/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/sequel/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/sequel/deployments',
  'description': 'Sequel ORM',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/sequel/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/sequel/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/sequel/forks',
  'full_name': 'wayneeseguin/sequel',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/sequel/hooks',
  'html_url': 'https://github.com/wayneeseguin/sequel',
  'id': 208,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/sequel/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/sequel/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/sequel/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/sequel/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/sequel/milestones{/number}',
  'name': 'sequel',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/sequel/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/sequel/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/sequel/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/sequel/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/sequel/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/sequel/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/sequel/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/sequel/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/sequel/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/sequel'},
 {'archive_url': 'https://api.github.com/repos/bmizerany/simply_versioned/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/bmizerany/simply_versioned/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/bmizerany/simply_versioned/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/bmizerany/simply_versioned/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/bmizerany/simply_versioned/comments{/number}',
  'commits_url': 'https://api.github.com/repos/bmizerany/simply_versioned/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/bmizerany/simply_versioned/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/bmizerany/simply_versioned/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/bmizerany/simply_versioned/contributors',
  'deployments_url': 'https://api.github.com/repos/bmizerany/simply_versioned/deployments',
  'description': 'A simple, non-invasive, approach to versioning ActiveRecord models',
  'downloads_url': 'https://api.github.com/repos/bmizerany/simply_versioned/downloads',
  'events_url': 'https://api.github.com/repos/bmizerany/simply_versioned/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/bmizerany/simply_versioned/forks',
  'full_name': 'bmizerany/simply_versioned',
  'git_commits_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/bmizerany/simply_versioned/hooks',
  'html_url': 'https://github.com/bmizerany/simply_versioned',
  'id': 211,
  'issue_comment_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues{/number}',
  'keys_url': 'https://api.github.com/repos/bmizerany/simply_versioned/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/bmizerany/simply_versioned/labels{/name}',
  'languages_url': 'https://api.github.com/repos/bmizerany/simply_versioned/languages',
  'merges_url': 'https://api.github.com/repos/bmizerany/simply_versioned/merges',
  'milestones_url': 'https://api.github.com/repos/bmizerany/simply_versioned/milestones{/number}',
  'name': 'simply_versioned',
  'notifications_url': 'https://api.github.com/repos/bmizerany/simply_versioned/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/46?v=4',
   'events_url': 'https://api.github.com/users/bmizerany/events{/privacy}',
   'followers_url': 'https://api.github.com/users/bmizerany/followers',
   'following_url': 'https://api.github.com/users/bmizerany/following{/other_user}',
   'gists_url': 'https://api.github.com/users/bmizerany/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/bmizerany',
   'id': 46,
   'login': 'bmizerany',
   'organizations_url': 'https://api.github.com/users/bmizerany/orgs',
   'received_events_url': 'https://api.github.com/users/bmizerany/received_events',
   'repos_url': 'https://api.github.com/users/bmizerany/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/bmizerany/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/bmizerany'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/bmizerany/simply_versioned/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/bmizerany/simply_versioned/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/bmizerany/simply_versioned/stargazers',
  'statuses_url': 'https://api.github.com/repos/bmizerany/simply_versioned/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/bmizerany/simply_versioned/subscribers',
  'subscription_url': 'https://api.github.com/repos/bmizerany/simply_versioned/subscription',
  'tags_url': 'https://api.github.com/repos/bmizerany/simply_versioned/tags',
  'teams_url': 'https://api.github.com/repos/bmizerany/simply_versioned/teams',
  'trees_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/trees{/sha}',
  'url': 'https://api.github.com/repos/bmizerany/simply_versioned'},
 {'archive_url': 'https://api.github.com/repos/peterc/switchpipe/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/peterc/switchpipe/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/peterc/switchpipe/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/peterc/switchpipe/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/peterc/switchpipe/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/peterc/switchpipe/comments{/number}',
  'commits_url': 'https://api.github.com/repos/peterc/switchpipe/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/peterc/switchpipe/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/peterc/switchpipe/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/peterc/switchpipe/contributors',
  'deployments_url': 'https://api.github.com/repos/peterc/switchpipe/deployments',
  'description': 'SwitchPipe is a backend process manager and HTTP proxy that makes (especially Ruby) web app deployment simple. NOW OBSOLETE. DO NOT USE.',
  'downloads_url': 'https://api.github.com/repos/peterc/switchpipe/downloads',
  'events_url': 'https://api.github.com/repos/peterc/switchpipe/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/peterc/switchpipe/forks',
  'full_name': 'peterc/switchpipe',
  'git_commits_url': 'https://api.github.com/repos/peterc/switchpipe/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/peterc/switchpipe/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/peterc/switchpipe/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/peterc/switchpipe/hooks',
  'html_url': 'https://github.com/peterc/switchpipe',
  'id': 212,
  'issue_comment_url': 'https://api.github.com/repos/peterc/switchpipe/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/peterc/switchpipe/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/peterc/switchpipe/issues{/number}',
  'keys_url': 'https://api.github.com/repos/peterc/switchpipe/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/peterc/switchpipe/labels{/name}',
  'languages_url': 'https://api.github.com/repos/peterc/switchpipe/languages',
  'merges_url': 'https://api.github.com/repos/peterc/switchpipe/merges',
  'milestones_url': 'https://api.github.com/repos/peterc/switchpipe/milestones{/number}',
  'name': 'switchpipe',
  'notifications_url': 'https://api.github.com/repos/peterc/switchpipe/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/118?v=4',
   'events_url': 'https://api.github.com/users/peterc/events{/privacy}',
   'followers_url': 'https://api.github.com/users/peterc/followers',
   'following_url': 'https://api.github.com/users/peterc/following{/other_user}',
   'gists_url': 'https://api.github.com/users/peterc/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/peterc',
   'id': 118,
   'login': 'peterc',
   'organizations_url': 'https://api.github.com/users/peterc/orgs',
   'received_events_url': 'https://api.github.com/users/peterc/received_events',
   'repos_url': 'https://api.github.com/users/peterc/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/peterc/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/peterc/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/peterc'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/peterc/switchpipe/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/peterc/switchpipe/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/peterc/switchpipe/stargazers',
  'statuses_url': 'https://api.github.com/repos/peterc/switchpipe/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/peterc/switchpipe/subscribers',
  'subscription_url': 'https://api.github.com/repos/peterc/switchpipe/subscription',
  'tags_url': 'https://api.github.com/repos/peterc/switchpipe/tags',
  'teams_url': 'https://api.github.com/repos/peterc/switchpipe/teams',
  'trees_url': 'https://api.github.com/repos/peterc/switchpipe/git/trees{/sha}',
  'url': 'https://api.github.com/repos/peterc/switchpipe'},
 {'archive_url': 'https://api.github.com/repos/hornbeck/arc/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/hornbeck/arc/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/hornbeck/arc/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/hornbeck/arc/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/hornbeck/arc/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/hornbeck/arc/comments{/number}',
  'commits_url': 'https://api.github.com/repos/hornbeck/arc/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/hornbeck/arc/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/hornbeck/arc/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/hornbeck/arc/contributors',
  'deployments_url': 'https://api.github.com/repos/hornbeck/arc/deployments',
  'description': 'My arc repo',
  'downloads_url': 'https://api.github.com/repos/hornbeck/arc/downloads',
  'events_url': 'https://api.github.com/repos/hornbeck/arc/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/hornbeck/arc/forks',
  'full_name': 'hornbeck/arc',
  'git_commits_url': 'https://api.github.com/repos/hornbeck/arc/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/hornbeck/arc/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/hornbeck/arc/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/hornbeck/arc/hooks',
  'html_url': 'https://github.com/hornbeck/arc',
  'id': 213,
  'issue_comment_url': 'https://api.github.com/repos/hornbeck/arc/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/hornbeck/arc/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/hornbeck/arc/issues{/number}',
  'keys_url': 'https://api.github.com/repos/hornbeck/arc/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/hornbeck/arc/labels{/name}',
  'languages_url': 'https://api.github.com/repos/hornbeck/arc/languages',
  'merges_url': 'https://api.github.com/repos/hornbeck/arc/merges',
  'milestones_url': 'https://api.github.com/repos/hornbeck/arc/milestones{/number}',
  'name': 'arc',
  'notifications_url': 'https://api.github.com/repos/hornbeck/arc/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/49?v=4',
   'events_url': 'https://api.github.com/users/hornbeck/events{/privacy}',
   'followers_url': 'https://api.github.com/users/hornbeck/followers',
   'following_url': 'https://api.github.com/users/hornbeck/following{/other_user}',
   'gists_url': 'https://api.github.com/users/hornbeck/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/hornbeck',
   'id': 49,
   'login': 'hornbeck',
   'organizations_url': 'https://api.github.com/users/hornbeck/orgs',
   'received_events_url': 'https://api.github.com/users/hornbeck/received_events',
   'repos_url': 'https://api.github.com/users/hornbeck/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/hornbeck/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/hornbeck'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/hornbeck/arc/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/hornbeck/arc/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/hornbeck/arc/stargazers',
  'statuses_url': 'https://api.github.com/repos/hornbeck/arc/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/hornbeck/arc/subscribers',
  'subscription_url': 'https://api.github.com/repos/hornbeck/arc/subscription',
  'tags_url': 'https://api.github.com/repos/hornbeck/arc/tags',
  'teams_url': 'https://api.github.com/repos/hornbeck/arc/teams',
  'trees_url': 'https://api.github.com/repos/hornbeck/arc/git/trees{/sha}',
  'url': 'https://api.github.com/repos/hornbeck/arc'},
 {'archive_url': 'https://api.github.com/repos/up_the_irons/ebay4r/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/up_the_irons/ebay4r/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/up_the_irons/ebay4r/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/up_the_irons/ebay4r/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/up_the_irons/ebay4r/comments{/number}',
  'commits_url': 'https://api.github.com/repos/up_the_irons/ebay4r/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/up_the_irons/ebay4r/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/up_the_irons/ebay4r/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/up_the_irons/ebay4r/contributors',
  'deployments_url': 'https://api.github.com/repos/up_the_irons/ebay4r/deployments',
  'description': "eBay4R is a Ruby wrapper for eBay's Web Services SOAP API",
  'downloads_url': 'https://api.github.com/repos/up_the_irons/ebay4r/downloads',
  'events_url': 'https://api.github.com/repos/up_the_irons/ebay4r/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/up_the_irons/ebay4r/forks',
  'full_name': 'up_the_irons/ebay4r',
  'git_commits_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/up_the_irons/ebay4r/hooks',
  'html_url': 'https://github.com/up_the_irons/ebay4r',
  'id': 217,
  'issue_comment_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues{/number}',
  'keys_url': 'https://api.github.com/repos/up_the_irons/ebay4r/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/up_the_irons/ebay4r/labels{/name}',
  'languages_url': 'https://api.github.com/repos/up_the_irons/ebay4r/languages',
  'merges_url': 'https://api.github.com/repos/up_the_irons/ebay4r/merges',
  'milestones_url': 'https://api.github.com/repos/up_the_irons/ebay4r/milestones{/number}',
  'name': 'ebay4r',
  'notifications_url': 'https://api.github.com/repos/up_the_irons/ebay4r/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',
   'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',
   'followers_url': 'https://api.github.com/users/up_the_irons/followers',
   'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',
   'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/up_the_irons',
   'id': 121,
   'login': 'up_the_irons',
   'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',
   'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',
   'repos_url': 'https://api.github.com/users/up_the_irons/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/up_the_irons'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/up_the_irons/ebay4r/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/up_the_irons/ebay4r/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/up_the_irons/ebay4r/stargazers',
  'statuses_url': 'https://api.github.com/repos/up_the_irons/ebay4r/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/up_the_irons/ebay4r/subscribers',
  'subscription_url': 'https://api.github.com/repos/up_the_irons/ebay4r/subscription',
  'tags_url': 'https://api.github.com/repos/up_the_irons/ebay4r/tags',
  'teams_url': 'https://api.github.com/repos/up_the_irons/ebay4r/teams',
  'trees_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/trees{/sha}',
  'url': 'https://api.github.com/repos/up_the_irons/ebay4r'},
 {'archive_url': 'https://api.github.com/repos/wycats/merb-plugins/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wycats/merb-plugins/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wycats/merb-plugins/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wycats/merb-plugins/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wycats/merb-plugins/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wycats/merb-plugins/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wycats/merb-plugins/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wycats/merb-plugins/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wycats/merb-plugins/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wycats/merb-plugins/contributors',
  'deployments_url': 'https://api.github.com/repos/wycats/merb-plugins/deployments',
  'description': 'Merb Plugins: Even more modules to hook up your Merb installation',
  'downloads_url': 'https://api.github.com/repos/wycats/merb-plugins/downloads',
  'events_url': 'https://api.github.com/repos/wycats/merb-plugins/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wycats/merb-plugins/forks',
  'full_name': 'wycats/merb-plugins',
  'git_commits_url': 'https://api.github.com/repos/wycats/merb-plugins/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wycats/merb-plugins/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wycats/merb-plugins/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wycats/merb-plugins/hooks',
  'html_url': 'https://github.com/wycats/merb-plugins',
  'id': 218,
  'issue_comment_url': 'https://api.github.com/repos/wycats/merb-plugins/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wycats/merb-plugins/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wycats/merb-plugins/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wycats/merb-plugins/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wycats/merb-plugins/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wycats/merb-plugins/languages',
  'merges_url': 'https://api.github.com/repos/wycats/merb-plugins/merges',
  'milestones_url': 'https://api.github.com/repos/wycats/merb-plugins/milestones{/number}',
  'name': 'merb-plugins',
  'notifications_url': 'https://api.github.com/repos/wycats/merb-plugins/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',
   'events_url': 'https://api.github.com/users/wycats/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wycats/followers',
   'following_url': 'https://api.github.com/users/wycats/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wycats',
   'id': 4,
   'login': 'wycats',
   'organizations_url': 'https://api.github.com/users/wycats/orgs',
   'received_events_url': 'https://api.github.com/users/wycats/received_events',
   'repos_url': 'https://api.github.com/users/wycats/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wycats'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wycats/merb-plugins/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wycats/merb-plugins/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wycats/merb-plugins/stargazers',
  'statuses_url': 'https://api.github.com/repos/wycats/merb-plugins/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wycats/merb-plugins/subscribers',
  'subscription_url': 'https://api.github.com/repos/wycats/merb-plugins/subscription',
  'tags_url': 'https://api.github.com/repos/wycats/merb-plugins/tags',
  'teams_url': 'https://api.github.com/repos/wycats/merb-plugins/teams',
  'trees_url': 'https://api.github.com/repos/wycats/merb-plugins/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wycats/merb-plugins'},
 {'archive_url': 'https://api.github.com/repos/up_the_irons/ram/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/up_the_irons/ram/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/up_the_irons/ram/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/up_the_irons/ram/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/up_the_irons/ram/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/up_the_irons/ram/comments{/number}',
  'commits_url': 'https://api.github.com/repos/up_the_irons/ram/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/up_the_irons/ram/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/up_the_irons/ram/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/up_the_irons/ram/contributors',
  'deployments_url': 'https://api.github.com/repos/up_the_irons/ram/deployments',
  'description': 'Ruby Asset Manager',
  'downloads_url': 'https://api.github.com/repos/up_the_irons/ram/downloads',
  'events_url': 'https://api.github.com/repos/up_the_irons/ram/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/up_the_irons/ram/forks',
  'full_name': 'up_the_irons/ram',
  'git_commits_url': 'https://api.github.com/repos/up_the_irons/ram/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/up_the_irons/ram/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/up_the_irons/ram/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/up_the_irons/ram/hooks',
  'html_url': 'https://github.com/up_the_irons/ram',
  'id': 220,
  'issue_comment_url': 'https://api.github.com/repos/up_the_irons/ram/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/up_the_irons/ram/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/up_the_irons/ram/issues{/number}',
  'keys_url': 'https://api.github.com/repos/up_the_irons/ram/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/up_the_irons/ram/labels{/name}',
  'languages_url': 'https://api.github.com/repos/up_the_irons/ram/languages',
  'merges_url': 'https://api.github.com/repos/up_the_irons/ram/merges',
  'milestones_url': 'https://api.github.com/repos/up_the_irons/ram/milestones{/number}',
  'name': 'ram',
  'notifications_url': 'https://api.github.com/repos/up_the_irons/ram/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',
   'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',
   'followers_url': 'https://api.github.com/users/up_the_irons/followers',
   'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',
   'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/up_the_irons',
   'id': 121,
   'login': 'up_the_irons',
   'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',
   'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',
   'repos_url': 'https://api.github.com/users/up_the_irons/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/up_the_irons'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/up_the_irons/ram/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/up_the_irons/ram/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/up_the_irons/ram/stargazers',
  'statuses_url': 'https://api.github.com/repos/up_the_irons/ram/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/up_the_irons/ram/subscribers',
  'subscription_url': 'https://api.github.com/repos/up_the_irons/ram/subscription',
  'tags_url': 'https://api.github.com/repos/up_the_irons/ram/tags',
  'teams_url': 'https://api.github.com/repos/up_the_irons/ram/teams',
  'trees_url': 'https://api.github.com/repos/up_the_irons/ram/git/trees{/sha}',
  'url': 'https://api.github.com/repos/up_the_irons/ram'},
 {'archive_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/comments{/number}',
  'commits_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/contributors',
  'deployments_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/deployments',
  'description': 'Ambition adapter for ActiveLdap',
  'downloads_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/downloads',
  'events_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/forks',
  'full_name': 'defunkt/ambitious_activeldap',
  'git_commits_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/hooks',
  'html_url': 'https://github.com/defunkt/ambitious_activeldap',
  'id': 230,
  'issue_comment_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues{/number}',
  'keys_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/labels{/name}',
  'languages_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/languages',
  'merges_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/merges',
  'milestones_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/milestones{/number}',
  'name': 'ambitious_activeldap',
  'notifications_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',
   'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',
   'followers_url': 'https://api.github.com/users/defunkt/followers',
   'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',
   'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/defunkt',
   'id': 2,
   'login': 'defunkt',
   'organizations_url': 'https://api.github.com/users/defunkt/orgs',
   'received_events_url': 'https://api.github.com/users/defunkt/received_events',
   'repos_url': 'https://api.github.com/users/defunkt/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/defunkt'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/stargazers',
  'statuses_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscribers',
  'subscription_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscription',
  'tags_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/tags',
  'teams_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/teams',
  'trees_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/trees{/sha}',
  'url': 'https://api.github.com/repos/defunkt/ambitious_activeldap'},
 {'archive_url': 'https://api.github.com/repos/atmos/fitter_happier/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/atmos/fitter_happier/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/atmos/fitter_happier/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/atmos/fitter_happier/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/atmos/fitter_happier/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/atmos/fitter_happier/comments{/number}',
  'commits_url': 'https://api.github.com/repos/atmos/fitter_happier/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/atmos/fitter_happier/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/atmos/fitter_happier/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/atmos/fitter_happier/contributors',
  'deployments_url': 'https://api.github.com/repos/atmos/fitter_happier/deployments',
  'description': 'A Rails Plugin for adding a simple health check to your application',
  'downloads_url': 'https://api.github.com/repos/atmos/fitter_happier/downloads',
  'events_url': 'https://api.github.com/repos/atmos/fitter_happier/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/atmos/fitter_happier/forks',
  'full_name': 'atmos/fitter_happier',
  'git_commits_url': 'https://api.github.com/repos/atmos/fitter_happier/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/atmos/fitter_happier/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/atmos/fitter_happier/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/atmos/fitter_happier/hooks',
  'html_url': 'https://github.com/atmos/fitter_happier',
  'id': 232,
  'issue_comment_url': 'https://api.github.com/repos/atmos/fitter_happier/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/atmos/fitter_happier/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/atmos/fitter_happier/issues{/number}',
  'keys_url': 'https://api.github.com/repos/atmos/fitter_happier/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/atmos/fitter_happier/labels{/name}',
  'languages_url': 'https://api.github.com/repos/atmos/fitter_happier/languages',
  'merges_url': 'https://api.github.com/repos/atmos/fitter_happier/merges',
  'milestones_url': 'https://api.github.com/repos/atmos/fitter_happier/milestones{/number}',
  'name': 'fitter_happier',
  'notifications_url': 'https://api.github.com/repos/atmos/fitter_happier/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/38?v=4',
   'events_url': 'https://api.github.com/users/atmos/events{/privacy}',
   'followers_url': 'https://api.github.com/users/atmos/followers',
   'following_url': 'https://api.github.com/users/atmos/following{/other_user}',
   'gists_url': 'https://api.github.com/users/atmos/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/atmos',
   'id': 38,
   'login': 'atmos',
   'organizations_url': 'https://api.github.com/users/atmos/orgs',
   'received_events_url': 'https://api.github.com/users/atmos/received_events',
   'repos_url': 'https://api.github.com/users/atmos/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/atmos/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/atmos/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/atmos'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/atmos/fitter_happier/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/atmos/fitter_happier/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/atmos/fitter_happier/stargazers',
  'statuses_url': 'https://api.github.com/repos/atmos/fitter_happier/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/atmos/fitter_happier/subscribers',
  'subscription_url': 'https://api.github.com/repos/atmos/fitter_happier/subscription',
  'tags_url': 'https://api.github.com/repos/atmos/fitter_happier/tags',
  'teams_url': 'https://api.github.com/repos/atmos/fitter_happier/teams',
  'trees_url': 'https://api.github.com/repos/atmos/fitter_happier/git/trees{/sha}',
  'url': 'https://api.github.com/repos/atmos/fitter_happier'},
 {'archive_url': 'https://api.github.com/repos/brosner/oebfare/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/brosner/oebfare/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/brosner/oebfare/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/brosner/oebfare/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/brosner/oebfare/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/brosner/oebfare/comments{/number}',
  'commits_url': 'https://api.github.com/repos/brosner/oebfare/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/brosner/oebfare/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/brosner/oebfare/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/brosner/oebfare/contributors',
  'deployments_url': 'https://api.github.com/repos/brosner/oebfare/deployments',
  'description': 'my personal blog written with django',
  'downloads_url': 'https://api.github.com/repos/brosner/oebfare/downloads',
  'events_url': 'https://api.github.com/repos/brosner/oebfare/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/brosner/oebfare/forks',
  'full_name': 'brosner/oebfare',
  'git_commits_url': 'https://api.github.com/repos/brosner/oebfare/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/brosner/oebfare/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/brosner/oebfare/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/brosner/oebfare/hooks',
  'html_url': 'https://github.com/brosner/oebfare',
  'id': 237,
  'issue_comment_url': 'https://api.github.com/repos/brosner/oebfare/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/brosner/oebfare/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/brosner/oebfare/issues{/number}',
  'keys_url': 'https://api.github.com/repos/brosner/oebfare/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/brosner/oebfare/labels{/name}',
  'languages_url': 'https://api.github.com/repos/brosner/oebfare/languages',
  'merges_url': 'https://api.github.com/repos/brosner/oebfare/merges',
  'milestones_url': 'https://api.github.com/repos/brosner/oebfare/milestones{/number}',
  'name': 'oebfare',
  'notifications_url': 'https://api.github.com/repos/brosner/oebfare/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/124?v=4',
   'events_url': 'https://api.github.com/users/brosner/events{/privacy}',
   'followers_url': 'https://api.github.com/users/brosner/followers',
   'following_url': 'https://api.github.com/users/brosner/following{/other_user}',
   'gists_url': 'https://api.github.com/users/brosner/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/brosner',
   'id': 124,
   'login': 'brosner',
   'organizations_url': 'https://api.github.com/users/brosner/orgs',
   'received_events_url': 'https://api.github.com/users/brosner/received_events',
   'repos_url': 'https://api.github.com/users/brosner/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/brosner/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/brosner/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/brosner'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/brosner/oebfare/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/brosner/oebfare/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/brosner/oebfare/stargazers',
  'statuses_url': 'https://api.github.com/repos/brosner/oebfare/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/brosner/oebfare/subscribers',
  'subscription_url': 'https://api.github.com/repos/brosner/oebfare/subscription',
  'tags_url': 'https://api.github.com/repos/brosner/oebfare/tags',
  'teams_url': 'https://api.github.com/repos/brosner/oebfare/teams',
  'trees_url': 'https://api.github.com/repos/brosner/oebfare/git/trees{/sha}',
  'url': 'https://api.github.com/repos/brosner/oebfare'},
 {'archive_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/comments{/number}',
  'commits_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/contributors',
  'deployments_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/deployments',
  'description': 'Tools for processing credit cards on the command line',
  'downloads_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/downloads',
  'events_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/forks',
  'full_name': 'up_the_irons/credit_card_tools',
  'git_commits_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/hooks',
  'html_url': 'https://github.com/up_the_irons/credit_card_tools',
  'id': 245,
  'issue_comment_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues{/number}',
  'keys_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/labels{/name}',
  'languages_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/languages',
  'merges_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/merges',
  'milestones_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/milestones{/number}',
  'name': 'credit_card_tools',
  'notifications_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',
   'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',
   'followers_url': 'https://api.github.com/users/up_the_irons/followers',
   'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',
   'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/up_the_irons',
   'id': 121,
   'login': 'up_the_irons',
   'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',
   'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',
   'repos_url': 'https://api.github.com/users/up_the_irons/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/up_the_irons'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/stargazers',
  'statuses_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscribers',
  'subscription_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscription',
  'tags_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/tags',
  'teams_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/teams',
  'trees_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/trees{/sha}',
  'url': 'https://api.github.com/repos/up_the_irons/credit_card_tools'},
 {'archive_url': 'https://api.github.com/repos/jnicklas/rorem/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnicklas/rorem/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnicklas/rorem/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnicklas/rorem/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnicklas/rorem/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnicklas/rorem/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnicklas/rorem/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnicklas/rorem/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnicklas/rorem/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnicklas/rorem/contributors',
  'deployments_url': 'https://api.github.com/repos/jnicklas/rorem/deployments',
  'description': 'Rorem is a random data generator',
  'downloads_url': 'https://api.github.com/repos/jnicklas/rorem/downloads',
  'events_url': 'https://api.github.com/repos/jnicklas/rorem/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnicklas/rorem/forks',
  'full_name': 'jnicklas/rorem',
  'git_commits_url': 'https://api.github.com/repos/jnicklas/rorem/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnicklas/rorem/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnicklas/rorem/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnicklas/rorem/hooks',
  'html_url': 'https://github.com/jnicklas/rorem',
  'id': 248,
  'issue_comment_url': 'https://api.github.com/repos/jnicklas/rorem/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnicklas/rorem/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnicklas/rorem/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnicklas/rorem/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnicklas/rorem/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnicklas/rorem/languages',
  'merges_url': 'https://api.github.com/repos/jnicklas/rorem/merges',
  'milestones_url': 'https://api.github.com/repos/jnicklas/rorem/milestones{/number}',
  'name': 'rorem',
  'notifications_url': 'https://api.github.com/repos/jnicklas/rorem/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/134?v=4',
   'events_url': 'https://api.github.com/users/jnicklas/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnicklas/followers',
   'following_url': 'https://api.github.com/users/jnicklas/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnicklas/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnicklas',
   'id': 134,
   'login': 'jnicklas',
   'organizations_url': 'https://api.github.com/users/jnicklas/orgs',
   'received_events_url': 'https://api.github.com/users/jnicklas/received_events',
   'repos_url': 'https://api.github.com/users/jnicklas/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnicklas/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnicklas'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnicklas/rorem/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnicklas/rorem/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnicklas/rorem/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnicklas/rorem/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnicklas/rorem/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnicklas/rorem/subscription',
  'tags_url': 'https://api.github.com/repos/jnicklas/rorem/tags',
  'teams_url': 'https://api.github.com/repos/jnicklas/rorem/teams',
  'trees_url': 'https://api.github.com/repos/jnicklas/rorem/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnicklas/rorem'},
 {'archive_url': 'https://api.github.com/repos/cristibalan/braid/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/cristibalan/braid/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/cristibalan/braid/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/cristibalan/braid/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/cristibalan/braid/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/cristibalan/braid/comments{/number}',
  'commits_url': 'https://api.github.com/repos/cristibalan/braid/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/cristibalan/braid/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/cristibalan/braid/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/cristibalan/braid/contributors',
  'deployments_url': 'https://api.github.com/repos/cristibalan/braid/deployments',
  'description': 'Simple tool to help track vendor branches in a Git repository.',
  'downloads_url': 'https://api.github.com/repos/cristibalan/braid/downloads',
  'events_url': 'https://api.github.com/repos/cristibalan/braid/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/cristibalan/braid/forks',
  'full_name': 'cristibalan/braid',
  'git_commits_url': 'https://api.github.com/repos/cristibalan/braid/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/cristibalan/braid/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/cristibalan/braid/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/cristibalan/braid/hooks',
  'html_url': 'https://github.com/cristibalan/braid',
  'id': 249,
  'issue_comment_url': 'https://api.github.com/repos/cristibalan/braid/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/cristibalan/braid/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/cristibalan/braid/issues{/number}',
  'keys_url': 'https://api.github.com/repos/cristibalan/braid/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/cristibalan/braid/labels{/name}',
  'languages_url': 'https://api.github.com/repos/cristibalan/braid/languages',
  'merges_url': 'https://api.github.com/repos/cristibalan/braid/merges',
  'milestones_url': 'https://api.github.com/repos/cristibalan/braid/milestones{/number}',
  'name': 'braid',
  'notifications_url': 'https://api.github.com/repos/cristibalan/braid/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/122?v=4',
   'events_url': 'https://api.github.com/users/cristibalan/events{/privacy}',
   'followers_url': 'https://api.github.com/users/cristibalan/followers',
   'following_url': 'https://api.github.com/users/cristibalan/following{/other_user}',
   'gists_url': 'https://api.github.com/users/cristibalan/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/cristibalan',
   'id': 122,
   'login': 'cristibalan',
   'organizations_url': 'https://api.github.com/users/cristibalan/orgs',
   'received_events_url': 'https://api.github.com/users/cristibalan/received_events',
   'repos_url': 'https://api.github.com/users/cristibalan/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/cristibalan/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/cristibalan/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/cristibalan'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/cristibalan/braid/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/cristibalan/braid/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/cristibalan/braid/stargazers',
  'statuses_url': 'https://api.github.com/repos/cristibalan/braid/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/cristibalan/braid/subscribers',
  'subscription_url': 'https://api.github.com/repos/cristibalan/braid/subscription',
  'tags_url': 'https://api.github.com/repos/cristibalan/braid/tags',
  'teams_url': 'https://api.github.com/repos/cristibalan/braid/teams',
  'trees_url': 'https://api.github.com/repos/cristibalan/braid/git/trees{/sha}',
  'url': 'https://api.github.com/repos/cristibalan/braid'},
 {'archive_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/contributors',
  'deployments_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/deployments',
  'description': 'UploadColumn is no longer maintained, check out CarrierWave for an alternative',
  'downloads_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/downloads',
  'events_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/forks',
  'full_name': 'jnicklas/uploadcolumn',
  'git_commits_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/hooks',
  'html_url': 'https://github.com/jnicklas/uploadcolumn',
  'id': 251,
  'issue_comment_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/languages',
  'merges_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/merges',
  'milestones_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/milestones{/number}',
  'name': 'uploadcolumn',
  'notifications_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/134?v=4',
   'events_url': 'https://api.github.com/users/jnicklas/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnicklas/followers',
   'following_url': 'https://api.github.com/users/jnicklas/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnicklas/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnicklas',
   'id': 134,
   'login': 'jnicklas',
   'organizations_url': 'https://api.github.com/users/jnicklas/orgs',
   'received_events_url': 'https://api.github.com/users/jnicklas/received_events',
   'repos_url': 'https://api.github.com/users/jnicklas/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnicklas/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnicklas'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/subscription',
  'tags_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/tags',
  'teams_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/teams',
  'trees_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnicklas/uploadcolumn'},
 {'archive_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/comments{/number}',
  'commits_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contributors',
  'deployments_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/deployments',
  'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',
  'downloads_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/downloads',
  'events_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/forks',
  'full_name': 'simonjefford/ruby-on-rails-tmbundle',
  'git_commits_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/hooks',
  'html_url': 'https://github.com/simonjefford/ruby-on-rails-tmbundle',
  'id': 252,
  'issue_comment_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues{/number}',
  'keys_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/labels{/name}',
  'languages_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/languages',
  'merges_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/merges',
  'milestones_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/milestones{/number}',
  'name': 'ruby-on-rails-tmbundle',
  'notifications_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/136?v=4',
   'events_url': 'https://api.github.com/users/simonjefford/events{/privacy}',
   'followers_url': 'https://api.github.com/users/simonjefford/followers',
   'following_url': 'https://api.github.com/users/simonjefford/following{/other_user}',
   'gists_url': 'https://api.github.com/users/simonjefford/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/simonjefford',
   'id': 136,
   'login': 'simonjefford',
   'organizations_url': 'https://api.github.com/users/simonjefford/orgs',
   'received_events_url': 'https://api.github.com/users/simonjefford/received_events',
   'repos_url': 'https://api.github.com/users/simonjefford/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/simonjefford/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/simonjefford/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/simonjefford'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/stargazers',
  'statuses_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscribers',
  'subscription_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscription',
  'tags_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/tags',
  'teams_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/teams',
  'trees_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/trees{/sha}',
  'url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle'},
 {'archive_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/comments{/number}',
  'commits_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/contributors',
  'deployments_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/deployments',
  'description': "OUTDATED mirror of Rack's darcs repository, use github.com/chneukirchen/rack",
  'downloads_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/downloads',
  'events_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/forks',
  'full_name': 'chneukirchen/rack-mirror',
  'git_commits_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/hooks',
  'html_url': 'https://github.com/chneukirchen/rack-mirror',
  'id': 256,
  'issue_comment_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues{/number}',
  'keys_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/labels{/name}',
  'languages_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/languages',
  'merges_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/merges',
  'milestones_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/milestones{/number}',
  'name': 'rack-mirror',
  'notifications_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',
   'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',
   'followers_url': 'https://api.github.com/users/chneukirchen/followers',
   'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',
   'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/chneukirchen',
   'id': 139,
   'login': 'chneukirchen',
   'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',
   'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',
   'repos_url': 'https://api.github.com/users/chneukirchen/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/chneukirchen'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/stargazers',
  'statuses_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/subscribers',
  'subscription_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/subscription',
  'tags_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/tags',
  'teams_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/teams',
  'trees_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/trees{/sha}',
  'url': 'https://api.github.com/repos/chneukirchen/rack-mirror'},
 {'archive_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/comments{/number}',
  'commits_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/contributors',
  'deployments_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/deployments',
  'description': '(experimental) Mirror of the coset darcs repository',
  'downloads_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/downloads',
  'events_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/forks',
  'full_name': 'chneukirchen/coset-mirror',
  'git_commits_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/hooks',
  'html_url': 'https://github.com/chneukirchen/coset-mirror',
  'id': 257,
  'issue_comment_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues{/number}',
  'keys_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/labels{/name}',
  'languages_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/languages',
  'merges_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/merges',
  'milestones_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/milestones{/number}',
  'name': 'coset-mirror',
  'notifications_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',
   'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',
   'followers_url': 'https://api.github.com/users/chneukirchen/followers',
   'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',
   'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/chneukirchen',
   'id': 139,
   'login': 'chneukirchen',
   'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',
   'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',
   'repos_url': 'https://api.github.com/users/chneukirchen/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/chneukirchen'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/stargazers',
  'statuses_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/subscribers',
  'subscription_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/subscription',
  'tags_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/tags',
  'teams_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/teams',
  'trees_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/trees{/sha}',
  'url': 'https://api.github.com/repos/chneukirchen/coset-mirror'},
 {'archive_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/comments{/number}',
  'commits_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contributors',
  'deployments_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/deployments',
  'description': "JavaScript Unit Test TextMate Bundle [for prototype's unittest.js library]",
  'downloads_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/downloads',
  'events_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/forks',
  'full_name': 'drnic/javascript-unittest-tmbundle',
  'git_commits_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/hooks',
  'html_url': 'https://github.com/drnic/javascript-unittest-tmbundle',
  'id': 267,
  'issue_comment_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues{/number}',
  'keys_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/labels{/name}',
  'languages_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/languages',
  'merges_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/merges',
  'milestones_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/milestones{/number}',
  'name': 'javascript-unittest-tmbundle',
  'notifications_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/108?v=4',
   'events_url': 'https://api.github.com/users/drnic/events{/privacy}',
   'followers_url': 'https://api.github.com/users/drnic/followers',
   'following_url': 'https://api.github.com/users/drnic/following{/other_user}',
   'gists_url': 'https://api.github.com/users/drnic/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/drnic',
   'id': 108,
   'login': 'drnic',
   'organizations_url': 'https://api.github.com/users/drnic/orgs',
   'received_events_url': 'https://api.github.com/users/drnic/received_events',
   'repos_url': 'https://api.github.com/users/drnic/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/drnic/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/drnic/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/drnic'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/stargazers',
  'statuses_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscribers',
  'subscription_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscription',
  'tags_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/tags',
  'teams_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/teams',
  'trees_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/trees{/sha}',
  'url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle'},
 {'archive_url': 'https://api.github.com/repos/engineyard/eycap/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/engineyard/eycap/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/engineyard/eycap/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/engineyard/eycap/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/engineyard/eycap/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/engineyard/eycap/comments{/number}',
  'commits_url': 'https://api.github.com/repos/engineyard/eycap/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/engineyard/eycap/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/engineyard/eycap/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/engineyard/eycap/contributors',
  'deployments_url': 'https://api.github.com/repos/engineyard/eycap/deployments',
  'description': 'Engine Yard specific capistrano recipes',
  'downloads_url': 'https://api.github.com/repos/engineyard/eycap/downloads',
  'events_url': 'https://api.github.com/repos/engineyard/eycap/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/engineyard/eycap/forks',
  'full_name': 'engineyard/eycap',
  'git_commits_url': 'https://api.github.com/repos/engineyard/eycap/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/engineyard/eycap/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/engineyard/eycap/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/engineyard/eycap/hooks',
  'html_url': 'https://github.com/engineyard/eycap',
  'id': 273,
  'issue_comment_url': 'https://api.github.com/repos/engineyard/eycap/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/engineyard/eycap/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/engineyard/eycap/issues{/number}',
  'keys_url': 'https://api.github.com/repos/engineyard/eycap/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/engineyard/eycap/labels{/name}',
  'languages_url': 'https://api.github.com/repos/engineyard/eycap/languages',
  'merges_url': 'https://api.github.com/repos/engineyard/eycap/merges',
  'milestones_url': 'https://api.github.com/repos/engineyard/eycap/milestones{/number}',
  'name': 'eycap',
  'notifications_url': 'https://api.github.com/repos/engineyard/eycap/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/81?v=4',
   'events_url': 'https://api.github.com/users/engineyard/events{/privacy}',
   'followers_url': 'https://api.github.com/users/engineyard/followers',
   'following_url': 'https://api.github.com/users/engineyard/following{/other_user}',
   'gists_url': 'https://api.github.com/users/engineyard/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/engineyard',
   'id': 81,
   'login': 'engineyard',
   'organizations_url': 'https://api.github.com/users/engineyard/orgs',
   'received_events_url': 'https://api.github.com/users/engineyard/received_events',
   'repos_url': 'https://api.github.com/users/engineyard/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/engineyard/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/engineyard/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/engineyard'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/engineyard/eycap/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/engineyard/eycap/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/engineyard/eycap/stargazers',
  'statuses_url': 'https://api.github.com/repos/engineyard/eycap/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/engineyard/eycap/subscribers',
  'subscription_url': 'https://api.github.com/repos/engineyard/eycap/subscription',
  'tags_url': 'https://api.github.com/repos/engineyard/eycap/tags',
  'teams_url': 'https://api.github.com/repos/engineyard/eycap/teams',
  'trees_url': 'https://api.github.com/repos/engineyard/eycap/git/trees{/sha}',
  'url': 'https://api.github.com/repos/engineyard/eycap'},
 {'archive_url': 'https://api.github.com/repos/chneukirchen/gitsum/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/chneukirchen/gitsum/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/chneukirchen/gitsum/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/chneukirchen/gitsum/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/chneukirchen/gitsum/comments{/number}',
  'commits_url': 'https://api.github.com/repos/chneukirchen/gitsum/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/chneukirchen/gitsum/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/chneukirchen/gitsum/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/chneukirchen/gitsum/contributors',
  'deployments_url': 'https://api.github.com/repos/chneukirchen/gitsum/deployments',
  'description': 'basic darcsum feelalike for Git',
  'downloads_url': 'https://api.github.com/repos/chneukirchen/gitsum/downloads',
  'events_url': 'https://api.github.com/repos/chneukirchen/gitsum/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/chneukirchen/gitsum/forks',
  'full_name': 'chneukirchen/gitsum',
  'git_commits_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/chneukirchen/gitsum/hooks',
  'html_url': 'https://github.com/chneukirchen/gitsum',
  'id': 279,
  'issue_comment_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues{/number}',
  'keys_url': 'https://api.github.com/repos/chneukirchen/gitsum/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/chneukirchen/gitsum/labels{/name}',
  'languages_url': 'https://api.github.com/repos/chneukirchen/gitsum/languages',
  'merges_url': 'https://api.github.com/repos/chneukirchen/gitsum/merges',
  'milestones_url': 'https://api.github.com/repos/chneukirchen/gitsum/milestones{/number}',
  'name': 'gitsum',
  'notifications_url': 'https://api.github.com/repos/chneukirchen/gitsum/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',
   'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',
   'followers_url': 'https://api.github.com/users/chneukirchen/followers',
   'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',
   'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/chneukirchen',
   'id': 139,
   'login': 'chneukirchen',
   'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',
   'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',
   'repos_url': 'https://api.github.com/users/chneukirchen/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/chneukirchen'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/chneukirchen/gitsum/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/chneukirchen/gitsum/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/chneukirchen/gitsum/stargazers',
  'statuses_url': 'https://api.github.com/repos/chneukirchen/gitsum/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/chneukirchen/gitsum/subscribers',
  'subscription_url': 'https://api.github.com/repos/chneukirchen/gitsum/subscription',
  'tags_url': 'https://api.github.com/repos/chneukirchen/gitsum/tags',
  'teams_url': 'https://api.github.com/repos/chneukirchen/gitsum/teams',
  'trees_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/trees{/sha}',
  'url': 'https://api.github.com/repos/chneukirchen/gitsum'},
 {'archive_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/comments{/number}',
  'commits_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/contributors',
  'deployments_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/deployments',
  'description': 'Sequel::Model (No longer working on this project)',
  'downloads_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/downloads',
  'events_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/forks',
  'full_name': 'wayneeseguin/sequel-model',
  'git_commits_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/hooks',
  'html_url': 'https://github.com/wayneeseguin/sequel-model',
  'id': 293,
  'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues{/number}',
  'keys_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/labels{/name}',
  'languages_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/languages',
  'merges_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/merges',
  'milestones_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/milestones{/number}',
  'name': 'sequel-model',
  'notifications_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',
   'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',
   'followers_url': 'https://api.github.com/users/wayneeseguin/followers',
   'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',
   'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/wayneeseguin',
   'id': 18,
   'login': 'wayneeseguin',
   'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',
   'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',
   'repos_url': 'https://api.github.com/users/wayneeseguin/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/wayneeseguin'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/stargazers',
  'statuses_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/subscribers',
  'subscription_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/subscription',
  'tags_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/tags',
  'teams_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/teams',
  'trees_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/trees{/sha}',
  'url': 'https://api.github.com/repos/wayneeseguin/sequel-model'},
 {'archive_url': 'https://api.github.com/repos/kevinclark/god/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/kevinclark/god/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/kevinclark/god/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/kevinclark/god/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/kevinclark/god/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/kevinclark/god/comments{/number}',
  'commits_url': 'https://api.github.com/repos/kevinclark/god/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/kevinclark/god/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/kevinclark/god/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/kevinclark/god/contributors',
  'deployments_url': 'https://api.github.com/repos/kevinclark/god/deployments',
  'description': 'Ruby process monitor',
  'downloads_url': 'https://api.github.com/repos/kevinclark/god/downloads',
  'events_url': 'https://api.github.com/repos/kevinclark/god/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/kevinclark/god/forks',
  'full_name': 'kevinclark/god',
  'git_commits_url': 'https://api.github.com/repos/kevinclark/god/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/kevinclark/god/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/kevinclark/god/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/kevinclark/god/hooks',
  'html_url': 'https://github.com/kevinclark/god',
  'id': 305,
  'issue_comment_url': 'https://api.github.com/repos/kevinclark/god/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/kevinclark/god/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/kevinclark/god/issues{/number}',
  'keys_url': 'https://api.github.com/repos/kevinclark/god/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/kevinclark/god/labels{/name}',
  'languages_url': 'https://api.github.com/repos/kevinclark/god/languages',
  'merges_url': 'https://api.github.com/repos/kevinclark/god/merges',
  'milestones_url': 'https://api.github.com/repos/kevinclark/god/milestones{/number}',
  'name': 'god',
  'notifications_url': 'https://api.github.com/repos/kevinclark/god/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/20?v=4',
   'events_url': 'https://api.github.com/users/kevinclark/events{/privacy}',
   'followers_url': 'https://api.github.com/users/kevinclark/followers',
   'following_url': 'https://api.github.com/users/kevinclark/following{/other_user}',
   'gists_url': 'https://api.github.com/users/kevinclark/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/kevinclark',
   'id': 20,
   'login': 'kevinclark',
   'organizations_url': 'https://api.github.com/users/kevinclark/orgs',
   'received_events_url': 'https://api.github.com/users/kevinclark/received_events',
   'repos_url': 'https://api.github.com/users/kevinclark/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/kevinclark/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/kevinclark/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/kevinclark'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/kevinclark/god/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/kevinclark/god/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/kevinclark/god/stargazers',
  'statuses_url': 'https://api.github.com/repos/kevinclark/god/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/kevinclark/god/subscribers',
  'subscription_url': 'https://api.github.com/repos/kevinclark/god/subscription',
  'tags_url': 'https://api.github.com/repos/kevinclark/god/tags',
  'teams_url': 'https://api.github.com/repos/kevinclark/god/teams',
  'trees_url': 'https://api.github.com/repos/kevinclark/god/git/trees{/sha}',
  'url': 'https://api.github.com/repos/kevinclark/god'},
 {'archive_url': 'https://api.github.com/repos/hornbeck/blerb-core/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/hornbeck/blerb-core/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/hornbeck/blerb-core/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/hornbeck/blerb-core/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/hornbeck/blerb-core/comments{/number}',
  'commits_url': 'https://api.github.com/repos/hornbeck/blerb-core/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/hornbeck/blerb-core/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/hornbeck/blerb-core/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/hornbeck/blerb-core/contributors',
  'deployments_url': 'https://api.github.com/repos/hornbeck/blerb-core/deployments',
  'description': 'blerb running on merb-core',
  'downloads_url': 'https://api.github.com/repos/hornbeck/blerb-core/downloads',
  'events_url': 'https://api.github.com/repos/hornbeck/blerb-core/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/hornbeck/blerb-core/forks',
  'full_name': 'hornbeck/blerb-core',
  'git_commits_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/hornbeck/blerb-core/hooks',
  'html_url': 'https://github.com/hornbeck/blerb-core',
  'id': 307,
  'issue_comment_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues{/number}',
  'keys_url': 'https://api.github.com/repos/hornbeck/blerb-core/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/hornbeck/blerb-core/labels{/name}',
  'languages_url': 'https://api.github.com/repos/hornbeck/blerb-core/languages',
  'merges_url': 'https://api.github.com/repos/hornbeck/blerb-core/merges',
  'milestones_url': 'https://api.github.com/repos/hornbeck/blerb-core/milestones{/number}',
  'name': 'blerb-core',
  'notifications_url': 'https://api.github.com/repos/hornbeck/blerb-core/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/49?v=4',
   'events_url': 'https://api.github.com/users/hornbeck/events{/privacy}',
   'followers_url': 'https://api.github.com/users/hornbeck/followers',
   'following_url': 'https://api.github.com/users/hornbeck/following{/other_user}',
   'gists_url': 'https://api.github.com/users/hornbeck/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/hornbeck',
   'id': 49,
   'login': 'hornbeck',
   'organizations_url': 'https://api.github.com/users/hornbeck/orgs',
   'received_events_url': 'https://api.github.com/users/hornbeck/received_events',
   'repos_url': 'https://api.github.com/users/hornbeck/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/hornbeck/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/hornbeck'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/hornbeck/blerb-core/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/hornbeck/blerb-core/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/hornbeck/blerb-core/stargazers',
  'statuses_url': 'https://api.github.com/repos/hornbeck/blerb-core/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/hornbeck/blerb-core/subscribers',
  'subscription_url': 'https://api.github.com/repos/hornbeck/blerb-core/subscription',
  'tags_url': 'https://api.github.com/repos/hornbeck/blerb-core/tags',
  'teams_url': 'https://api.github.com/repos/hornbeck/blerb-core/teams',
  'trees_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/trees{/sha}',
  'url': 'https://api.github.com/repos/hornbeck/blerb-core'},
 {'archive_url': 'https://api.github.com/repos/brosner/django-mptt/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/brosner/django-mptt/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/brosner/django-mptt/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/brosner/django-mptt/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/brosner/django-mptt/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/brosner/django-mptt/comments{/number}',
  'commits_url': 'https://api.github.com/repos/brosner/django-mptt/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/brosner/django-mptt/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/brosner/django-mptt/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/brosner/django-mptt/contributors',
  'deployments_url': 'https://api.github.com/repos/brosner/django-mptt/deployments',
  'description': 'utilities for implementing a modified pre-order traversal tree in django',
  'downloads_url': 'https://api.github.com/repos/brosner/django-mptt/downloads',
  'events_url': 'https://api.github.com/repos/brosner/django-mptt/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/brosner/django-mptt/forks',
  'full_name': 'brosner/django-mptt',
  'git_commits_url': 'https://api.github.com/repos/brosner/django-mptt/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/brosner/django-mptt/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/brosner/django-mptt/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/brosner/django-mptt/hooks',
  'html_url': 'https://github.com/brosner/django-mptt',
  'id': 312,
  'issue_comment_url': 'https://api.github.com/repos/brosner/django-mptt/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/brosner/django-mptt/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/brosner/django-mptt/issues{/number}',
  'keys_url': 'https://api.github.com/repos/brosner/django-mptt/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/brosner/django-mptt/labels{/name}',
  'languages_url': 'https://api.github.com/repos/brosner/django-mptt/languages',
  'merges_url': 'https://api.github.com/repos/brosner/django-mptt/merges',
  'milestones_url': 'https://api.github.com/repos/brosner/django-mptt/milestones{/number}',
  'name': 'django-mptt',
  'notifications_url': 'https://api.github.com/repos/brosner/django-mptt/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/124?v=4',
   'events_url': 'https://api.github.com/users/brosner/events{/privacy}',
   'followers_url': 'https://api.github.com/users/brosner/followers',
   'following_url': 'https://api.github.com/users/brosner/following{/other_user}',
   'gists_url': 'https://api.github.com/users/brosner/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/brosner',
   'id': 124,
   'login': 'brosner',
   'organizations_url': 'https://api.github.com/users/brosner/orgs',
   'received_events_url': 'https://api.github.com/users/brosner/received_events',
   'repos_url': 'https://api.github.com/users/brosner/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/brosner/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/brosner/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/brosner'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/brosner/django-mptt/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/brosner/django-mptt/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/brosner/django-mptt/stargazers',
  'statuses_url': 'https://api.github.com/repos/brosner/django-mptt/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/brosner/django-mptt/subscribers',
  'subscription_url': 'https://api.github.com/repos/brosner/django-mptt/subscription',
  'tags_url': 'https://api.github.com/repos/brosner/django-mptt/tags',
  'teams_url': 'https://api.github.com/repos/brosner/django-mptt/teams',
  'trees_url': 'https://api.github.com/repos/brosner/django-mptt/git/trees{/sha}',
  'url': 'https://api.github.com/repos/brosner/django-mptt'},
 {'archive_url': 'https://api.github.com/repos/technomancy/bus-scheme/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/technomancy/bus-scheme/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/technomancy/bus-scheme/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/technomancy/bus-scheme/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/technomancy/bus-scheme/comments{/number}',
  'commits_url': 'https://api.github.com/repos/technomancy/bus-scheme/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/technomancy/bus-scheme/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/technomancy/bus-scheme/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/technomancy/bus-scheme/contributors',
  'deployments_url': 'https://api.github.com/repos/technomancy/bus-scheme/deployments',
  'description': 'a Scheme written in Ruby, but implemented on the bus!',
  'downloads_url': 'https://api.github.com/repos/technomancy/bus-scheme/downloads',
  'events_url': 'https://api.github.com/repos/technomancy/bus-scheme/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/technomancy/bus-scheme/forks',
  'full_name': 'technomancy/bus-scheme',
  'git_commits_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/technomancy/bus-scheme/hooks',
  'html_url': 'https://github.com/technomancy/bus-scheme',
  'id': 314,
  'issue_comment_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues{/number}',
  'keys_url': 'https://api.github.com/repos/technomancy/bus-scheme/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/technomancy/bus-scheme/labels{/name}',
  'languages_url': 'https://api.github.com/repos/technomancy/bus-scheme/languages',
  'merges_url': 'https://api.github.com/repos/technomancy/bus-scheme/merges',
  'milestones_url': 'https://api.github.com/repos/technomancy/bus-scheme/milestones{/number}',
  'name': 'bus-scheme',
  'notifications_url': 'https://api.github.com/repos/technomancy/bus-scheme/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/141?v=4',
   'events_url': 'https://api.github.com/users/technomancy/events{/privacy}',
   'followers_url': 'https://api.github.com/users/technomancy/followers',
   'following_url': 'https://api.github.com/users/technomancy/following{/other_user}',
   'gists_url': 'https://api.github.com/users/technomancy/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/technomancy',
   'id': 141,
   'login': 'technomancy',
   'organizations_url': 'https://api.github.com/users/technomancy/orgs',
   'received_events_url': 'https://api.github.com/users/technomancy/received_events',
   'repos_url': 'https://api.github.com/users/technomancy/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/technomancy/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/technomancy/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/technomancy'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/technomancy/bus-scheme/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/technomancy/bus-scheme/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/technomancy/bus-scheme/stargazers',
  'statuses_url': 'https://api.github.com/repos/technomancy/bus-scheme/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/technomancy/bus-scheme/subscribers',
  'subscription_url': 'https://api.github.com/repos/technomancy/bus-scheme/subscription',
  'tags_url': 'https://api.github.com/repos/technomancy/bus-scheme/tags',
  'teams_url': 'https://api.github.com/repos/technomancy/bus-scheme/teams',
  'trees_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/trees{/sha}',
  'url': 'https://api.github.com/repos/technomancy/bus-scheme'},
 {'archive_url': 'https://api.github.com/repos/Caged/javascript-bits/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/Caged/javascript-bits/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/Caged/javascript-bits/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/Caged/javascript-bits/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/Caged/javascript-bits/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/Caged/javascript-bits/comments{/number}',
  'commits_url': 'https://api.github.com/repos/Caged/javascript-bits/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/Caged/javascript-bits/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/Caged/javascript-bits/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/Caged/javascript-bits/contributors',
  'deployments_url': 'https://api.github.com/repos/Caged/javascript-bits/deployments',
  'description': 'Useful pieces of JavaScript.  Some old, some new.',
  'downloads_url': 'https://api.github.com/repos/Caged/javascript-bits/downloads',
  'events_url': 'https://api.github.com/repos/Caged/javascript-bits/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/Caged/javascript-bits/forks',
  'full_name': 'Caged/javascript-bits',
  'git_commits_url': 'https://api.github.com/repos/Caged/javascript-bits/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/Caged/javascript-bits/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/Caged/javascript-bits/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/Caged/javascript-bits/hooks',
  'html_url': 'https://github.com/Caged/javascript-bits',
  'id': 319,
  'issue_comment_url': 'https://api.github.com/repos/Caged/javascript-bits/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/Caged/javascript-bits/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/Caged/javascript-bits/issues{/number}',
  'keys_url': 'https://api.github.com/repos/Caged/javascript-bits/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/Caged/javascript-bits/labels{/name}',
  'languages_url': 'https://api.github.com/repos/Caged/javascript-bits/languages',
  'merges_url': 'https://api.github.com/repos/Caged/javascript-bits/merges',
  'milestones_url': 'https://api.github.com/repos/Caged/javascript-bits/milestones{/number}',
  'name': 'javascript-bits',
  'notifications_url': 'https://api.github.com/repos/Caged/javascript-bits/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',
   'events_url': 'https://api.github.com/users/Caged/events{/privacy}',
   'followers_url': 'https://api.github.com/users/Caged/followers',
   'following_url': 'https://api.github.com/users/Caged/following{/other_user}',
   'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/Caged',
   'id': 25,
   'login': 'Caged',
   'organizations_url': 'https://api.github.com/users/Caged/orgs',
   'received_events_url': 'https://api.github.com/users/Caged/received_events',
   'repos_url': 'https://api.github.com/users/Caged/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/Caged'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/Caged/javascript-bits/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/Caged/javascript-bits/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/Caged/javascript-bits/stargazers',
  'statuses_url': 'https://api.github.com/repos/Caged/javascript-bits/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/Caged/javascript-bits/subscribers',
  'subscription_url': 'https://api.github.com/repos/Caged/javascript-bits/subscription',
  'tags_url': 'https://api.github.com/repos/Caged/javascript-bits/tags',
  'teams_url': 'https://api.github.com/repos/Caged/javascript-bits/teams',
  'trees_url': 'https://api.github.com/repos/Caged/javascript-bits/git/trees{/sha}',
  'url': 'https://api.github.com/repos/Caged/javascript-bits'},
 {'archive_url': 'https://api.github.com/repos/Caged/groomlake/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/Caged/groomlake/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/Caged/groomlake/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/Caged/groomlake/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/Caged/groomlake/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/Caged/groomlake/comments{/number}',
  'commits_url': 'https://api.github.com/repos/Caged/groomlake/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/Caged/groomlake/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/Caged/groomlake/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/Caged/groomlake/contributors',
  'deployments_url': 'https://api.github.com/repos/Caged/groomlake/deployments',
  'description': 'Ruby parsers for some Adobe file formats.',
  'downloads_url': 'https://api.github.com/repos/Caged/groomlake/downloads',
  'events_url': 'https://api.github.com/repos/Caged/groomlake/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/Caged/groomlake/forks',
  'full_name': 'Caged/groomlake',
  'git_commits_url': 'https://api.github.com/repos/Caged/groomlake/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/Caged/groomlake/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/Caged/groomlake/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/Caged/groomlake/hooks',
  'html_url': 'https://github.com/Caged/groomlake',
  'id': 320,
  'issue_comment_url': 'https://api.github.com/repos/Caged/groomlake/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/Caged/groomlake/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/Caged/groomlake/issues{/number}',
  'keys_url': 'https://api.github.com/repos/Caged/groomlake/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/Caged/groomlake/labels{/name}',
  'languages_url': 'https://api.github.com/repos/Caged/groomlake/languages',
  'merges_url': 'https://api.github.com/repos/Caged/groomlake/merges',
  'milestones_url': 'https://api.github.com/repos/Caged/groomlake/milestones{/number}',
  'name': 'groomlake',
  'notifications_url': 'https://api.github.com/repos/Caged/groomlake/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',
   'events_url': 'https://api.github.com/users/Caged/events{/privacy}',
   'followers_url': 'https://api.github.com/users/Caged/followers',
   'following_url': 'https://api.github.com/users/Caged/following{/other_user}',
   'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/Caged',
   'id': 25,
   'login': 'Caged',
   'organizations_url': 'https://api.github.com/users/Caged/orgs',
   'received_events_url': 'https://api.github.com/users/Caged/received_events',
   'repos_url': 'https://api.github.com/users/Caged/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/Caged'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/Caged/groomlake/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/Caged/groomlake/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/Caged/groomlake/stargazers',
  'statuses_url': 'https://api.github.com/repos/Caged/groomlake/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/Caged/groomlake/subscribers',
  'subscription_url': 'https://api.github.com/repos/Caged/groomlake/subscription',
  'tags_url': 'https://api.github.com/repos/Caged/groomlake/tags',
  'teams_url': 'https://api.github.com/repos/Caged/groomlake/teams',
  'trees_url': 'https://api.github.com/repos/Caged/groomlake/git/trees{/sha}',
  'url': 'https://api.github.com/repos/Caged/groomlake'},
 {'archive_url': 'https://api.github.com/repos/sevenwire/forgery/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/sevenwire/forgery/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/sevenwire/forgery/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/sevenwire/forgery/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/sevenwire/forgery/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/sevenwire/forgery/comments{/number}',
  'commits_url': 'https://api.github.com/repos/sevenwire/forgery/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/sevenwire/forgery/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/sevenwire/forgery/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/sevenwire/forgery/contributors',
  'deployments_url': 'https://api.github.com/repos/sevenwire/forgery/deployments',
  'description': 'Easy and customizable generation of forged data.',
  'downloads_url': 'https://api.github.com/repos/sevenwire/forgery/downloads',
  'events_url': 'https://api.github.com/repos/sevenwire/forgery/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/sevenwire/forgery/forks',
  'full_name': 'sevenwire/forgery',
  'git_commits_url': 'https://api.github.com/repos/sevenwire/forgery/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/sevenwire/forgery/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/sevenwire/forgery/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/sevenwire/forgery/hooks',
  'html_url': 'https://github.com/sevenwire/forgery',
  'id': 322,
  'issue_comment_url': 'https://api.github.com/repos/sevenwire/forgery/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/sevenwire/forgery/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/sevenwire/forgery/issues{/number}',
  'keys_url': 'https://api.github.com/repos/sevenwire/forgery/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/sevenwire/forgery/labels{/name}',
  'languages_url': 'https://api.github.com/repos/sevenwire/forgery/languages',
  'merges_url': 'https://api.github.com/repos/sevenwire/forgery/merges',
  'milestones_url': 'https://api.github.com/repos/sevenwire/forgery/milestones{/number}',
  'name': 'forgery',
  'notifications_url': 'https://api.github.com/repos/sevenwire/forgery/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/150?v=4',
   'events_url': 'https://api.github.com/users/sevenwire/events{/privacy}',
   'followers_url': 'https://api.github.com/users/sevenwire/followers',
   'following_url': 'https://api.github.com/users/sevenwire/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sevenwire/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/sevenwire',
   'id': 150,
   'login': 'sevenwire',
   'organizations_url': 'https://api.github.com/users/sevenwire/orgs',
   'received_events_url': 'https://api.github.com/users/sevenwire/received_events',
   'repos_url': 'https://api.github.com/users/sevenwire/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/sevenwire/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sevenwire/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/sevenwire'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/sevenwire/forgery/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/sevenwire/forgery/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/sevenwire/forgery/stargazers',
  'statuses_url': 'https://api.github.com/repos/sevenwire/forgery/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/sevenwire/forgery/subscribers',
  'subscription_url': 'https://api.github.com/repos/sevenwire/forgery/subscription',
  'tags_url': 'https://api.github.com/repos/sevenwire/forgery/tags',
  'teams_url': 'https://api.github.com/repos/sevenwire/forgery/teams',
  'trees_url': 'https://api.github.com/repos/sevenwire/forgery/git/trees{/sha}',
  'url': 'https://api.github.com/repos/sevenwire/forgery'},
 {'archive_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/comments{/number}',
  'commits_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contributors',
  'deployments_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/deployments',
  'description': 'Ambition adapter for Sphinx',
  'downloads_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/downloads',
  'events_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/forks',
  'full_name': 'technicalpickles/ambitious-sphinx',
  'git_commits_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/hooks',
  'html_url': 'https://github.com/technicalpickles/ambitious-sphinx',
  'id': 324,
  'issue_comment_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues{/number}',
  'keys_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/labels{/name}',
  'languages_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/languages',
  'merges_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/merges',
  'milestones_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/milestones{/number}',
  'name': 'ambitious-sphinx',
  'notifications_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/159?v=4',
   'events_url': 'https://api.github.com/users/technicalpickles/events{/privacy}',
   'followers_url': 'https://api.github.com/users/technicalpickles/followers',
   'following_url': 'https://api.github.com/users/technicalpickles/following{/other_user}',
   'gists_url': 'https://api.github.com/users/technicalpickles/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/technicalpickles',
   'id': 159,
   'login': 'technicalpickles',
   'organizations_url': 'https://api.github.com/users/technicalpickles/orgs',
   'received_events_url': 'https://api.github.com/users/technicalpickles/received_events',
   'repos_url': 'https://api.github.com/users/technicalpickles/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/technicalpickles/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/technicalpickles/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/technicalpickles'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/stargazers',
  'statuses_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscribers',
  'subscription_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscription',
  'tags_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/tags',
  'teams_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/teams',
  'trees_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/trees{/sha}',
  'url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx'},
 {'archive_url': 'https://api.github.com/repos/lazyatom/soup/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/lazyatom/soup/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/lazyatom/soup/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/lazyatom/soup/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/lazyatom/soup/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/lazyatom/soup/comments{/number}',
  'commits_url': 'https://api.github.com/repos/lazyatom/soup/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/lazyatom/soup/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/lazyatom/soup/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/lazyatom/soup/contributors',
  'deployments_url': 'https://api.github.com/repos/lazyatom/soup/deployments',
  'description': "I suppose it's a document database. Or a tuple store. But really, it's just data sloshing around, waiting to be used.",
  'downloads_url': 'https://api.github.com/repos/lazyatom/soup/downloads',
  'events_url': 'https://api.github.com/repos/lazyatom/soup/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/lazyatom/soup/forks',
  'full_name': 'lazyatom/soup',
  'git_commits_url': 'https://api.github.com/repos/lazyatom/soup/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/lazyatom/soup/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/lazyatom/soup/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/lazyatom/soup/hooks',
  'html_url': 'https://github.com/lazyatom/soup',
  'id': 329,
  'issue_comment_url': 'https://api.github.com/repos/lazyatom/soup/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/lazyatom/soup/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/lazyatom/soup/issues{/number}',
  'keys_url': 'https://api.github.com/repos/lazyatom/soup/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/lazyatom/soup/labels{/name}',
  'languages_url': 'https://api.github.com/repos/lazyatom/soup/languages',
  'merges_url': 'https://api.github.com/repos/lazyatom/soup/merges',
  'milestones_url': 'https://api.github.com/repos/lazyatom/soup/milestones{/number}',
  'name': 'soup',
  'notifications_url': 'https://api.github.com/repos/lazyatom/soup/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/145?v=4',
   'events_url': 'https://api.github.com/users/lazyatom/events{/privacy}',
   'followers_url': 'https://api.github.com/users/lazyatom/followers',
   'following_url': 'https://api.github.com/users/lazyatom/following{/other_user}',
   'gists_url': 'https://api.github.com/users/lazyatom/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/lazyatom',
   'id': 145,
   'login': 'lazyatom',
   'organizations_url': 'https://api.github.com/users/lazyatom/orgs',
   'received_events_url': 'https://api.github.com/users/lazyatom/received_events',
   'repos_url': 'https://api.github.com/users/lazyatom/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/lazyatom/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/lazyatom/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/lazyatom'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/lazyatom/soup/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/lazyatom/soup/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/lazyatom/soup/stargazers',
  'statuses_url': 'https://api.github.com/repos/lazyatom/soup/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/lazyatom/soup/subscribers',
  'subscription_url': 'https://api.github.com/repos/lazyatom/soup/subscription',
  'tags_url': 'https://api.github.com/repos/lazyatom/soup/tags',
  'teams_url': 'https://api.github.com/repos/lazyatom/soup/teams',
  'trees_url': 'https://api.github.com/repos/lazyatom/soup/git/trees{/sha}',
  'url': 'https://api.github.com/repos/lazyatom/soup'},
 {'archive_url': 'https://api.github.com/repos/josh/rails/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/josh/rails/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/josh/rails/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/josh/rails/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/josh/rails/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/josh/rails/comments{/number}',
  'commits_url': 'https://api.github.com/repos/josh/rails/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/josh/rails/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/josh/rails/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/josh/rails/contributors',
  'deployments_url': 'https://api.github.com/repos/josh/rails/deployments',
  'description': 'Ruby on Rails',
  'downloads_url': 'https://api.github.com/repos/josh/rails/downloads',
  'events_url': 'https://api.github.com/repos/josh/rails/events',
  'fork': True,
  'forks_url': 'https://api.github.com/repos/josh/rails/forks',
  'full_name': 'josh/rails',
  'git_commits_url': 'https://api.github.com/repos/josh/rails/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/josh/rails/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/josh/rails/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/josh/rails/hooks',
  'html_url': 'https://github.com/josh/rails',
  'id': 332,
  'issue_comment_url': 'https://api.github.com/repos/josh/rails/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/josh/rails/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/josh/rails/issues{/number}',
  'keys_url': 'https://api.github.com/repos/josh/rails/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/josh/rails/labels{/name}',
  'languages_url': 'https://api.github.com/repos/josh/rails/languages',
  'merges_url': 'https://api.github.com/repos/josh/rails/merges',
  'milestones_url': 'https://api.github.com/repos/josh/rails/milestones{/number}',
  'name': 'rails',
  'notifications_url': 'https://api.github.com/repos/josh/rails/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/137?v=4',
   'events_url': 'https://api.github.com/users/josh/events{/privacy}',
   'followers_url': 'https://api.github.com/users/josh/followers',
   'following_url': 'https://api.github.com/users/josh/following{/other_user}',
   'gists_url': 'https://api.github.com/users/josh/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/josh',
   'id': 137,
   'login': 'josh',
   'organizations_url': 'https://api.github.com/users/josh/orgs',
   'received_events_url': 'https://api.github.com/users/josh/received_events',
   'repos_url': 'https://api.github.com/users/josh/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/josh/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/josh/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/josh'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/josh/rails/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/josh/rails/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/josh/rails/stargazers',
  'statuses_url': 'https://api.github.com/repos/josh/rails/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/josh/rails/subscribers',
  'subscription_url': 'https://api.github.com/repos/josh/rails/subscription',
  'tags_url': 'https://api.github.com/repos/josh/rails/tags',
  'teams_url': 'https://api.github.com/repos/josh/rails/teams',
  'trees_url': 'https://api.github.com/repos/josh/rails/git/trees{/sha}',
  'url': 'https://api.github.com/repos/josh/rails'},
 {'archive_url': 'https://api.github.com/repos/cdcarter/backpacking/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/cdcarter/backpacking/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/cdcarter/backpacking/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/cdcarter/backpacking/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/cdcarter/backpacking/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/cdcarter/backpacking/comments{/number}',
  'commits_url': 'https://api.github.com/repos/cdcarter/backpacking/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/cdcarter/backpacking/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/cdcarter/backpacking/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/cdcarter/backpacking/contributors',
  'deployments_url': 'https://api.github.com/repos/cdcarter/backpacking/deployments',
  'description': 'An Io web framework of sorts',
  'downloads_url': 'https://api.github.com/repos/cdcarter/backpacking/downloads',
  'events_url': 'https://api.github.com/repos/cdcarter/backpacking/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/cdcarter/backpacking/forks',
  'full_name': 'cdcarter/backpacking',
  'git_commits_url': 'https://api.github.com/repos/cdcarter/backpacking/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/cdcarter/backpacking/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/cdcarter/backpacking/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/cdcarter/backpacking/hooks',
  'html_url': 'https://github.com/cdcarter/backpacking',
  'id': 334,
  'issue_comment_url': 'https://api.github.com/repos/cdcarter/backpacking/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/cdcarter/backpacking/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/cdcarter/backpacking/issues{/number}',
  'keys_url': 'https://api.github.com/repos/cdcarter/backpacking/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/cdcarter/backpacking/labels{/name}',
  'languages_url': 'https://api.github.com/repos/cdcarter/backpacking/languages',
  'merges_url': 'https://api.github.com/repos/cdcarter/backpacking/merges',
  'milestones_url': 'https://api.github.com/repos/cdcarter/backpacking/milestones{/number}',
  'name': 'backpacking',
  'notifications_url': 'https://api.github.com/repos/cdcarter/backpacking/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/164?v=4',
   'events_url': 'https://api.github.com/users/cdcarter/events{/privacy}',
   'followers_url': 'https://api.github.com/users/cdcarter/followers',
   'following_url': 'https://api.github.com/users/cdcarter/following{/other_user}',
   'gists_url': 'https://api.github.com/users/cdcarter/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/cdcarter',
   'id': 164,
   'login': 'cdcarter',
   'organizations_url': 'https://api.github.com/users/cdcarter/orgs',
   'received_events_url': 'https://api.github.com/users/cdcarter/received_events',
   'repos_url': 'https://api.github.com/users/cdcarter/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/cdcarter/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/cdcarter/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/cdcarter'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/cdcarter/backpacking/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/cdcarter/backpacking/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/cdcarter/backpacking/stargazers',
  'statuses_url': 'https://api.github.com/repos/cdcarter/backpacking/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/cdcarter/backpacking/subscribers',
  'subscription_url': 'https://api.github.com/repos/cdcarter/backpacking/subscription',
  'tags_url': 'https://api.github.com/repos/cdcarter/backpacking/tags',
  'teams_url': 'https://api.github.com/repos/cdcarter/backpacking/teams',
  'trees_url': 'https://api.github.com/repos/cdcarter/backpacking/git/trees{/sha}',
  'url': 'https://api.github.com/repos/cdcarter/backpacking'},
 {'archive_url': 'https://api.github.com/repos/jnewland/capsize/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/jnewland/capsize/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/jnewland/capsize/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/jnewland/capsize/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/jnewland/capsize/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/jnewland/capsize/comments{/number}',
  'commits_url': 'https://api.github.com/repos/jnewland/capsize/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/jnewland/capsize/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/jnewland/capsize/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/jnewland/capsize/contributors',
  'deployments_url': 'https://api.github.com/repos/jnewland/capsize/deployments',
  'description': 'A Capistrano extension for managing and running your app on Amazon EC2.',
  'downloads_url': 'https://api.github.com/repos/jnewland/capsize/downloads',
  'events_url': 'https://api.github.com/repos/jnewland/capsize/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/jnewland/capsize/forks',
  'full_name': 'jnewland/capsize',
  'git_commits_url': 'https://api.github.com/repos/jnewland/capsize/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/jnewland/capsize/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/jnewland/capsize/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/jnewland/capsize/hooks',
  'html_url': 'https://github.com/jnewland/capsize',
  'id': 339,
  'issue_comment_url': 'https://api.github.com/repos/jnewland/capsize/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/jnewland/capsize/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/jnewland/capsize/issues{/number}',
  'keys_url': 'https://api.github.com/repos/jnewland/capsize/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/jnewland/capsize/labels{/name}',
  'languages_url': 'https://api.github.com/repos/jnewland/capsize/languages',
  'merges_url': 'https://api.github.com/repos/jnewland/capsize/merges',
  'milestones_url': 'https://api.github.com/repos/jnewland/capsize/milestones{/number}',
  'name': 'capsize',
  'notifications_url': 'https://api.github.com/repos/jnewland/capsize/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',
   'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',
   'followers_url': 'https://api.github.com/users/jnewland/followers',
   'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',
   'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/jnewland',
   'id': 47,
   'login': 'jnewland',
   'organizations_url': 'https://api.github.com/users/jnewland/orgs',
   'received_events_url': 'https://api.github.com/users/jnewland/received_events',
   'repos_url': 'https://api.github.com/users/jnewland/repos',
   'site_admin': True,
   'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/jnewland'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/jnewland/capsize/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/jnewland/capsize/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/jnewland/capsize/stargazers',
  'statuses_url': 'https://api.github.com/repos/jnewland/capsize/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/jnewland/capsize/subscribers',
  'subscription_url': 'https://api.github.com/repos/jnewland/capsize/subscription',
  'tags_url': 'https://api.github.com/repos/jnewland/capsize/tags',
  'teams_url': 'https://api.github.com/repos/jnewland/capsize/teams',
  'trees_url': 'https://api.github.com/repos/jnewland/capsize/git/trees{/sha}',
  'url': 'https://api.github.com/repos/jnewland/capsize'},
 {'archive_url': 'https://api.github.com/repos/bs/starling/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/bs/starling/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/bs/starling/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/bs/starling/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/bs/starling/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/bs/starling/comments{/number}',
  'commits_url': 'https://api.github.com/repos/bs/starling/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/bs/starling/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/bs/starling/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/bs/starling/contributors',
  'deployments_url': 'https://api.github.com/repos/bs/starling/deployments',
  'description': 'Starling Message Queue',
  'downloads_url': 'https://api.github.com/repos/bs/starling/downloads',
  'events_url': 'https://api.github.com/repos/bs/starling/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/bs/starling/forks',
  'full_name': 'bs/starling',
  'git_commits_url': 'https://api.github.com/repos/bs/starling/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/bs/starling/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/bs/starling/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/bs/starling/hooks',
  'html_url': 'https://github.com/bs/starling',
  'id': 351,
  'issue_comment_url': 'https://api.github.com/repos/bs/starling/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/bs/starling/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/bs/starling/issues{/number}',
  'keys_url': 'https://api.github.com/repos/bs/starling/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/bs/starling/labels{/name}',
  'languages_url': 'https://api.github.com/repos/bs/starling/languages',
  'merges_url': 'https://api.github.com/repos/bs/starling/merges',
  'milestones_url': 'https://api.github.com/repos/bs/starling/milestones{/number}',
  'name': 'starling',
  'notifications_url': 'https://api.github.com/repos/bs/starling/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/68?v=4',
   'events_url': 'https://api.github.com/users/bs/events{/privacy}',
   'followers_url': 'https://api.github.com/users/bs/followers',
   'following_url': 'https://api.github.com/users/bs/following{/other_user}',
   'gists_url': 'https://api.github.com/users/bs/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/bs',
   'id': 68,
   'login': 'bs',
   'organizations_url': 'https://api.github.com/users/bs/orgs',
   'received_events_url': 'https://api.github.com/users/bs/received_events',
   'repos_url': 'https://api.github.com/users/bs/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/bs/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/bs/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/bs'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/bs/starling/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/bs/starling/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/bs/starling/stargazers',
  'statuses_url': 'https://api.github.com/repos/bs/starling/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/bs/starling/subscribers',
  'subscription_url': 'https://api.github.com/repos/bs/starling/subscription',
  'tags_url': 'https://api.github.com/repos/bs/starling/tags',
  'teams_url': 'https://api.github.com/repos/bs/starling/teams',
  'trees_url': 'https://api.github.com/repos/bs/starling/git/trees{/sha}',
  'url': 'https://api.github.com/repos/bs/starling'},
 {'archive_url': 'https://api.github.com/repos/sr/ape/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/sr/ape/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/sr/ape/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/sr/ape/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/sr/ape/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/sr/ape/comments{/number}',
  'commits_url': 'https://api.github.com/repos/sr/ape/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/sr/ape/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/sr/ape/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/sr/ape/contributors',
  'deployments_url': 'https://api.github.com/repos/sr/ape/deployments',
  'description': 'The Atom Protocol Exerciser',
  'downloads_url': 'https://api.github.com/repos/sr/ape/downloads',
  'events_url': 'https://api.github.com/repos/sr/ape/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/sr/ape/forks',
  'full_name': 'sr/ape',
  'git_commits_url': 'https://api.github.com/repos/sr/ape/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/sr/ape/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/sr/ape/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/sr/ape/hooks',
  'html_url': 'https://github.com/sr/ape',
  'id': 360,
  'issue_comment_url': 'https://api.github.com/repos/sr/ape/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/sr/ape/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/sr/ape/issues{/number}',
  'keys_url': 'https://api.github.com/repos/sr/ape/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/sr/ape/labels{/name}',
  'languages_url': 'https://api.github.com/repos/sr/ape/languages',
  'merges_url': 'https://api.github.com/repos/sr/ape/merges',
  'milestones_url': 'https://api.github.com/repos/sr/ape/milestones{/number}',
  'name': 'ape',
  'notifications_url': 'https://api.github.com/repos/sr/ape/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',
   'events_url': 'https://api.github.com/users/sr/events{/privacy}',
   'followers_url': 'https://api.github.com/users/sr/followers',
   'following_url': 'https://api.github.com/users/sr/following{/other_user}',
   'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/sr',
   'id': 90,
   'login': 'sr',
   'organizations_url': 'https://api.github.com/users/sr/orgs',
   'received_events_url': 'https://api.github.com/users/sr/received_events',
   'repos_url': 'https://api.github.com/users/sr/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',
   'type': 'User',
   'url': 'https://api.github.com/users/sr'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/sr/ape/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/sr/ape/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/sr/ape/stargazers',
  'statuses_url': 'https://api.github.com/repos/sr/ape/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/sr/ape/subscribers',
  'subscription_url': 'https://api.github.com/repos/sr/ape/subscription',
  'tags_url': 'https://api.github.com/repos/sr/ape/tags',
  'teams_url': 'https://api.github.com/repos/sr/ape/teams',
  'trees_url': 'https://api.github.com/repos/sr/ape/git/trees{/sha}',
  'url': 'https://api.github.com/repos/sr/ape'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/awesomeness/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/awesomeness/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/awesomeness/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/awesomeness/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/awesomeness/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/awesomeness/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/awesomeness/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/awesomeness/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/awesomeness/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/awesomeness/deployments',
  'description': "Collective Idea's Awesomeness.  A collection of useful Rails bits and pieces.",
  'downloads_url': 'https://api.github.com/repos/collectiveidea/awesomeness/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/awesomeness/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/awesomeness/forks',
  'full_name': 'collectiveidea/awesomeness',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/awesomeness/hooks',
  'html_url': 'https://github.com/collectiveidea/awesomeness',
  'id': 362,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/awesomeness/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/awesomeness/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/awesomeness/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/awesomeness/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/awesomeness/milestones{/number}',
  'name': 'awesomeness',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/awesomeness/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/awesomeness/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/awesomeness/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/awesomeness/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/awesomeness/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/awesomeness/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/awesomeness/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/awesomeness/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/awesomeness/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/awesomeness'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/audited/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/audited/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/audited/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/audited/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/audited/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/audited/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/audited/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/audited/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/audited/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/audited/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/audited/deployments',
  'description': 'Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.',
  'downloads_url': 'https://api.github.com/repos/collectiveidea/audited/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/audited/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/audited/forks',
  'full_name': 'collectiveidea/audited',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/audited/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/audited/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/audited/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/audited/hooks',
  'html_url': 'https://github.com/collectiveidea/audited',
  'id': 363,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/audited/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/audited/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/audited/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/audited/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/audited/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/audited/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/audited/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/audited/milestones{/number}',
  'name': 'audited',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/audited/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/audited/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/audited/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/audited/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/audited/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/audited/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/audited/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/audited/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/audited/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/audited/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/audited'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/deployments',
  'description': 'Simple geocoding for Active Record models',
  'downloads_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/forks',
  'full_name': 'collectiveidea/acts_as_geocodable',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/hooks',
  'html_url': 'https://github.com/collectiveidea/acts_as_geocodable',
  'id': 364,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/milestones{/number}',
  'name': 'acts_as_geocodable',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/deployments',
  'description': 'an Active Record plugin that makes it easier to work with the money gem',
  'downloads_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/forks',
  'full_name': 'collectiveidea/acts_as_money',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/hooks',
  'html_url': 'https://github.com/collectiveidea/acts_as_money',
  'id': 365,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/milestones{/number}',
  'name': 'acts_as_money',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/acts_as_money'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/deployments',
  'description': None,
  'downloads_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/forks',
  'full_name': 'collectiveidea/calendar_builder',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/hooks',
  'html_url': 'https://github.com/collectiveidea/calendar_builder',
  'id': 367,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/milestones{/number}',
  'name': 'calendar_builder',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/calendar_builder'},
 {'archive_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/{archive_format}{/ref}',
  'assignees_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/assignees{/user}',
  'blobs_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/blobs{/sha}',
  'branches_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/branches{/branch}',
  'collaborators_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/collaborators{/collaborator}',
  'comments_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/comments{/number}',
  'commits_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/commits{/sha}',
  'compare_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/compare/{base}...{head}',
  'contents_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/contents/{+path}',
  'contributors_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/contributors',
  'deployments_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/deployments',
  'description': 'When Active Record objects are saved from a form, empty fields are saved as empty strings instead of nil.  This kills most validations.',
  'downloads_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/downloads',
  'events_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/events',
  'fork': False,
  'forks_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/forks',
  'full_name': 'collectiveidea/clear_empty_attributes',
  'git_commits_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/commits{/sha}',
  'git_refs_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/refs{/sha}',
  'git_tags_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/tags{/sha}',
  'hooks_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/hooks',
  'html_url': 'https://github.com/collectiveidea/clear_empty_attributes',
  'id': 368,
  'issue_comment_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/comments{/number}',
  'issue_events_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/events{/number}',
  'issues_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues{/number}',
  'keys_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/keys{/key_id}',
  'labels_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/labels{/name}',
  'languages_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/languages',
  'merges_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/merges',
  'milestones_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/milestones{/number}',
  'name': 'clear_empty_attributes',
  'notifications_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/notifications{?since,all,participating}',
  'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',
   'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',
   'followers_url': 'https://api.github.com/users/collectiveidea/followers',
   'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',
   'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',
   'gravatar_id': '',
   'html_url': 'https://github.com/collectiveidea',
   'id': 128,
   'login': 'collectiveidea',
   'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',
   'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',
   'repos_url': 'https://api.github.com/users/collectiveidea/repos',
   'site_admin': False,
   'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',
   'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',
   'type': 'Organization',
   'url': 'https://api.github.com/users/collectiveidea'},
  'private': False,
  'pulls_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/pulls{/number}',
  'releases_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/releases{/id}',
  'stargazers_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/stargazers',
  'statuses_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/statuses/{sha}',
  'subscribers_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscribers',
  'subscription_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscription',
  'tags_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/tags',
  'teams_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/teams',
  'trees_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/trees{/sha}',
  'url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes'}]
In [33]:
d[0]
Out[33]:
{'archive_url': 'https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}',
 'assignees_url': 'https://api.github.com/repos/mojombo/grit/assignees{/user}',
 'blobs_url': 'https://api.github.com/repos/mojombo/grit/git/blobs{/sha}',
 'branches_url': 'https://api.github.com/repos/mojombo/grit/branches{/branch}',
 'collaborators_url': 'https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}',
 'comments_url': 'https://api.github.com/repos/mojombo/grit/comments{/number}',
 'commits_url': 'https://api.github.com/repos/mojombo/grit/commits{/sha}',
 'compare_url': 'https://api.github.com/repos/mojombo/grit/compare/{base}...{head}',
 'contents_url': 'https://api.github.com/repos/mojombo/grit/contents/{+path}',
 'contributors_url': 'https://api.github.com/repos/mojombo/grit/contributors',
 'deployments_url': 'https://api.github.com/repos/mojombo/grit/deployments',
 'description': '**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.',
 'downloads_url': 'https://api.github.com/repos/mojombo/grit/downloads',
 'events_url': 'https://api.github.com/repos/mojombo/grit/events',
 'fork': False,
 'forks_url': 'https://api.github.com/repos/mojombo/grit/forks',
 'full_name': 'mojombo/grit',
 'git_commits_url': 'https://api.github.com/repos/mojombo/grit/git/commits{/sha}',
 'git_refs_url': 'https://api.github.com/repos/mojombo/grit/git/refs{/sha}',
 'git_tags_url': 'https://api.github.com/repos/mojombo/grit/git/tags{/sha}',
 'hooks_url': 'https://api.github.com/repos/mojombo/grit/hooks',
 'html_url': 'https://github.com/mojombo/grit',
 'id': 1,
 'issue_comment_url': 'https://api.github.com/repos/mojombo/grit/issues/comments{/number}',
 'issue_events_url': 'https://api.github.com/repos/mojombo/grit/issues/events{/number}',
 'issues_url': 'https://api.github.com/repos/mojombo/grit/issues{/number}',
 'keys_url': 'https://api.github.com/repos/mojombo/grit/keys{/key_id}',
 'labels_url': 'https://api.github.com/repos/mojombo/grit/labels{/name}',
 'languages_url': 'https://api.github.com/repos/mojombo/grit/languages',
 'merges_url': 'https://api.github.com/repos/mojombo/grit/merges',
 'milestones_url': 'https://api.github.com/repos/mojombo/grit/milestones{/number}',
 'name': 'grit',
 'notifications_url': 'https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}',
 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',
  'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',
  'followers_url': 'https://api.github.com/users/mojombo/followers',
  'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',
  'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',
  'gravatar_id': '',
  'html_url': 'https://github.com/mojombo',
  'id': 1,
  'login': 'mojombo',
  'organizations_url': 'https://api.github.com/users/mojombo/orgs',
  'received_events_url': 'https://api.github.com/users/mojombo/received_events',
  'repos_url': 'https://api.github.com/users/mojombo/repos',
  'site_admin': False,
  'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',
  'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',
  'type': 'User',
  'url': 'https://api.github.com/users/mojombo'},
 'private': False,
 'pulls_url': 'https://api.github.com/repos/mojombo/grit/pulls{/number}',
 'releases_url': 'https://api.github.com/repos/mojombo/grit/releases{/id}',
 'stargazers_url': 'https://api.github.com/repos/mojombo/grit/stargazers',
 'statuses_url': 'https://api.github.com/repos/mojombo/grit/statuses/{sha}',
 'subscribers_url': 'https://api.github.com/repos/mojombo/grit/subscribers',
 'subscription_url': 'https://api.github.com/repos/mojombo/grit/subscription',
 'tags_url': 'https://api.github.com/repos/mojombo/grit/tags',
 'teams_url': 'https://api.github.com/repos/mojombo/grit/teams',
 'trees_url': 'https://api.github.com/repos/mojombo/grit/git/trees{/sha}',
 'url': 'https://api.github.com/repos/mojombo/grit'}
In [34]:
d[0]["description"]
Out[34]:
'**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.'
In [37]:
# To construct a list of names, descriptions, and url

# remember we need a list of records
df_data = []

# you can loop lists
for x in d:
    data_item = {
        "name": x["name"],
        "description": x["description"],
        "url": x["url"],
    }
    df_data.append(data_item)

pd.DataFrame(df_data)
Out[37]:
description name url
0 **Grit is no longer maintained. Check out libg... grit https://api.github.com/repos/mojombo/grit
1 Merb Core: All you need. None you don't. merb-core https://api.github.com/repos/wycats/merb-core
2 The Rubinius Language Platform rubinius https://api.github.com/repos/rubinius/rubinius
3 Ruby process monitor god https://api.github.com/repos/mojombo/god
4 Awesome JSON jsawesome https://api.github.com/repos/vanpelt/jsawesome
5 A JavaScript BDD Testing Library jspec https://api.github.com/repos/wycats/jspec
6 Unmaintained. Sorry. exception_logger https://api.github.com/repos/defunkt/exception...
7 include Enumerable — Unmaintained ambition https://api.github.com/repos/defunkt/ambition
8 Generates common user authentication code for ... restful-authentication https://api.github.com/repos/technoweenie/rest...
9 Treat an ActiveRecord model as a file attachme... attachment_fu https://api.github.com/repos/technoweenie/atta...
10 SUPER OLD STUFF microsis https://api.github.com/repos/Caged/microsis
11 psuedo s3 protocol for mozilla browsers s3 https://api.github.com/repos/anotherjesse/s3
12 The solution for tabitus of the browser taboo https://api.github.com/repos/anotherjesse/taboo
13 firefox trac integration foxtracs https://api.github.com/repos/anotherjesse/foxt...
14 Flash photo widget prototype - hacked at last ... fotomatic https://api.github.com/repos/anotherjesse/foto...
15 A realtime, OpenGL graphing library for Ruby glowstick https://api.github.com/repos/mojombo/glowstick
16 None starling https://api.github.com/repos/defunkt/starling
17 Merb More: The Full Stack. Take what you need;... merb-more https://api.github.com/repos/wycats/merb-more
18 A very fast & simple Ruby web server thin https://api.github.com/repos/macournoyer/thin
19 Rails RESTful controller abstraction plugin. resource_controller https://api.github.com/repos/jamesgolick/resou...
20 Markaby patched to run on rails 2.0.2 markaby https://api.github.com/repos/jamesgolick/markaby
21 None enum_field https://api.github.com/repos/jamesgolick/enum_...
22 Subtlety: SVN => RSS, hAtom => Atom subtlety https://api.github.com/repos/defunkt/subtlety
23 Zippy lil’ zipcode lib. zippy https://api.github.com/repos/defunkt/zippy
24 Ghost from Christmas past. Unmaintained. cache_fu https://api.github.com/repos/defunkt/cache_fu
25 A ruby library to inexpensively emit runtime ... phosphor https://api.github.com/repos/KirinDave/phosphor
26 (offically at github.com/sinatra/sinatra) Clas... sinatra https://api.github.com/repos/bmizerany/sinatra
27 Prototype/Javascript wrapper for the Google Se... gsa-prototype https://api.github.com/repos/jnewland/gsa-prot...
28 Syncs one directory to another (example: a git... duplikate https://api.github.com/repos/technoweenie/dupl...
29 Proof of concept Lazy-Loading for ActiveRecord... lazy_record https://api.github.com/repos/jnewland/lazy_record
... ... ... ...
70 Rorem is a random data generator rorem https://api.github.com/repos/jnicklas/rorem
71 Simple tool to help track vendor branches in a... braid https://api.github.com/repos/cristibalan/braid
72 UploadColumn is no longer maintained, check ou... uploadcolumn https://api.github.com/repos/jnicklas/uploadco...
73 Ruby on Rails TextMate bundle [master branch i... ruby-on-rails-tmbundle https://api.github.com/repos/simonjefford/ruby...
74 OUTDATED mirror of Rack's darcs repository, us... rack-mirror https://api.github.com/repos/chneukirchen/rack...
75 (experimental) Mirror of the coset darcs repos... coset-mirror https://api.github.com/repos/chneukirchen/cose...
76 JavaScript Unit Test TextMate Bundle [for prot... javascript-unittest-tmbundle https://api.github.com/repos/drnic/javascript-...
77 Engine Yard specific capistrano recipes eycap https://api.github.com/repos/engineyard/eycap
78 basic darcsum feelalike for Git gitsum https://api.github.com/repos/chneukirchen/gitsum
79 Sequel::Model (No longer working on this project) sequel-model https://api.github.com/repos/wayneeseguin/sequ...
80 Ruby process monitor god https://api.github.com/repos/kevinclark/god
81 blerb running on merb-core blerb-core https://api.github.com/repos/hornbeck/blerb-core
82 utilities for implementing a modified pre-orde... django-mptt https://api.github.com/repos/brosner/django-mptt
83 a Scheme written in Ruby, but implemented on t... bus-scheme https://api.github.com/repos/technomancy/bus-s...
84 Useful pieces of JavaScript. Some old, some new. javascript-bits https://api.github.com/repos/Caged/javascript-...
85 Ruby parsers for some Adobe file formats. groomlake https://api.github.com/repos/Caged/groomlake
86 Easy and customizable generation of forged data. forgery https://api.github.com/repos/sevenwire/forgery
87 Ambition adapter for Sphinx ambitious-sphinx https://api.github.com/repos/technicalpickles/...
88 I suppose it's a document database. Or a tuple... soup https://api.github.com/repos/lazyatom/soup
89 Ruby on Rails rails https://api.github.com/repos/josh/rails
90 An Io web framework of sorts backpacking https://api.github.com/repos/cdcarter/backpacking
91 A Capistrano extension for managing and runnin... capsize https://api.github.com/repos/jnewland/capsize
92 Starling Message Queue starling https://api.github.com/repos/bs/starling
93 The Atom Protocol Exerciser ape https://api.github.com/repos/sr/ape
94 Collective Idea's Awesomeness. A collection o... awesomeness https://api.github.com/repos/collectiveidea/aw...
95 Audited (formerly acts_as_audited) is an ORM e... audited https://api.github.com/repos/collectiveidea/au...
96 Simple geocoding for Active Record models acts_as_geocodable https://api.github.com/repos/collectiveidea/ac...
97 an Active Record plugin that makes it easier t... acts_as_money https://api.github.com/repos/collectiveidea/ac...
98 None calendar_builder https://api.github.com/repos/collectiveidea/ca...
99 When Active Record objects are saved from a fo... clear_empty_attributes https://api.github.com/repos/collectiveidea/cl...

100 rows × 3 columns

In [38]:
# Using list comprehensions
# You can do what we did last cell with a single line
df_data = [
    {
        "name": x["name"],
        "description": x["description"],
        "url": x["url"],
    } for x in d]


pd.DataFrame(df_data)
Out[38]:
description name url
0 **Grit is no longer maintained. Check out libg... grit https://api.github.com/repos/mojombo/grit
1 Merb Core: All you need. None you don't. merb-core https://api.github.com/repos/wycats/merb-core
2 The Rubinius Language Platform rubinius https://api.github.com/repos/rubinius/rubinius
3 Ruby process monitor god https://api.github.com/repos/mojombo/god
4 Awesome JSON jsawesome https://api.github.com/repos/vanpelt/jsawesome
5 A JavaScript BDD Testing Library jspec https://api.github.com/repos/wycats/jspec
6 Unmaintained. Sorry. exception_logger https://api.github.com/repos/defunkt/exception...
7 include Enumerable — Unmaintained ambition https://api.github.com/repos/defunkt/ambition
8 Generates common user authentication code for ... restful-authentication https://api.github.com/repos/technoweenie/rest...
9 Treat an ActiveRecord model as a file attachme... attachment_fu https://api.github.com/repos/technoweenie/atta...
10 SUPER OLD STUFF microsis https://api.github.com/repos/Caged/microsis
11 psuedo s3 protocol for mozilla browsers s3 https://api.github.com/repos/anotherjesse/s3
12 The solution for tabitus of the browser taboo https://api.github.com/repos/anotherjesse/taboo
13 firefox trac integration foxtracs https://api.github.com/repos/anotherjesse/foxt...
14 Flash photo widget prototype - hacked at last ... fotomatic https://api.github.com/repos/anotherjesse/foto...
15 A realtime, OpenGL graphing library for Ruby glowstick https://api.github.com/repos/mojombo/glowstick
16 None starling https://api.github.com/repos/defunkt/starling
17 Merb More: The Full Stack. Take what you need;... merb-more https://api.github.com/repos/wycats/merb-more
18 A very fast & simple Ruby web server thin https://api.github.com/repos/macournoyer/thin
19 Rails RESTful controller abstraction plugin. resource_controller https://api.github.com/repos/jamesgolick/resou...
20 Markaby patched to run on rails 2.0.2 markaby https://api.github.com/repos/jamesgolick/markaby
21 None enum_field https://api.github.com/repos/jamesgolick/enum_...
22 Subtlety: SVN => RSS, hAtom => Atom subtlety https://api.github.com/repos/defunkt/subtlety
23 Zippy lil’ zipcode lib. zippy https://api.github.com/repos/defunkt/zippy
24 Ghost from Christmas past. Unmaintained. cache_fu https://api.github.com/repos/defunkt/cache_fu
25 A ruby library to inexpensively emit runtime ... phosphor https://api.github.com/repos/KirinDave/phosphor
26 (offically at github.com/sinatra/sinatra) Clas... sinatra https://api.github.com/repos/bmizerany/sinatra
27 Prototype/Javascript wrapper for the Google Se... gsa-prototype https://api.github.com/repos/jnewland/gsa-prot...
28 Syncs one directory to another (example: a git... duplikate https://api.github.com/repos/technoweenie/dupl...
29 Proof of concept Lazy-Loading for ActiveRecord... lazy_record https://api.github.com/repos/jnewland/lazy_record
... ... ... ...
70 Rorem is a random data generator rorem https://api.github.com/repos/jnicklas/rorem
71 Simple tool to help track vendor branches in a... braid https://api.github.com/repos/cristibalan/braid
72 UploadColumn is no longer maintained, check ou... uploadcolumn https://api.github.com/repos/jnicklas/uploadco...
73 Ruby on Rails TextMate bundle [master branch i... ruby-on-rails-tmbundle https://api.github.com/repos/simonjefford/ruby...
74 OUTDATED mirror of Rack's darcs repository, us... rack-mirror https://api.github.com/repos/chneukirchen/rack...
75 (experimental) Mirror of the coset darcs repos... coset-mirror https://api.github.com/repos/chneukirchen/cose...
76 JavaScript Unit Test TextMate Bundle [for prot... javascript-unittest-tmbundle https://api.github.com/repos/drnic/javascript-...
77 Engine Yard specific capistrano recipes eycap https://api.github.com/repos/engineyard/eycap
78 basic darcsum feelalike for Git gitsum https://api.github.com/repos/chneukirchen/gitsum
79 Sequel::Model (No longer working on this project) sequel-model https://api.github.com/repos/wayneeseguin/sequ...
80 Ruby process monitor god https://api.github.com/repos/kevinclark/god
81 blerb running on merb-core blerb-core https://api.github.com/repos/hornbeck/blerb-core
82 utilities for implementing a modified pre-orde... django-mptt https://api.github.com/repos/brosner/django-mptt
83 a Scheme written in Ruby, but implemented on t... bus-scheme https://api.github.com/repos/technomancy/bus-s...
84 Useful pieces of JavaScript. Some old, some new. javascript-bits https://api.github.com/repos/Caged/javascript-...
85 Ruby parsers for some Adobe file formats. groomlake https://api.github.com/repos/Caged/groomlake
86 Easy and customizable generation of forged data. forgery https://api.github.com/repos/sevenwire/forgery
87 Ambition adapter for Sphinx ambitious-sphinx https://api.github.com/repos/technicalpickles/...
88 I suppose it's a document database. Or a tuple... soup https://api.github.com/repos/lazyatom/soup
89 Ruby on Rails rails https://api.github.com/repos/josh/rails
90 An Io web framework of sorts backpacking https://api.github.com/repos/cdcarter/backpacking
91 A Capistrano extension for managing and runnin... capsize https://api.github.com/repos/jnewland/capsize
92 Starling Message Queue starling https://api.github.com/repos/bs/starling
93 The Atom Protocol Exerciser ape https://api.github.com/repos/sr/ape
94 Collective Idea's Awesomeness. A collection o... awesomeness https://api.github.com/repos/collectiveidea/aw...
95 Audited (formerly acts_as_audited) is an ORM e... audited https://api.github.com/repos/collectiveidea/au...
96 Simple geocoding for Active Record models acts_as_geocodable https://api.github.com/repos/collectiveidea/ac...
97 an Active Record plugin that makes it easier t... acts_as_money https://api.github.com/repos/collectiveidea/ac...
98 None calendar_builder https://api.github.com/repos/collectiveidea/ca...
99 When Active Record objects are saved from a fo... clear_empty_attributes https://api.github.com/repos/collectiveidea/cl...

100 rows × 3 columns

Twitter Access

Using tweepy

install using:

pip install tweepy

You will also need to setup credentials for your application from apps.twitter.com

In [40]:
import tweepy

# The following values are needed for authentication
# They can be obtained from apps.twitter.com
# I have hidden them for security reasons
consumer_key = "**HIDDEN**"
consumer_secret = "**HIDDEN**"
access_token = "**HIDDEN**"
access_token_secret = "**HIDDEN**"

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

# create the authenticated api object
api = tweepy.API(auth)
In [41]:
# Now you can fetch the data that you need
# let's fetch the followers for @zainkuwait
zain_followers = api.followers("zainkuwait")

zain_followers will contain a list of User objects

To know what attributes the users will have you can check the user object reference from twitter

In [46]:
# Lets construct a list of records using list comprehension

follower_data_list = [
    {
        # Remeber, User is an object not a dictionary
        "screen_name": x.screen_name,
        "location": x.location,
        "description": x.description,
        "protected": x.protected,
        "followers_count": x.followers_count,
        "favourites_count": x.favourites_count,
        "statuses_count": x.statuses_count,
        "created_at": x.created_at,
    } for x in zain_followers
]

pd.DataFrame(follower_data_list)
Out[46]:
created_at description favourites_count followers_count location protected screen_name statuses_count
0 2017-11-18 15:55:35 0 0 False tninhszizuhqd41 0
1 2017-11-12 20:13:57 0 0 False jvfTv4KIBgzZUla 0
2 2017-11-18 15:38:16 0 0 False mRgZgj6rETxAP0u 0
3 2017-11-18 15:22:06 1 4 False 8Dlb6cTzeNFtulj 0
4 2012-06-14 05:37:50 1996 3 kuwait True Q8_lanko 0
5 2017-11-16 18:33:53 0 6 الاحمدى, دولة الكويت False saidfaw79658353 0
6 2017-08-31 14:20:41 0 2 False Oussama35543613 0
7 2017-11-18 14:54:20 0 0 False sherlysimpson11 0
8 2017-11-13 18:53:38 48 27 دولة الكويت False abdulla13469511 3
9 2016-10-18 11:05:30 82 50 Kuwait True AmrKhal42267963 52
10 2017-11-17 05:45:17 محدش مرتاح 7 3 جليب الشيوخ, دولة الكويت False etJblAerk4Qyd0w 6
11 2017-10-27 09:59:52 263 11 الفروانيه, دولة الكويت False u9gnR8XZ2qIRdLO 60
12 2017-10-09 14:47:19 I LIKE BATMAN AND TURTULS 34 4 دولة الكويت False FAHAD_ALDEEN 11
13 2017-10-10 05:03:25 0 0 False gehad_kretnah 0
14 2017-11-18 13:41:41 1 1 False Jamal19838614 0
15 2017-11-18 13:34:15 0 1 False vennieackarie22 0
16 2017-11-17 10:28:48 Be Brave 🦋 6 5 False 89Khuloud 13
17 2017-11-18 12:05:39 ‏‏‏بتلاقيني جنبك وقت إنكسارك ، تطمنّ ما أشبهك. 1 9 الكويت False AbrarMarzouq 4
18 2015-10-03 18:54:30 #نآقد_يوفنتيني (@MisterLippi) #Scudetto35 #LE6... 35 240 Turin, Piedmont False MrLippi_Q8 2082
19 2010-12-14 18:27:08 اكاديمي كويتي متقاعد يهوي الضحك ويعشق سكيك الك... 2361 1437 False q8smily 8773
In [70]:
# lets place the data in a variable
x = pd.DataFrame(follower_data_list)

# lets find out how many user zainkuwait has
zain_kw = api.get_user("zainkuwait")

zain_kw.followers_count
Out[70]:
519510

Rate limiting

With such a large number twitter will prevent us from fetching all the users. This is known as Rate Limiting

The way around it is:

  • Using cursors to fetch multiple pages
  • Fetching data over a longer period of time
  • Using multiple computers and apps to fetch different pages
  • Combining the collected data
In [ ]:
# lets fetch 3 pages only
# each page will contain 20 followers
# we can change that to a maximum of 200

follower_df = None
for followers_page in tweepy.Cursor(api.followers, screen_name="zainkuwait", count=200).pages(3):
    # construct a dataframe with every page
    follower_data_list = [
        {
            # Remeber, User is an object not a dictionary
            "screen_name": x.screen_name,
            "location": x.location,
            "description": x.description,
            "protected": x.protected,
            "followers_count": x.followers_count,
            "favourites_count": x.favourites_count,
            "statuses_count": x.statuses_count,
            "created_at": x.created_at,
        } for x in followers_page
    ]

    if follower_df is None:
        follower_df = pd.DataFrame(follower_data_list)
    else:
        follower_df = follower_df.append(pd.DataFrame(follower_data_list), ignore_index=True)
In [87]:
len(follower_df)
Out[87]:
600
In [100]:
follower_df.head(10)
Out[100]:
created_at description favourites_count followers_count location protected screen_name statuses_count
0 2017-11-13 00:47:15 0 0 بيتي False Ketman_8lm 4
1 2017-11-18 15:08:23 0 0 False zN0eAegNnhq6MbM 0
2 2017-11-18 15:55:35 0 0 False tninhszizuhqd41 0
3 2017-11-12 20:13:57 0 0 False jvfTv4KIBgzZUla 0
4 2017-11-18 15:38:16 0 0 False mRgZgj6rETxAP0u 0
5 2017-11-18 15:22:06 1 4 False 8Dlb6cTzeNFtulj 0
6 2012-06-14 05:37:50 1996 3 kuwait True Q8_lanko 0
7 2017-11-16 18:33:53 0 6 الاحمدى, دولة الكويت False saidfaw79658353 0
8 2017-08-31 14:20:41 0 3 False Oussama35543613 0
9 2017-11-18 14:54:20 0 0 False sherlysimpson11 0
In [101]:
follower_df.tail(10)
Out[101]:
created_at description favourites_count followers_count location protected screen_name statuses_count
590 2017-11-12 00:20:19 أشهد أن لا إله إلا الله وأشهد أن سيدنا محمد عب... 1 12 السالمية, دولة الكويت False Ibrahim74588329 0
591 2017-11-11 17:45:51 الأخبار العامة أخبار العالم العلوم و التكنولوجيا 101 10 False laila_aleidan 16
592 2011-11-22 22:37:05 0 13 False ibad80 1
593 2017-11-11 23:25:33 0 1 False Y69fP456EU8ND9V 0
594 2017-11-11 22:34:57 0 12 Kuwait False moalsuwailem1 0
595 2017-10-08 21:51:35 0 2 False Tbmf3 0
596 2017-11-11 22:16:57 My Gob 1 2 False MuzafforIslam1 4
597 2017-11-11 22:10:36 0 0 False gC9DV7GIahGn2QM 0
598 2013-10-08 23:36:08 #HackedByJM511 @T4TBHH 2111 274 False desinger_j84 380
599 2017-10-30 22:03:52 Interior Designer , Artist , proud MOM 🕊 0 34 Mishrif, Kuwait False AbrarMuhsen 2
In [102]:
follower_df.sample(10)
Out[102]:
created_at description favourites_count followers_count location protected screen_name statuses_count
131 2017-10-12 20:27:56 ‏وقل اعملوا فسيرى الله عملكم 168 31 False 1BkicRwkk8s2go4 42
283 2017-11-15 07:15:39 9 10 False stapleford1984 0
264 2017-11-14 09:54:23 21 11 False x50jeAwF0urESzl 38
235 2017-06-10 03:12:21 166 14 False mazen_zazo66 123
299 2017-11-14 22:45:36 2 7 False noor19816 28
525 2017-11-12 18:18:52 1 25 False ygjjgkihnjjb 3
487 2017-10-13 02:56:52 I sneak drinks into movie theatres, Meditation... 0 7 Windham, NH False JenjenSheeza 2
191 2017-11-16 11:09:31 اللهم لا تجعل ذكر أمي ينقطع وسخر لها الدعوات ط... 0 41 Kuwait False dalalii_32 6
560 2013-05-29 20:58:11 ألحوآر مع آلجھلاء ' كآلرسم على ميآھ آلبحر ! مھ... 0 280 Kuwait False hoda7647675 850
459 2013-06-08 20:19:16 لن نخضع والله خيرا حافظا 0 164 q8 False tarekelfahhed 966

Web Scrapping

  • Need know how HTML is constructed
<Openning tag attr="value" attr2="value2"> text </closing tag>

Typical HTML tags

<H1>Headline 1</H2>
<a href="google.com">Link to Google</a>
<div class="content">main content text</div>

HTML Can Be Nested

<H1>
    Headline 1
    <div class="content">
        main content text
        <a href="google.com">Link inside main content</a>   
    </div>

</H2>

How Scrapping Works

  1. Using the browser, you examine the source of the content to find the information you need and identify the tags and attributes associated with the information you want
  2. You load the HTML page as text using requests
  3. You parse the HTML text using the scrapping tool
  4. Using the scrapping tool, you fetch the items that meet the criteria you identified from 1
  5. Repeat and test using jupyter notebook to ensure you captured the data correctly

Beautiful Soup

Used easily pick information from an HTML or XML document

Install using:

pip install beautifulsoup4

In [89]:
import requests
from bs4 import BeautifulSoup as BS

# Load html page using requests
res = requests.get("http://www.alanba.com.kw/newspaper/")

# Parse the text of the webpage using BS
bs = BS(res.text, 'html.parser')

# Now examine the page using the developer toolt to find the tags and attributes you need

From the Browser Developer Tools

We discovered that we need the text matching the criteria:

  • Under the h2 tag of class page-title CenterTextAlign
  • The path will be the href for a tag the mentioned h2 tag
  • The title text will be the text for the same a tag
In [90]:
# fetch all h2 tags of class page-title CenterTextAlign
h2_tags = bs.find_all("h2", class_="page-title CenterTextAlign")
In [91]:
# The data looks correct
h2_tags
Out[91]:
[<h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791415/18-11-2017-هيئة-مواجهة-الأزمات-بمباركة-حكومية/">هيئة مواجهة الأزمات.. بمباركة حكومية</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791401/18-11-2017-المرزوق-أمطار-مثيل-لها-الثلاثاء-المقبل-وتستمر-خفيفة-ومتفرقة-حتى-ديسمبر/">المرزوق: أمطار لا مثيل لها الثلاثاء المقبل وتستمر خفيفة ومتفرقة حتى 2 ديسمبر</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791371/18-11-2017-بالفيديو-الطيران-الشراعي-زين-سماء-الكويت-بـ-سمعا-وطاعة-يا-صاحب-السمو/">بالفيديو.. الطيران الشراعي زيَّن سماء<br/> الكويت بـ «سمعاً وطاعة يا صاحب السمو»</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-community/occasions-events/791275/18-11-2017-سلطنة-عمان-تحتفل-اليوم-بعيدها-الوطني-نهضة-تنموية-مستمرة-بقيادة-السلطان-قابوس/">سلطنة عُمان تحتفل اليوم بعيدها الوطني الـ 47: نهضة تنموية مستمرة بقيادة السلطان قابوس</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791387/18-11-2017-بالفيديو-حركة-BDS-الكويت-المقاطعة-أداة-مهمة-لمقاومة-الاستعمار-الصهيوني/">بالفيديو.. حركة «BDS الكويت»: المقاطعة أداة مهمة لمقاومة<br/> الاستعمار الصهيوني</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791408/18-11-2017-بالفيديو-معرض-الكتاب-يزيل-الحواجز-بين-الطفل-والقراءة/">بالفيديو.. معرض الكتاب<br/> يزيل الحواجز بين الطفل والقراءة</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/arabic-international-news/lebanon-news/791426/19-11-2017-بالفيديو-استقبال-حار-الإليزيه-والحريري-أطلق-مواقفي-السياسية-الاستقلال/">الحريري بعد لقاء ماكرون: سأحتفل <br/>بعيد الاستقلال في بيروت</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791437/19-11-2017-وزير-الإعلام-وفاة-المذيع-وليد-المؤمن-خسارة-للأخبار-والبرامج-السياسية/">المذيع وليد المؤمن<br/> في ذمة الله</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791461/19-11-2017-الحربي-السماح-بدخول-المنتجات-الزراعية-المصرية-مرهون-بنتائج-هيئة-التغذية/">جمال الحربي: لن نفرج عن اي منتج زراعي مصري الا بعد تأكد<br/> ملاءمته صحيا</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791450/19-11-2017-بالفيديو-شاهدت-أحدا-محظوظا-كهذا-الصبي-شاهد-كيف-فصلت-سنتيمترات-بينه-وبين-الموت-/">بالفيديو.. هل شاهدت أحداً محظوظاً كهذا الصبي؟ شاهد كيف فصلت سنتيمترات بينه وبين الموت !</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/world-news/791447/19-11-2017-بالفيديو-الشرطة-الإسبانية-تلاحق-متسلقين-بعد-فيديو-صادم/">بالفيديو.. الشرطة الإسبانية<br/> تلاحق متسلقين بعد<br/> فيديو صادم</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791452/19-11-2017-بالفيديو-روبوت-خارق-يقوم-بحركات-يعجز-عنها-معظم-البشر/">بالفيديو.. روبوت خارق<br/> يقوم بحركات يعجز <br/>عنها معظم البشر!</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/kuwait-news/791402/18-11-2017-بالفيديو-أسواق-حلب-القديمة-تنفض-غبار-الحرب/">بالفيديو.. أسواق حلب<br/> القديمة تنفض <br/>غبار الحرب</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/art-news/791345/18-11-2017-بالفيديو-بدر-محارب-أحب-المسرح-والتلفزيون-يوكل-كيك/">بالفيديو.. بدر محارب:<br/> أحب المسرح.. <br/>والتلفزيون «يوكّل كيك»!</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/art-news/arabic-international/791453/19-11-2017-بالفيديو-لأول-مرة-سمية-الخشاب-ترد-خطفت-أحمد-سعد-ريم-البارودي/">بالفيديو.. لأول مرة سمية الخشاب ترد: هل خطفت أحمد سعد من<br/> ريم البارودي؟</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/art-news/arabic-international/791455/19-11-2017-بالفيديو-دليل-براءة-شيرين-عبد-الوهاب/">بالفيديو.. دليل براءة<br/> شيرين عبد الوهاب</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791456/19-11-2017-هكذا-كيف-اعتقلوا-أستاذة-للعلوم-ذهبت-بعقل-تلميذ-وعاشرته/">هكذا كيف اعتقلوا<br/> أستاذة للعلوم ذهبت<br/> بعقل تلميذ وعاشرته</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791451/19-11-2017-نجاح-أول-عملية-زراعة-رأس-بشرية-وعلماء-تبعاتها-مرعبة/">نجاح أول عملية زراعة<br/> رأس بشرية.. وعلماء: <br/>تبعاتها "مرعبة"</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791454/19-11-2017-شاهد-غضب-فيديو-لحبار-يرقص-ألما-داخل-طبق-الطعام/">شاهد غضب من فيديو<br/> لحبار يرقص ألما داخل<br/> طبق الطعام</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791448/19-11-2017-لماذا-علينا-التوقف-تناول-الأرز/">لماذا علينا التوقف<br/> عن تناول الأرز؟</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791457/19-11-2017-العلماء-يكتشفون-طريقة-سهلة-لتقوية-شبكة-Wi-Fi-المنازل-تعرف-عليها/">العلماء يكتشفون طريقة سهلة لتقوية شبكة Wi Fi في المنازل.. تعرف عليها</a></h2>,
 <h2 class="page-title CenterTextAlign"><a href="/ar/last/791458/19-11-2017-بالفيديو-شاهد-تغير-فصول-السنة-الفضاء-عاما/">بالفيديو.. شاهد تغير<br/> فصول السنة من الفضاء في 20 عاماً</a></h2>]
In [92]:
# Lets experiment how to get the text
h2_tags[0].text
Out[92]:
'هيئة مواجهة الأزمات.. بمباركة حكومية'
In [96]:
# now the url path
h2_tags[0].a.attrs["href"]
Out[96]:
'/ar/kuwait-news/791415/18-11-2017-هيئة-مواجهة-الأزمات-بمباركة-حكومية/'
In [97]:
# Now use list comprehension to construct your list of records
headline_list = [
    {
        "title": x.text,
        "path": x.a.attrs["href"],
    } for x in h2_tags
]
pd.DataFrame(headline_list)
Out[97]:
path title
0 /ar/kuwait-news/791415/18-11-2017-هيئة-مواجهة-... هيئة مواجهة الأزمات.. بمباركة حكومية
1 /ar/kuwait-news/791401/18-11-2017-المرزوق-أمطا... المرزوق: أمطار لا مثيل لها الثلاثاء المقبل وتس...
2 /ar/kuwait-news/791371/18-11-2017-بالفيديو-الط... بالفيديو.. الطيران الشراعي زيَّن سماء الكويت ب...
3 /ar/kuwait-community/occasions-events/791275/1... سلطنة عُمان تحتفل اليوم بعيدها الوطني الـ 47: ...
4 /ar/kuwait-news/791387/18-11-2017-بالفيديو-حرك... بالفيديو.. حركة «BDS الكويت»: المقاطعة أداة مه...
5 /ar/kuwait-news/791408/18-11-2017-بالفيديو-معر... بالفيديو.. معرض الكتاب يزيل الحواجز بين الطفل ...
6 /ar/arabic-international-news/lebanon-news/791... الحريري بعد لقاء ماكرون: سأحتفل بعيد الاستقلال...
7 /ar/kuwait-news/791437/19-11-2017-وزير-الإعلام... المذيع وليد المؤمن في ذمة الله
8 /ar/kuwait-news/791461/19-11-2017-الحربي-السما... جمال الحربي: لن نفرج عن اي منتج زراعي مصري الا...
9 /ar/last/791450/19-11-2017-بالفيديو-شاهدت-أحدا... بالفيديو.. هل شاهدت أحداً محظوظاً كهذا الصبي؟ ...
10 /ar/world-news/791447/19-11-2017-بالفيديو-الشر... بالفيديو.. الشرطة الإسبانية تلاحق متسلقين بعد ...
11 /ar/last/791452/19-11-2017-بالفيديو-روبوت-خارق... بالفيديو.. روبوت خارق يقوم بحركات يعجز عنها مع...
12 /ar/kuwait-news/791402/18-11-2017-بالفيديو-أسو... بالفيديو.. أسواق حلب القديمة تنفض غبار الحرب
13 /ar/art-news/791345/18-11-2017-بالفيديو-بدر-مح... بالفيديو.. بدر محارب: أحب المسرح.. والتلفزيون ...
14 /ar/art-news/arabic-international/791453/19-11... بالفيديو.. لأول مرة سمية الخشاب ترد: هل خطفت أ...
15 /ar/art-news/arabic-international/791455/19-11... بالفيديو.. دليل براءة شيرين عبد الوهاب
16 /ar/last/791456/19-11-2017-هكذا-كيف-اعتقلوا-أس... هكذا كيف اعتقلوا أستاذة للعلوم ذهبت بعقل تلميذ...
17 /ar/last/791451/19-11-2017-نجاح-أول-عملية-زراع... نجاح أول عملية زراعة رأس بشرية.. وعلماء: تبعات...
18 /ar/last/791454/19-11-2017-شاهد-غضب-فيديو-لحبا... شاهد غضب من فيديو لحبار يرقص ألما داخل طبق الطعام
19 /ar/last/791448/19-11-2017-لماذا-علينا-التوقف-... لماذا علينا التوقف عن تناول الأرز؟
20 /ar/last/791457/19-11-2017-العلماء-يكتشفون-طري... العلماء يكتشفون طريقة سهلة لتقوية شبكة Wi Fi ف...
21 /ar/last/791458/19-11-2017-بالفيديو-شاهد-تغير-... بالفيديو.. شاهد تغير فصول السنة من الفضاء في 2...

Saving Dataframes

You can save your data frames on file using the to_* methods

In [103]:
# After creating the list of headlines
mydf = pd.DataFrame(headline_list)

# store as csv
mydf.to_csv("headlines.csv")

# you can store as json
mydf.to_json("headlines.json")

# or even excel
mydf.to_excel("headlines.xls")

Which Approach to use?

  1. Use client if exists
  2. Use restful API if no client exists
  3. Scrape if you have to
    • Assumes stable structure