{ "cells": [ { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Online Data Collection\n", "- Shared\n", " - API based\n", " - Files and databases\n", "- Web Scrapping\n", "- Manual\n", " - Surveys\n", " - Observation (When desperate)\n", " " ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Online Data Collection Cont.\n", "\n", "- Data is likely to not be organized as rows and columns\n", "- You have to organize the data manually and contruct a DataFrame\n", "- Need to determine what your variables will be\n", "- Need to be very careful with level of analysis here" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Constructing Data Frames Manually\n", "\n", "## Option 1: A List of Dictionaries" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "\n", "record1 = {\"name\":\"mohammed\", \"id\":1234, \"age\":45}\n", "record2 = {\"name\":\"Ali\", \"id\":1235, \"age\":35}\n", "record3 = {\"name\":\"Sara\", \"id\":1236, \"age\":25}\n", "\n", "list_of_records = [record1, record2, record3]" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Here is another way to write the previous code\n", "\n", "list_of_records = [\n", " {\"name\":\"mohammed\", \"id\":1234, \"age\":45},\n", " {\"name\":\"Ali\", \"id\":1235, \"age\":35},\n", " {\"name\":\"Sara\", \"id\":1236, \"age\":25},\n", "]" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ageidname
0451234mohammed
1351235Ali
2251236Sara
\n", "
" ], "text/plain": [ " age id name\n", "0 45 1234 mohammed\n", "1 35 1235 Ali\n", "2 25 1236 Sara" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# To create a DataFrame you construct an object\n", "\n", "df = pd.DataFrame(list_of_records)\n", "df" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Important Notes\n", "- All dictionaries must have the same keys\n", "- The keys will represent the column names\n", "- The values of the dictionary will represent the record values\n", "- Order of columns is unpredictable" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## Option 2: List of Lists" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "record1 = [\"mohammed\", 1234, 45]\n", "record2 = [\"Ali\", 1235, 35]\n", "record3 = [\"Sara\", 1236, 25]\n", "\n", "list_of_records = [record1, record2, record3]" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Alternative way of constructing the list of records\n", "list_of_records = [\n", " [\"mohammed\", 1234, 45],\n", " [\"Ali\", 1235, 35],\n", " [\"Sara\", 1236, 25], \n", "]" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
012
0mohammed123445
1Ali123535
2Sara123625
\n", "
" ], "text/plain": [ " 0 1 2\n", "0 mohammed 1234 45\n", "1 Ali 1235 35\n", "2 Sara 1236 25" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# To create a DataFrame you construct an object\n", "\n", "df = pd.DataFrame(list_of_records)\n", "df" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Important Notes\n", "- All lists must have the same number of items\n", "- Order of columns will be maintained, first item will be part of first column, and so on\n", "- Columns will be numbered, but you can rename them" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
nameidage
0mohammed123445
1Ali123535
2Sara123625
\n", "
" ], "text/plain": [ " name id age\n", "0 mohammed 1234 45\n", "1 Ali 1235 35\n", "2 Sara 1236 25" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.columns = [\"name\", \"id\", \"age\"]\n", "df" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "## Adding Rows\n", "\n", "Assuming you are using the default index then you can do it this way" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
nameidage
0mohammed123445
1Ali123535
2Sara123625
3zaid123733
\n", "
" ], "text/plain": [ " name id age\n", "0 mohammed 1234 45\n", "1 Ali 1235 35\n", "2 Sara 1236 25\n", "3 zaid 1237 33" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.loc[len(df)] = [\"zaid\", 1237, 33]\n", "df" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# API Based Data Collection\n", "- Search for the term \"API\" for online servies\n", " - Most social media services will have one\n", "- Each API will have a unique way to access it\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# API Protocols\n", "- Restful\n", " - Most popular\n", " - HTTP based\n", "- RPC/Soap\n", "- GraphML" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Restful APIs\n", "- You can access the API through the browser or an HTTP library\n", " - Requests is the most popular for python\n", "- Dedicated libraries for specific services are available to make access easier\n", " - The libraries are called **clients**\n", " - Search pip, google, and github for available options" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# How Restful APIs Work\n", "- Connect and authenticate using an HTTP client, like requests\n", "- Execute API action by calling an HTTP url and setting the appropriate HTTP action\n", " - Main actions are: GET, POST, PUT, DELETE\n", " - You will mostly use get\n", "- Response is likely JSON or XML which you have to parse into python objects" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# The GET Restful Action\n", "- This is the standard browser action when you type a URL\n", " - You can view Restful responses in the browser if not authenticated\n", "- You choose what you want to fetch through the url, e.g.:\n", " - Fetch list of tweets using following url path:\n", " `followers/list`\n", " - See api [here](https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-followers-list)\n", "- Some [require authentication](https://api.twitter.com/1.1/followers/list.json?cursor=-1&screen_name=twitterdev&skip_status=true&include_user_entities=false)\n", "- Other [do not](https://api.github.com/repositories) and can be viewed in browser" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Restful APIs Cont.\n", "- Authentication is likely required (Difficult part)\n", "- Be aware of transfer/access limitations\n", "- **You have to read the API documentation!**" ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Restful Example\n", "\n", "import requests\n", "\n", "# This is an authenticated example\n", "# see documentation for service on how to authenticate\n", "# It usually involves generating an access token\n", "\n", "# fetch github /repositories/ using a GET request\n", "data = requests.get(\"https://api.github.com/repositories\")" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "'[{\"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\"}]'" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Response contains text\n", "data.text\n", "\n", "# You can parse this data" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "200" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# HTTP status code\n", "data.status_code" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'archive_url': 'https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/grit/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/grit/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/grit/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/grit/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/grit/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/grit/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/grit/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/grit/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/grit/deployments',\n", " 'description': '**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/grit/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/grit/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/grit/forks',\n", " 'full_name': 'mojombo/grit',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/grit/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/grit/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/grit/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/grit/hooks',\n", " 'html_url': 'https://github.com/mojombo/grit',\n", " 'id': 1,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/grit/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/grit/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/grit/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/grit/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/grit/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/grit/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/grit/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/grit/milestones{/number}',\n", " 'name': 'grit',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/grit/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/grit/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/grit/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/grit/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/grit/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/grit/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/grit/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/grit/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/grit/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/grit'},\n", " {'archive_url': 'https://api.github.com/repos/wycats/merb-core/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wycats/merb-core/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wycats/merb-core/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wycats/merb-core/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wycats/merb-core/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wycats/merb-core/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wycats/merb-core/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wycats/merb-core/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wycats/merb-core/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wycats/merb-core/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wycats/merb-core/deployments',\n", " 'description': \"Merb Core: All you need. None you don't.\",\n", " 'downloads_url': 'https://api.github.com/repos/wycats/merb-core/downloads',\n", " 'events_url': 'https://api.github.com/repos/wycats/merb-core/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wycats/merb-core/forks',\n", " 'full_name': 'wycats/merb-core',\n", " 'git_commits_url': 'https://api.github.com/repos/wycats/merb-core/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wycats/merb-core/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wycats/merb-core/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wycats/merb-core/hooks',\n", " 'html_url': 'https://github.com/wycats/merb-core',\n", " 'id': 26,\n", " 'issue_comment_url': 'https://api.github.com/repos/wycats/merb-core/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wycats/merb-core/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wycats/merb-core/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wycats/merb-core/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wycats/merb-core/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wycats/merb-core/languages',\n", " 'merges_url': 'https://api.github.com/repos/wycats/merb-core/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wycats/merb-core/milestones{/number}',\n", " 'name': 'merb-core',\n", " 'notifications_url': 'https://api.github.com/repos/wycats/merb-core/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',\n", " 'events_url': 'https://api.github.com/users/wycats/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wycats/followers',\n", " 'following_url': 'https://api.github.com/users/wycats/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wycats',\n", " 'id': 4,\n", " 'login': 'wycats',\n", " 'organizations_url': 'https://api.github.com/users/wycats/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wycats/received_events',\n", " 'repos_url': 'https://api.github.com/users/wycats/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wycats'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wycats/merb-core/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wycats/merb-core/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wycats/merb-core/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wycats/merb-core/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wycats/merb-core/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wycats/merb-core/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wycats/merb-core/tags',\n", " 'teams_url': 'https://api.github.com/repos/wycats/merb-core/teams',\n", " 'trees_url': 'https://api.github.com/repos/wycats/merb-core/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wycats/merb-core'},\n", " {'archive_url': 'https://api.github.com/repos/rubinius/rubinius/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/rubinius/rubinius/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/rubinius/rubinius/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/rubinius/rubinius/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/rubinius/rubinius/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/rubinius/rubinius/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/rubinius/rubinius/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/rubinius/rubinius/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/rubinius/rubinius/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/rubinius/rubinius/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/rubinius/rubinius/deployments',\n", " 'description': 'The Rubinius Language Platform',\n", " 'downloads_url': 'https://api.github.com/repos/rubinius/rubinius/downloads',\n", " 'events_url': 'https://api.github.com/repos/rubinius/rubinius/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/rubinius/rubinius/forks',\n", " 'full_name': 'rubinius/rubinius',\n", " 'git_commits_url': 'https://api.github.com/repos/rubinius/rubinius/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/rubinius/rubinius/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/rubinius/rubinius/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/rubinius/rubinius/hooks',\n", " 'html_url': 'https://github.com/rubinius/rubinius',\n", " 'id': 27,\n", " 'issue_comment_url': 'https://api.github.com/repos/rubinius/rubinius/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/rubinius/rubinius/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/rubinius/rubinius/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/rubinius/rubinius/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/rubinius/rubinius/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/rubinius/rubinius/languages',\n", " 'merges_url': 'https://api.github.com/repos/rubinius/rubinius/merges',\n", " 'milestones_url': 'https://api.github.com/repos/rubinius/rubinius/milestones{/number}',\n", " 'name': 'rubinius',\n", " 'notifications_url': 'https://api.github.com/repos/rubinius/rubinius/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/317747?v=4',\n", " 'events_url': 'https://api.github.com/users/rubinius/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/rubinius/followers',\n", " 'following_url': 'https://api.github.com/users/rubinius/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/rubinius/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/rubinius',\n", " 'id': 317747,\n", " 'login': 'rubinius',\n", " 'organizations_url': 'https://api.github.com/users/rubinius/orgs',\n", " 'received_events_url': 'https://api.github.com/users/rubinius/received_events',\n", " 'repos_url': 'https://api.github.com/users/rubinius/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/rubinius/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/rubinius/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/rubinius'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/rubinius/rubinius/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/rubinius/rubinius/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/rubinius/rubinius/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/rubinius/rubinius/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/rubinius/rubinius/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/rubinius/rubinius/subscription',\n", " 'tags_url': 'https://api.github.com/repos/rubinius/rubinius/tags',\n", " 'teams_url': 'https://api.github.com/repos/rubinius/rubinius/teams',\n", " 'trees_url': 'https://api.github.com/repos/rubinius/rubinius/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/rubinius/rubinius'},\n", " {'archive_url': 'https://api.github.com/repos/mojombo/god/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/god/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/god/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/god/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/god/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/god/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/god/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/god/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/god/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/god/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/god/deployments',\n", " 'description': 'Ruby process monitor',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/god/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/god/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/god/forks',\n", " 'full_name': 'mojombo/god',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/god/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/god/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/god/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/god/hooks',\n", " 'html_url': 'https://github.com/mojombo/god',\n", " 'id': 28,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/god/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/god/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/god/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/god/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/god/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/god/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/god/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/god/milestones{/number}',\n", " 'name': 'god',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/god/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/god/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/god/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/god/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/god/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/god/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/god/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/god/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/god/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/god/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/god'},\n", " {'archive_url': 'https://api.github.com/repos/vanpelt/jsawesome/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/vanpelt/jsawesome/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/vanpelt/jsawesome/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/vanpelt/jsawesome/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/vanpelt/jsawesome/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/vanpelt/jsawesome/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/vanpelt/jsawesome/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/vanpelt/jsawesome/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/vanpelt/jsawesome/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/vanpelt/jsawesome/deployments',\n", " 'description': 'Awesome JSON',\n", " 'downloads_url': 'https://api.github.com/repos/vanpelt/jsawesome/downloads',\n", " 'events_url': 'https://api.github.com/repos/vanpelt/jsawesome/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/vanpelt/jsawesome/forks',\n", " 'full_name': 'vanpelt/jsawesome',\n", " 'git_commits_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/vanpelt/jsawesome/hooks',\n", " 'html_url': 'https://github.com/vanpelt/jsawesome',\n", " 'id': 29,\n", " 'issue_comment_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/vanpelt/jsawesome/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/vanpelt/jsawesome/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/vanpelt/jsawesome/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/vanpelt/jsawesome/languages',\n", " 'merges_url': 'https://api.github.com/repos/vanpelt/jsawesome/merges',\n", " 'milestones_url': 'https://api.github.com/repos/vanpelt/jsawesome/milestones{/number}',\n", " 'name': 'jsawesome',\n", " 'notifications_url': 'https://api.github.com/repos/vanpelt/jsawesome/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/17?v=4',\n", " 'events_url': 'https://api.github.com/users/vanpelt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/vanpelt/followers',\n", " 'following_url': 'https://api.github.com/users/vanpelt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/vanpelt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/vanpelt',\n", " 'id': 17,\n", " 'login': 'vanpelt',\n", " 'organizations_url': 'https://api.github.com/users/vanpelt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/vanpelt/received_events',\n", " 'repos_url': 'https://api.github.com/users/vanpelt/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/vanpelt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/vanpelt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/vanpelt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/vanpelt/jsawesome/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/vanpelt/jsawesome/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/vanpelt/jsawesome/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/vanpelt/jsawesome/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/vanpelt/jsawesome/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/vanpelt/jsawesome/subscription',\n", " 'tags_url': 'https://api.github.com/repos/vanpelt/jsawesome/tags',\n", " 'teams_url': 'https://api.github.com/repos/vanpelt/jsawesome/teams',\n", " 'trees_url': 'https://api.github.com/repos/vanpelt/jsawesome/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/vanpelt/jsawesome'},\n", " {'archive_url': 'https://api.github.com/repos/wycats/jspec/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wycats/jspec/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wycats/jspec/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wycats/jspec/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wycats/jspec/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wycats/jspec/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wycats/jspec/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wycats/jspec/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wycats/jspec/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wycats/jspec/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wycats/jspec/deployments',\n", " 'description': 'A JavaScript BDD Testing Library',\n", " 'downloads_url': 'https://api.github.com/repos/wycats/jspec/downloads',\n", " 'events_url': 'https://api.github.com/repos/wycats/jspec/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wycats/jspec/forks',\n", " 'full_name': 'wycats/jspec',\n", " 'git_commits_url': 'https://api.github.com/repos/wycats/jspec/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wycats/jspec/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wycats/jspec/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wycats/jspec/hooks',\n", " 'html_url': 'https://github.com/wycats/jspec',\n", " 'id': 31,\n", " 'issue_comment_url': 'https://api.github.com/repos/wycats/jspec/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wycats/jspec/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wycats/jspec/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wycats/jspec/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wycats/jspec/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wycats/jspec/languages',\n", " 'merges_url': 'https://api.github.com/repos/wycats/jspec/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wycats/jspec/milestones{/number}',\n", " 'name': 'jspec',\n", " 'notifications_url': 'https://api.github.com/repos/wycats/jspec/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',\n", " 'events_url': 'https://api.github.com/users/wycats/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wycats/followers',\n", " 'following_url': 'https://api.github.com/users/wycats/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wycats',\n", " 'id': 4,\n", " 'login': 'wycats',\n", " 'organizations_url': 'https://api.github.com/users/wycats/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wycats/received_events',\n", " 'repos_url': 'https://api.github.com/users/wycats/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wycats'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wycats/jspec/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wycats/jspec/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wycats/jspec/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wycats/jspec/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wycats/jspec/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wycats/jspec/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wycats/jspec/tags',\n", " 'teams_url': 'https://api.github.com/repos/wycats/jspec/teams',\n", " 'trees_url': 'https://api.github.com/repos/wycats/jspec/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wycats/jspec'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/exception_logger/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/exception_logger/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/exception_logger/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/exception_logger/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/exception_logger/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/exception_logger/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/exception_logger/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/exception_logger/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/exception_logger/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/exception_logger/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/exception_logger/deployments',\n", " 'description': 'Unmaintained. Sorry.',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/exception_logger/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/exception_logger/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/exception_logger/forks',\n", " 'full_name': 'defunkt/exception_logger',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/exception_logger/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/exception_logger/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/exception_logger/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/exception_logger/hooks',\n", " 'html_url': 'https://github.com/defunkt/exception_logger',\n", " 'id': 35,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/exception_logger/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/exception_logger/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/exception_logger/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/exception_logger/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/exception_logger/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/exception_logger/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/exception_logger/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/exception_logger/milestones{/number}',\n", " 'name': 'exception_logger',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/exception_logger/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/exception_logger/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/exception_logger/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/exception_logger/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/exception_logger/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/exception_logger/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/exception_logger/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/exception_logger/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/exception_logger/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/exception_logger/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/exception_logger'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/ambition/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/ambition/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/ambition/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/ambition/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/ambition/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/ambition/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/ambition/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/ambition/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/ambition/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/ambition/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/ambition/deployments',\n", " 'description': 'include Enumerable — Unmaintained',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/ambition/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/ambition/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/ambition/forks',\n", " 'full_name': 'defunkt/ambition',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/ambition/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/ambition/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/ambition/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/ambition/hooks',\n", " 'html_url': 'https://github.com/defunkt/ambition',\n", " 'id': 36,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/ambition/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/ambition/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/ambition/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/ambition/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/ambition/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/ambition/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/ambition/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/ambition/milestones{/number}',\n", " 'name': 'ambition',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/ambition/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/ambition/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/ambition/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/ambition/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/ambition/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/ambition/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/ambition/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/ambition/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/ambition/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/ambition/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/ambition'},\n", " {'archive_url': 'https://api.github.com/repos/technoweenie/restful-authentication/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/technoweenie/restful-authentication/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/technoweenie/restful-authentication/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/technoweenie/restful-authentication/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/technoweenie/restful-authentication/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/technoweenie/restful-authentication/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/technoweenie/restful-authentication/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/technoweenie/restful-authentication/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/technoweenie/restful-authentication/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/technoweenie/restful-authentication/deployments',\n", " '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.',\n", " 'downloads_url': 'https://api.github.com/repos/technoweenie/restful-authentication/downloads',\n", " 'events_url': 'https://api.github.com/repos/technoweenie/restful-authentication/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/technoweenie/restful-authentication/forks',\n", " 'full_name': 'technoweenie/restful-authentication',\n", " 'git_commits_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/technoweenie/restful-authentication/hooks',\n", " 'html_url': 'https://github.com/technoweenie/restful-authentication',\n", " 'id': 42,\n", " 'issue_comment_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/technoweenie/restful-authentication/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/technoweenie/restful-authentication/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/technoweenie/restful-authentication/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/technoweenie/restful-authentication/languages',\n", " 'merges_url': 'https://api.github.com/repos/technoweenie/restful-authentication/merges',\n", " 'milestones_url': 'https://api.github.com/repos/technoweenie/restful-authentication/milestones{/number}',\n", " 'name': 'restful-authentication',\n", " 'notifications_url': 'https://api.github.com/repos/technoweenie/restful-authentication/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',\n", " 'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/technoweenie/followers',\n", " 'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/technoweenie',\n", " 'id': 21,\n", " 'login': 'technoweenie',\n", " 'organizations_url': 'https://api.github.com/users/technoweenie/orgs',\n", " 'received_events_url': 'https://api.github.com/users/technoweenie/received_events',\n", " 'repos_url': 'https://api.github.com/users/technoweenie/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/technoweenie'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/technoweenie/restful-authentication/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/technoweenie/restful-authentication/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/technoweenie/restful-authentication/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/technoweenie/restful-authentication/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/technoweenie/restful-authentication/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/technoweenie/restful-authentication/subscription',\n", " 'tags_url': 'https://api.github.com/repos/technoweenie/restful-authentication/tags',\n", " 'teams_url': 'https://api.github.com/repos/technoweenie/restful-authentication/teams',\n", " 'trees_url': 'https://api.github.com/repos/technoweenie/restful-authentication/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/technoweenie/restful-authentication'},\n", " {'archive_url': 'https://api.github.com/repos/technoweenie/attachment_fu/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/technoweenie/attachment_fu/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/technoweenie/attachment_fu/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/technoweenie/attachment_fu/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/technoweenie/attachment_fu/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/technoweenie/attachment_fu/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/technoweenie/attachment_fu/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/technoweenie/attachment_fu/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/technoweenie/attachment_fu/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/technoweenie/attachment_fu/deployments',\n", " 'description': 'Treat an ActiveRecord model as a file attachment, storing its patch, size, content type, etc.',\n", " 'downloads_url': 'https://api.github.com/repos/technoweenie/attachment_fu/downloads',\n", " 'events_url': 'https://api.github.com/repos/technoweenie/attachment_fu/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/technoweenie/attachment_fu/forks',\n", " 'full_name': 'technoweenie/attachment_fu',\n", " 'git_commits_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/technoweenie/attachment_fu/hooks',\n", " 'html_url': 'https://github.com/technoweenie/attachment_fu',\n", " 'id': 43,\n", " 'issue_comment_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/technoweenie/attachment_fu/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/technoweenie/attachment_fu/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/technoweenie/attachment_fu/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/technoweenie/attachment_fu/languages',\n", " 'merges_url': 'https://api.github.com/repos/technoweenie/attachment_fu/merges',\n", " 'milestones_url': 'https://api.github.com/repos/technoweenie/attachment_fu/milestones{/number}',\n", " 'name': 'attachment_fu',\n", " 'notifications_url': 'https://api.github.com/repos/technoweenie/attachment_fu/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',\n", " 'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/technoweenie/followers',\n", " 'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/technoweenie',\n", " 'id': 21,\n", " 'login': 'technoweenie',\n", " 'organizations_url': 'https://api.github.com/users/technoweenie/orgs',\n", " 'received_events_url': 'https://api.github.com/users/technoweenie/received_events',\n", " 'repos_url': 'https://api.github.com/users/technoweenie/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/technoweenie'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/technoweenie/attachment_fu/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/technoweenie/attachment_fu/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/technoweenie/attachment_fu/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/technoweenie/attachment_fu/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/technoweenie/attachment_fu/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/technoweenie/attachment_fu/subscription',\n", " 'tags_url': 'https://api.github.com/repos/technoweenie/attachment_fu/tags',\n", " 'teams_url': 'https://api.github.com/repos/technoweenie/attachment_fu/teams',\n", " 'trees_url': 'https://api.github.com/repos/technoweenie/attachment_fu/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/technoweenie/attachment_fu'},\n", " {'archive_url': 'https://api.github.com/repos/Caged/microsis/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/Caged/microsis/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/Caged/microsis/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/Caged/microsis/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/Caged/microsis/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/Caged/microsis/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/Caged/microsis/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/Caged/microsis/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/Caged/microsis/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/Caged/microsis/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/Caged/microsis/deployments',\n", " 'description': 'SUPER OLD STUFF',\n", " 'downloads_url': 'https://api.github.com/repos/Caged/microsis/downloads',\n", " 'events_url': 'https://api.github.com/repos/Caged/microsis/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/Caged/microsis/forks',\n", " 'full_name': 'Caged/microsis',\n", " 'git_commits_url': 'https://api.github.com/repos/Caged/microsis/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/Caged/microsis/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/Caged/microsis/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/Caged/microsis/hooks',\n", " 'html_url': 'https://github.com/Caged/microsis',\n", " 'id': 48,\n", " 'issue_comment_url': 'https://api.github.com/repos/Caged/microsis/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/Caged/microsis/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/Caged/microsis/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/Caged/microsis/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/Caged/microsis/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/Caged/microsis/languages',\n", " 'merges_url': 'https://api.github.com/repos/Caged/microsis/merges',\n", " 'milestones_url': 'https://api.github.com/repos/Caged/microsis/milestones{/number}',\n", " 'name': 'microsis',\n", " 'notifications_url': 'https://api.github.com/repos/Caged/microsis/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',\n", " 'events_url': 'https://api.github.com/users/Caged/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/Caged/followers',\n", " 'following_url': 'https://api.github.com/users/Caged/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/Caged',\n", " 'id': 25,\n", " 'login': 'Caged',\n", " 'organizations_url': 'https://api.github.com/users/Caged/orgs',\n", " 'received_events_url': 'https://api.github.com/users/Caged/received_events',\n", " 'repos_url': 'https://api.github.com/users/Caged/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/Caged'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/Caged/microsis/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/Caged/microsis/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/Caged/microsis/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/Caged/microsis/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/Caged/microsis/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/Caged/microsis/subscription',\n", " 'tags_url': 'https://api.github.com/repos/Caged/microsis/tags',\n", " 'teams_url': 'https://api.github.com/repos/Caged/microsis/teams',\n", " 'trees_url': 'https://api.github.com/repos/Caged/microsis/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/Caged/microsis'},\n", " {'archive_url': 'https://api.github.com/repos/anotherjesse/s3/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/anotherjesse/s3/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/anotherjesse/s3/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/anotherjesse/s3/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/anotherjesse/s3/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/anotherjesse/s3/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/anotherjesse/s3/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/anotherjesse/s3/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/anotherjesse/s3/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/anotherjesse/s3/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/anotherjesse/s3/deployments',\n", " 'description': 'psuedo s3 protocol for mozilla browsers',\n", " 'downloads_url': 'https://api.github.com/repos/anotherjesse/s3/downloads',\n", " 'events_url': 'https://api.github.com/repos/anotherjesse/s3/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/anotherjesse/s3/forks',\n", " 'full_name': 'anotherjesse/s3',\n", " 'git_commits_url': 'https://api.github.com/repos/anotherjesse/s3/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/anotherjesse/s3/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/anotherjesse/s3/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/anotherjesse/s3/hooks',\n", " 'html_url': 'https://github.com/anotherjesse/s3',\n", " 'id': 52,\n", " 'issue_comment_url': 'https://api.github.com/repos/anotherjesse/s3/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/anotherjesse/s3/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/anotherjesse/s3/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/anotherjesse/s3/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/anotherjesse/s3/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/anotherjesse/s3/languages',\n", " 'merges_url': 'https://api.github.com/repos/anotherjesse/s3/merges',\n", " 'milestones_url': 'https://api.github.com/repos/anotherjesse/s3/milestones{/number}',\n", " 'name': 's3',\n", " 'notifications_url': 'https://api.github.com/repos/anotherjesse/s3/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',\n", " 'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/anotherjesse/followers',\n", " 'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/anotherjesse',\n", " 'id': 27,\n", " 'login': 'anotherjesse',\n", " 'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',\n", " 'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',\n", " 'repos_url': 'https://api.github.com/users/anotherjesse/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/anotherjesse'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/anotherjesse/s3/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/anotherjesse/s3/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/anotherjesse/s3/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/anotherjesse/s3/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/anotherjesse/s3/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/anotherjesse/s3/subscription',\n", " 'tags_url': 'https://api.github.com/repos/anotherjesse/s3/tags',\n", " 'teams_url': 'https://api.github.com/repos/anotherjesse/s3/teams',\n", " 'trees_url': 'https://api.github.com/repos/anotherjesse/s3/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/anotherjesse/s3'},\n", " {'archive_url': 'https://api.github.com/repos/anotherjesse/taboo/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/anotherjesse/taboo/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/anotherjesse/taboo/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/anotherjesse/taboo/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/anotherjesse/taboo/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/anotherjesse/taboo/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/anotherjesse/taboo/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/anotherjesse/taboo/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/anotherjesse/taboo/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/anotherjesse/taboo/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/anotherjesse/taboo/deployments',\n", " 'description': 'The solution for tabitus of the browser ',\n", " 'downloads_url': 'https://api.github.com/repos/anotherjesse/taboo/downloads',\n", " 'events_url': 'https://api.github.com/repos/anotherjesse/taboo/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/anotherjesse/taboo/forks',\n", " 'full_name': 'anotherjesse/taboo',\n", " 'git_commits_url': 'https://api.github.com/repos/anotherjesse/taboo/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/anotherjesse/taboo/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/anotherjesse/taboo/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/anotherjesse/taboo/hooks',\n", " 'html_url': 'https://github.com/anotherjesse/taboo',\n", " 'id': 53,\n", " 'issue_comment_url': 'https://api.github.com/repos/anotherjesse/taboo/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/anotherjesse/taboo/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/anotherjesse/taboo/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/anotherjesse/taboo/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/anotherjesse/taboo/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/anotherjesse/taboo/languages',\n", " 'merges_url': 'https://api.github.com/repos/anotherjesse/taboo/merges',\n", " 'milestones_url': 'https://api.github.com/repos/anotherjesse/taboo/milestones{/number}',\n", " 'name': 'taboo',\n", " 'notifications_url': 'https://api.github.com/repos/anotherjesse/taboo/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',\n", " 'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/anotherjesse/followers',\n", " 'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/anotherjesse',\n", " 'id': 27,\n", " 'login': 'anotherjesse',\n", " 'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',\n", " 'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',\n", " 'repos_url': 'https://api.github.com/users/anotherjesse/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/anotherjesse'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/anotherjesse/taboo/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/anotherjesse/taboo/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/anotherjesse/taboo/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/anotherjesse/taboo/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/anotherjesse/taboo/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/anotherjesse/taboo/subscription',\n", " 'tags_url': 'https://api.github.com/repos/anotherjesse/taboo/tags',\n", " 'teams_url': 'https://api.github.com/repos/anotherjesse/taboo/teams',\n", " 'trees_url': 'https://api.github.com/repos/anotherjesse/taboo/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/anotherjesse/taboo'},\n", " {'archive_url': 'https://api.github.com/repos/anotherjesse/foxtracs/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/anotherjesse/foxtracs/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/anotherjesse/foxtracs/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/anotherjesse/foxtracs/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/anotherjesse/foxtracs/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/anotherjesse/foxtracs/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/anotherjesse/foxtracs/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/anotherjesse/foxtracs/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/anotherjesse/foxtracs/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/anotherjesse/foxtracs/deployments',\n", " 'description': 'firefox trac integration',\n", " 'downloads_url': 'https://api.github.com/repos/anotherjesse/foxtracs/downloads',\n", " 'events_url': 'https://api.github.com/repos/anotherjesse/foxtracs/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/anotherjesse/foxtracs/forks',\n", " 'full_name': 'anotherjesse/foxtracs',\n", " 'git_commits_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/anotherjesse/foxtracs/hooks',\n", " 'html_url': 'https://github.com/anotherjesse/foxtracs',\n", " 'id': 54,\n", " 'issue_comment_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/anotherjesse/foxtracs/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/anotherjesse/foxtracs/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/anotherjesse/foxtracs/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/anotherjesse/foxtracs/languages',\n", " 'merges_url': 'https://api.github.com/repos/anotherjesse/foxtracs/merges',\n", " 'milestones_url': 'https://api.github.com/repos/anotherjesse/foxtracs/milestones{/number}',\n", " 'name': 'foxtracs',\n", " 'notifications_url': 'https://api.github.com/repos/anotherjesse/foxtracs/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',\n", " 'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/anotherjesse/followers',\n", " 'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/anotherjesse',\n", " 'id': 27,\n", " 'login': 'anotherjesse',\n", " 'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',\n", " 'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',\n", " 'repos_url': 'https://api.github.com/users/anotherjesse/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/anotherjesse'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/anotherjesse/foxtracs/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/anotherjesse/foxtracs/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/anotherjesse/foxtracs/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/anotherjesse/foxtracs/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/anotherjesse/foxtracs/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/anotherjesse/foxtracs/subscription',\n", " 'tags_url': 'https://api.github.com/repos/anotherjesse/foxtracs/tags',\n", " 'teams_url': 'https://api.github.com/repos/anotherjesse/foxtracs/teams',\n", " 'trees_url': 'https://api.github.com/repos/anotherjesse/foxtracs/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/anotherjesse/foxtracs'},\n", " {'archive_url': 'https://api.github.com/repos/anotherjesse/fotomatic/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/anotherjesse/fotomatic/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/anotherjesse/fotomatic/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/anotherjesse/fotomatic/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/anotherjesse/fotomatic/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/anotherjesse/fotomatic/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/anotherjesse/fotomatic/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/anotherjesse/fotomatic/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/anotherjesse/fotomatic/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/anotherjesse/fotomatic/deployments',\n", " 'description': 'Flash photo widget prototype - hacked at last SHDH of 2007',\n", " 'downloads_url': 'https://api.github.com/repos/anotherjesse/fotomatic/downloads',\n", " 'events_url': 'https://api.github.com/repos/anotherjesse/fotomatic/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/anotherjesse/fotomatic/forks',\n", " 'full_name': 'anotherjesse/fotomatic',\n", " 'git_commits_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/anotherjesse/fotomatic/hooks',\n", " 'html_url': 'https://github.com/anotherjesse/fotomatic',\n", " 'id': 56,\n", " 'issue_comment_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/anotherjesse/fotomatic/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/anotherjesse/fotomatic/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/anotherjesse/fotomatic/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/anotherjesse/fotomatic/languages',\n", " 'merges_url': 'https://api.github.com/repos/anotherjesse/fotomatic/merges',\n", " 'milestones_url': 'https://api.github.com/repos/anotherjesse/fotomatic/milestones{/number}',\n", " 'name': 'fotomatic',\n", " 'notifications_url': 'https://api.github.com/repos/anotherjesse/fotomatic/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/27?v=4',\n", " 'events_url': 'https://api.github.com/users/anotherjesse/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/anotherjesse/followers',\n", " 'following_url': 'https://api.github.com/users/anotherjesse/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/anotherjesse/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/anotherjesse',\n", " 'id': 27,\n", " 'login': 'anotherjesse',\n", " 'organizations_url': 'https://api.github.com/users/anotherjesse/orgs',\n", " 'received_events_url': 'https://api.github.com/users/anotherjesse/received_events',\n", " 'repos_url': 'https://api.github.com/users/anotherjesse/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/anotherjesse/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/anotherjesse/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/anotherjesse'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/anotherjesse/fotomatic/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/anotherjesse/fotomatic/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/anotherjesse/fotomatic/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/anotherjesse/fotomatic/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/anotherjesse/fotomatic/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/anotherjesse/fotomatic/subscription',\n", " 'tags_url': 'https://api.github.com/repos/anotherjesse/fotomatic/tags',\n", " 'teams_url': 'https://api.github.com/repos/anotherjesse/fotomatic/teams',\n", " 'trees_url': 'https://api.github.com/repos/anotherjesse/fotomatic/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/anotherjesse/fotomatic'},\n", " {'archive_url': 'https://api.github.com/repos/mojombo/glowstick/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/glowstick/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/glowstick/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/glowstick/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/glowstick/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/glowstick/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/glowstick/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/glowstick/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/glowstick/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/glowstick/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/glowstick/deployments',\n", " 'description': 'A realtime, OpenGL graphing library for Ruby',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/glowstick/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/glowstick/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/glowstick/forks',\n", " 'full_name': 'mojombo/glowstick',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/glowstick/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/glowstick/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/glowstick/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/glowstick/hooks',\n", " 'html_url': 'https://github.com/mojombo/glowstick',\n", " 'id': 61,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/glowstick/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/glowstick/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/glowstick/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/glowstick/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/glowstick/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/glowstick/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/glowstick/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/glowstick/milestones{/number}',\n", " 'name': 'glowstick',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/glowstick/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/glowstick/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/glowstick/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/glowstick/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/glowstick/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/glowstick/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/glowstick/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/glowstick/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/glowstick/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/glowstick/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/glowstick'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/starling/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/starling/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/starling/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/starling/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/starling/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/starling/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/starling/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/starling/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/starling/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/starling/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/starling/deployments',\n", " 'description': None,\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/starling/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/starling/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/starling/forks',\n", " 'full_name': 'defunkt/starling',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/starling/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/starling/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/starling/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/starling/hooks',\n", " 'html_url': 'https://github.com/defunkt/starling',\n", " 'id': 63,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/starling/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/starling/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/starling/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/starling/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/starling/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/starling/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/starling/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/starling/milestones{/number}',\n", " 'name': 'starling',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/starling/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/starling/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/starling/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/starling/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/starling/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/starling/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/starling/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/starling/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/starling/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/starling/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/starling'},\n", " {'archive_url': 'https://api.github.com/repos/wycats/merb-more/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wycats/merb-more/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wycats/merb-more/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wycats/merb-more/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wycats/merb-more/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wycats/merb-more/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wycats/merb-more/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wycats/merb-more/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wycats/merb-more/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wycats/merb-more/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wycats/merb-more/deployments',\n", " 'description': \"Merb More: The Full Stack. Take what you need; leave what you don't.\",\n", " 'downloads_url': 'https://api.github.com/repos/wycats/merb-more/downloads',\n", " 'events_url': 'https://api.github.com/repos/wycats/merb-more/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wycats/merb-more/forks',\n", " 'full_name': 'wycats/merb-more',\n", " 'git_commits_url': 'https://api.github.com/repos/wycats/merb-more/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wycats/merb-more/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wycats/merb-more/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wycats/merb-more/hooks',\n", " 'html_url': 'https://github.com/wycats/merb-more',\n", " 'id': 65,\n", " 'issue_comment_url': 'https://api.github.com/repos/wycats/merb-more/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wycats/merb-more/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wycats/merb-more/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wycats/merb-more/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wycats/merb-more/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wycats/merb-more/languages',\n", " 'merges_url': 'https://api.github.com/repos/wycats/merb-more/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wycats/merb-more/milestones{/number}',\n", " 'name': 'merb-more',\n", " 'notifications_url': 'https://api.github.com/repos/wycats/merb-more/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',\n", " 'events_url': 'https://api.github.com/users/wycats/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wycats/followers',\n", " 'following_url': 'https://api.github.com/users/wycats/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wycats',\n", " 'id': 4,\n", " 'login': 'wycats',\n", " 'organizations_url': 'https://api.github.com/users/wycats/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wycats/received_events',\n", " 'repos_url': 'https://api.github.com/users/wycats/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wycats'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wycats/merb-more/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wycats/merb-more/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wycats/merb-more/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wycats/merb-more/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wycats/merb-more/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wycats/merb-more/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wycats/merb-more/tags',\n", " 'teams_url': 'https://api.github.com/repos/wycats/merb-more/teams',\n", " 'trees_url': 'https://api.github.com/repos/wycats/merb-more/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wycats/merb-more'},\n", " {'archive_url': 'https://api.github.com/repos/macournoyer/thin/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/macournoyer/thin/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/macournoyer/thin/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/macournoyer/thin/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/macournoyer/thin/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/macournoyer/thin/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/macournoyer/thin/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/macournoyer/thin/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/macournoyer/thin/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/macournoyer/thin/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/macournoyer/thin/deployments',\n", " 'description': 'A very fast & simple Ruby web server',\n", " 'downloads_url': 'https://api.github.com/repos/macournoyer/thin/downloads',\n", " 'events_url': 'https://api.github.com/repos/macournoyer/thin/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/macournoyer/thin/forks',\n", " 'full_name': 'macournoyer/thin',\n", " 'git_commits_url': 'https://api.github.com/repos/macournoyer/thin/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/macournoyer/thin/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/macournoyer/thin/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/macournoyer/thin/hooks',\n", " 'html_url': 'https://github.com/macournoyer/thin',\n", " 'id': 68,\n", " 'issue_comment_url': 'https://api.github.com/repos/macournoyer/thin/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/macournoyer/thin/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/macournoyer/thin/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/macournoyer/thin/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/macournoyer/thin/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/macournoyer/thin/languages',\n", " 'merges_url': 'https://api.github.com/repos/macournoyer/thin/merges',\n", " 'milestones_url': 'https://api.github.com/repos/macournoyer/thin/milestones{/number}',\n", " 'name': 'thin',\n", " 'notifications_url': 'https://api.github.com/repos/macournoyer/thin/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/22?v=4',\n", " 'events_url': 'https://api.github.com/users/macournoyer/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/macournoyer/followers',\n", " 'following_url': 'https://api.github.com/users/macournoyer/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/macournoyer/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/macournoyer',\n", " 'id': 22,\n", " 'login': 'macournoyer',\n", " 'organizations_url': 'https://api.github.com/users/macournoyer/orgs',\n", " 'received_events_url': 'https://api.github.com/users/macournoyer/received_events',\n", " 'repos_url': 'https://api.github.com/users/macournoyer/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/macournoyer/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/macournoyer/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/macournoyer'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/macournoyer/thin/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/macournoyer/thin/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/macournoyer/thin/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/macournoyer/thin/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/macournoyer/thin/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/macournoyer/thin/subscription',\n", " 'tags_url': 'https://api.github.com/repos/macournoyer/thin/tags',\n", " 'teams_url': 'https://api.github.com/repos/macournoyer/thin/teams',\n", " 'trees_url': 'https://api.github.com/repos/macournoyer/thin/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/macournoyer/thin'},\n", " {'archive_url': 'https://api.github.com/repos/jamesgolick/resource_controller/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jamesgolick/resource_controller/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jamesgolick/resource_controller/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jamesgolick/resource_controller/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jamesgolick/resource_controller/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jamesgolick/resource_controller/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jamesgolick/resource_controller/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jamesgolick/resource_controller/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jamesgolick/resource_controller/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jamesgolick/resource_controller/deployments',\n", " 'description': 'Rails RESTful controller abstraction plugin.',\n", " 'downloads_url': 'https://api.github.com/repos/jamesgolick/resource_controller/downloads',\n", " 'events_url': 'https://api.github.com/repos/jamesgolick/resource_controller/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jamesgolick/resource_controller/forks',\n", " 'full_name': 'jamesgolick/resource_controller',\n", " 'git_commits_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jamesgolick/resource_controller/hooks',\n", " 'html_url': 'https://github.com/jamesgolick/resource_controller',\n", " 'id': 71,\n", " 'issue_comment_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jamesgolick/resource_controller/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jamesgolick/resource_controller/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jamesgolick/resource_controller/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jamesgolick/resource_controller/languages',\n", " 'merges_url': 'https://api.github.com/repos/jamesgolick/resource_controller/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jamesgolick/resource_controller/milestones{/number}',\n", " 'name': 'resource_controller',\n", " 'notifications_url': 'https://api.github.com/repos/jamesgolick/resource_controller/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',\n", " 'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jamesgolick/followers',\n", " 'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jamesgolick',\n", " 'id': 37,\n", " 'login': 'jamesgolick',\n", " 'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',\n", " 'repos_url': 'https://api.github.com/users/jamesgolick/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jamesgolick'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jamesgolick/resource_controller/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jamesgolick/resource_controller/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jamesgolick/resource_controller/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jamesgolick/resource_controller/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jamesgolick/resource_controller/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jamesgolick/resource_controller/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jamesgolick/resource_controller/tags',\n", " 'teams_url': 'https://api.github.com/repos/jamesgolick/resource_controller/teams',\n", " 'trees_url': 'https://api.github.com/repos/jamesgolick/resource_controller/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jamesgolick/resource_controller'},\n", " {'archive_url': 'https://api.github.com/repos/jamesgolick/markaby/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jamesgolick/markaby/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jamesgolick/markaby/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jamesgolick/markaby/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jamesgolick/markaby/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jamesgolick/markaby/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jamesgolick/markaby/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jamesgolick/markaby/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jamesgolick/markaby/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jamesgolick/markaby/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jamesgolick/markaby/deployments',\n", " 'description': 'Markaby patched to run on rails 2.0.2',\n", " 'downloads_url': 'https://api.github.com/repos/jamesgolick/markaby/downloads',\n", " 'events_url': 'https://api.github.com/repos/jamesgolick/markaby/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jamesgolick/markaby/forks',\n", " 'full_name': 'jamesgolick/markaby',\n", " 'git_commits_url': 'https://api.github.com/repos/jamesgolick/markaby/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jamesgolick/markaby/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jamesgolick/markaby/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jamesgolick/markaby/hooks',\n", " 'html_url': 'https://github.com/jamesgolick/markaby',\n", " 'id': 73,\n", " 'issue_comment_url': 'https://api.github.com/repos/jamesgolick/markaby/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jamesgolick/markaby/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jamesgolick/markaby/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jamesgolick/markaby/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jamesgolick/markaby/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jamesgolick/markaby/languages',\n", " 'merges_url': 'https://api.github.com/repos/jamesgolick/markaby/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jamesgolick/markaby/milestones{/number}',\n", " 'name': 'markaby',\n", " 'notifications_url': 'https://api.github.com/repos/jamesgolick/markaby/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',\n", " 'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jamesgolick/followers',\n", " 'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jamesgolick',\n", " 'id': 37,\n", " 'login': 'jamesgolick',\n", " 'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',\n", " 'repos_url': 'https://api.github.com/users/jamesgolick/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jamesgolick'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jamesgolick/markaby/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jamesgolick/markaby/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jamesgolick/markaby/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jamesgolick/markaby/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jamesgolick/markaby/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jamesgolick/markaby/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jamesgolick/markaby/tags',\n", " 'teams_url': 'https://api.github.com/repos/jamesgolick/markaby/teams',\n", " 'trees_url': 'https://api.github.com/repos/jamesgolick/markaby/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jamesgolick/markaby'},\n", " {'archive_url': 'https://api.github.com/repos/jamesgolick/enum_field/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jamesgolick/enum_field/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jamesgolick/enum_field/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jamesgolick/enum_field/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jamesgolick/enum_field/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jamesgolick/enum_field/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jamesgolick/enum_field/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jamesgolick/enum_field/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jamesgolick/enum_field/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jamesgolick/enum_field/deployments',\n", " 'description': None,\n", " 'downloads_url': 'https://api.github.com/repos/jamesgolick/enum_field/downloads',\n", " 'events_url': 'https://api.github.com/repos/jamesgolick/enum_field/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jamesgolick/enum_field/forks',\n", " 'full_name': 'jamesgolick/enum_field',\n", " 'git_commits_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jamesgolick/enum_field/hooks',\n", " 'html_url': 'https://github.com/jamesgolick/enum_field',\n", " 'id': 74,\n", " 'issue_comment_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jamesgolick/enum_field/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jamesgolick/enum_field/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jamesgolick/enum_field/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jamesgolick/enum_field/languages',\n", " 'merges_url': 'https://api.github.com/repos/jamesgolick/enum_field/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jamesgolick/enum_field/milestones{/number}',\n", " 'name': 'enum_field',\n", " 'notifications_url': 'https://api.github.com/repos/jamesgolick/enum_field/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/37?v=4',\n", " 'events_url': 'https://api.github.com/users/jamesgolick/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jamesgolick/followers',\n", " 'following_url': 'https://api.github.com/users/jamesgolick/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jamesgolick/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jamesgolick',\n", " 'id': 37,\n", " 'login': 'jamesgolick',\n", " 'organizations_url': 'https://api.github.com/users/jamesgolick/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jamesgolick/received_events',\n", " 'repos_url': 'https://api.github.com/users/jamesgolick/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/jamesgolick/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jamesgolick/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jamesgolick'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jamesgolick/enum_field/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jamesgolick/enum_field/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jamesgolick/enum_field/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jamesgolick/enum_field/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jamesgolick/enum_field/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jamesgolick/enum_field/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jamesgolick/enum_field/tags',\n", " 'teams_url': 'https://api.github.com/repos/jamesgolick/enum_field/teams',\n", " 'trees_url': 'https://api.github.com/repos/jamesgolick/enum_field/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jamesgolick/enum_field'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/subtlety/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/subtlety/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/subtlety/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/subtlety/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/subtlety/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/subtlety/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/subtlety/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/subtlety/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/subtlety/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/subtlety/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/subtlety/deployments',\n", " 'description': 'Subtlety: SVN => RSS, hAtom => Atom',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/subtlety/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/subtlety/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/subtlety/forks',\n", " 'full_name': 'defunkt/subtlety',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/subtlety/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/subtlety/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/subtlety/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/subtlety/hooks',\n", " 'html_url': 'https://github.com/defunkt/subtlety',\n", " 'id': 75,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/subtlety/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/subtlety/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/subtlety/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/subtlety/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/subtlety/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/subtlety/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/subtlety/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/subtlety/milestones{/number}',\n", " 'name': 'subtlety',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/subtlety/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/subtlety/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/subtlety/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/subtlety/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/subtlety/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/subtlety/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/subtlety/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/subtlety/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/subtlety/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/subtlety/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/subtlety'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/zippy/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/zippy/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/zippy/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/zippy/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/zippy/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/zippy/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/zippy/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/zippy/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/zippy/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/zippy/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/zippy/deployments',\n", " 'description': 'Zippy lil’ zipcode lib.',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/zippy/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/zippy/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/zippy/forks',\n", " 'full_name': 'defunkt/zippy',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/zippy/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/zippy/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/zippy/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/zippy/hooks',\n", " 'html_url': 'https://github.com/defunkt/zippy',\n", " 'id': 92,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/zippy/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/zippy/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/zippy/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/zippy/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/zippy/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/zippy/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/zippy/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/zippy/milestones{/number}',\n", " 'name': 'zippy',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/zippy/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/zippy/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/zippy/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/zippy/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/zippy/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/zippy/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/zippy/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/zippy/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/zippy/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/zippy/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/zippy'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/cache_fu/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/cache_fu/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/cache_fu/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/cache_fu/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/cache_fu/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/cache_fu/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/cache_fu/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/cache_fu/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/cache_fu/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/cache_fu/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/cache_fu/deployments',\n", " 'description': 'Ghost from Christmas past. Unmaintained.',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/cache_fu/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/cache_fu/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/cache_fu/forks',\n", " 'full_name': 'defunkt/cache_fu',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/cache_fu/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/cache_fu/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/cache_fu/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/cache_fu/hooks',\n", " 'html_url': 'https://github.com/defunkt/cache_fu',\n", " 'id': 93,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/cache_fu/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/cache_fu/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/cache_fu/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/cache_fu/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/cache_fu/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/cache_fu/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/cache_fu/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/cache_fu/milestones{/number}',\n", " 'name': 'cache_fu',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/cache_fu/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/cache_fu/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/cache_fu/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/cache_fu/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/cache_fu/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/cache_fu/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/cache_fu/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/cache_fu/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/cache_fu/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/cache_fu/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/cache_fu'},\n", " {'archive_url': 'https://api.github.com/repos/KirinDave/phosphor/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/KirinDave/phosphor/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/KirinDave/phosphor/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/KirinDave/phosphor/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/KirinDave/phosphor/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/KirinDave/phosphor/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/KirinDave/phosphor/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/KirinDave/phosphor/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/KirinDave/phosphor/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/KirinDave/phosphor/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/KirinDave/phosphor/deployments',\n", " 'description': ' A ruby library to inexpensively emit runtime events via Dtrace',\n", " 'downloads_url': 'https://api.github.com/repos/KirinDave/phosphor/downloads',\n", " 'events_url': 'https://api.github.com/repos/KirinDave/phosphor/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/KirinDave/phosphor/forks',\n", " 'full_name': 'KirinDave/phosphor',\n", " 'git_commits_url': 'https://api.github.com/repos/KirinDave/phosphor/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/KirinDave/phosphor/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/KirinDave/phosphor/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/KirinDave/phosphor/hooks',\n", " 'html_url': 'https://github.com/KirinDave/phosphor',\n", " 'id': 95,\n", " 'issue_comment_url': 'https://api.github.com/repos/KirinDave/phosphor/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/KirinDave/phosphor/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/KirinDave/phosphor/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/KirinDave/phosphor/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/KirinDave/phosphor/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/KirinDave/phosphor/languages',\n", " 'merges_url': 'https://api.github.com/repos/KirinDave/phosphor/merges',\n", " 'milestones_url': 'https://api.github.com/repos/KirinDave/phosphor/milestones{/number}',\n", " 'name': 'phosphor',\n", " 'notifications_url': 'https://api.github.com/repos/KirinDave/phosphor/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/36?v=4',\n", " 'events_url': 'https://api.github.com/users/KirinDave/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/KirinDave/followers',\n", " 'following_url': 'https://api.github.com/users/KirinDave/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/KirinDave/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/KirinDave',\n", " 'id': 36,\n", " 'login': 'KirinDave',\n", " 'organizations_url': 'https://api.github.com/users/KirinDave/orgs',\n", " 'received_events_url': 'https://api.github.com/users/KirinDave/received_events',\n", " 'repos_url': 'https://api.github.com/users/KirinDave/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/KirinDave/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/KirinDave'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/KirinDave/phosphor/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/KirinDave/phosphor/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/KirinDave/phosphor/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/KirinDave/phosphor/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/KirinDave/phosphor/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/KirinDave/phosphor/subscription',\n", " 'tags_url': 'https://api.github.com/repos/KirinDave/phosphor/tags',\n", " 'teams_url': 'https://api.github.com/repos/KirinDave/phosphor/teams',\n", " 'trees_url': 'https://api.github.com/repos/KirinDave/phosphor/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/KirinDave/phosphor'},\n", " {'archive_url': 'https://api.github.com/repos/bmizerany/sinatra/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/bmizerany/sinatra/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/bmizerany/sinatra/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/bmizerany/sinatra/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/bmizerany/sinatra/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/bmizerany/sinatra/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/bmizerany/sinatra/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/bmizerany/sinatra/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/bmizerany/sinatra/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/bmizerany/sinatra/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/bmizerany/sinatra/deployments',\n", " 'description': '(offically at github.com/sinatra/sinatra) Classy web-development dressed in a DSL',\n", " 'downloads_url': 'https://api.github.com/repos/bmizerany/sinatra/downloads',\n", " 'events_url': 'https://api.github.com/repos/bmizerany/sinatra/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/bmizerany/sinatra/forks',\n", " 'full_name': 'bmizerany/sinatra',\n", " 'git_commits_url': 'https://api.github.com/repos/bmizerany/sinatra/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/bmizerany/sinatra/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/bmizerany/sinatra/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/bmizerany/sinatra/hooks',\n", " 'html_url': 'https://github.com/bmizerany/sinatra',\n", " 'id': 98,\n", " 'issue_comment_url': 'https://api.github.com/repos/bmizerany/sinatra/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/bmizerany/sinatra/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/bmizerany/sinatra/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/bmizerany/sinatra/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/bmizerany/sinatra/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/bmizerany/sinatra/languages',\n", " 'merges_url': 'https://api.github.com/repos/bmizerany/sinatra/merges',\n", " 'milestones_url': 'https://api.github.com/repos/bmizerany/sinatra/milestones{/number}',\n", " 'name': 'sinatra',\n", " 'notifications_url': 'https://api.github.com/repos/bmizerany/sinatra/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/46?v=4',\n", " 'events_url': 'https://api.github.com/users/bmizerany/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/bmizerany/followers',\n", " 'following_url': 'https://api.github.com/users/bmizerany/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/bmizerany/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/bmizerany',\n", " 'id': 46,\n", " 'login': 'bmizerany',\n", " 'organizations_url': 'https://api.github.com/users/bmizerany/orgs',\n", " 'received_events_url': 'https://api.github.com/users/bmizerany/received_events',\n", " 'repos_url': 'https://api.github.com/users/bmizerany/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/bmizerany/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/bmizerany'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/bmizerany/sinatra/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/bmizerany/sinatra/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/bmizerany/sinatra/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/bmizerany/sinatra/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/bmizerany/sinatra/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/bmizerany/sinatra/subscription',\n", " 'tags_url': 'https://api.github.com/repos/bmizerany/sinatra/tags',\n", " 'teams_url': 'https://api.github.com/repos/bmizerany/sinatra/teams',\n", " 'trees_url': 'https://api.github.com/repos/bmizerany/sinatra/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/bmizerany/sinatra'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/gsa-prototype/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/gsa-prototype/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/gsa-prototype/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/gsa-prototype/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/gsa-prototype/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/gsa-prototype/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/gsa-prototype/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/gsa-prototype/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/gsa-prototype/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/gsa-prototype/deployments',\n", " 'description': 'Prototype/Javascript wrapper for the Google Search Appliance Search Protocol. Fancy cross-domain JSON support included.',\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/gsa-prototype/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/gsa-prototype/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/gsa-prototype/forks',\n", " 'full_name': 'jnewland/gsa-prototype',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/gsa-prototype/hooks',\n", " 'html_url': 'https://github.com/jnewland/gsa-prototype',\n", " 'id': 102,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/gsa-prototype/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/gsa-prototype/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/gsa-prototype/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/gsa-prototype/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/gsa-prototype/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/gsa-prototype/milestones{/number}',\n", " 'name': 'gsa-prototype',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/gsa-prototype/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/gsa-prototype/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/gsa-prototype/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/gsa-prototype/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/gsa-prototype/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/gsa-prototype/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/gsa-prototype/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/gsa-prototype/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/gsa-prototype/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/gsa-prototype/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/gsa-prototype'},\n", " {'archive_url': 'https://api.github.com/repos/technoweenie/duplikate/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/technoweenie/duplikate/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/technoweenie/duplikate/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/technoweenie/duplikate/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/technoweenie/duplikate/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/technoweenie/duplikate/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/technoweenie/duplikate/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/technoweenie/duplikate/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/technoweenie/duplikate/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/technoweenie/duplikate/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/technoweenie/duplikate/deployments',\n", " 'description': 'Syncs one directory to another (example: a git project to an svn repo)',\n", " 'downloads_url': 'https://api.github.com/repos/technoweenie/duplikate/downloads',\n", " 'events_url': 'https://api.github.com/repos/technoweenie/duplikate/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/technoweenie/duplikate/forks',\n", " 'full_name': 'technoweenie/duplikate',\n", " 'git_commits_url': 'https://api.github.com/repos/technoweenie/duplikate/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/technoweenie/duplikate/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/technoweenie/duplikate/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/technoweenie/duplikate/hooks',\n", " 'html_url': 'https://github.com/technoweenie/duplikate',\n", " 'id': 105,\n", " 'issue_comment_url': 'https://api.github.com/repos/technoweenie/duplikate/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/technoweenie/duplikate/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/technoweenie/duplikate/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/technoweenie/duplikate/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/technoweenie/duplikate/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/technoweenie/duplikate/languages',\n", " 'merges_url': 'https://api.github.com/repos/technoweenie/duplikate/merges',\n", " 'milestones_url': 'https://api.github.com/repos/technoweenie/duplikate/milestones{/number}',\n", " 'name': 'duplikate',\n", " 'notifications_url': 'https://api.github.com/repos/technoweenie/duplikate/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/21?v=4',\n", " 'events_url': 'https://api.github.com/users/technoweenie/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/technoweenie/followers',\n", " 'following_url': 'https://api.github.com/users/technoweenie/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/technoweenie/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/technoweenie',\n", " 'id': 21,\n", " 'login': 'technoweenie',\n", " 'organizations_url': 'https://api.github.com/users/technoweenie/orgs',\n", " 'received_events_url': 'https://api.github.com/users/technoweenie/received_events',\n", " 'repos_url': 'https://api.github.com/users/technoweenie/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/technoweenie/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/technoweenie/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/technoweenie'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/technoweenie/duplikate/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/technoweenie/duplikate/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/technoweenie/duplikate/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/technoweenie/duplikate/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/technoweenie/duplikate/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/technoweenie/duplikate/subscription',\n", " 'tags_url': 'https://api.github.com/repos/technoweenie/duplikate/tags',\n", " 'teams_url': 'https://api.github.com/repos/technoweenie/duplikate/teams',\n", " 'trees_url': 'https://api.github.com/repos/technoweenie/duplikate/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/technoweenie/duplikate'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/lazy_record/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/lazy_record/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/lazy_record/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/lazy_record/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/lazy_record/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/lazy_record/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/lazy_record/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/lazy_record/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/lazy_record/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/lazy_record/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/lazy_record/deployments',\n", " 'description': \"Proof of concept Lazy-Loading for ActiveRecord. Inspired by the 'kickers' of Ambition.\",\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/lazy_record/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/lazy_record/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/lazy_record/forks',\n", " 'full_name': 'jnewland/lazy_record',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/lazy_record/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/lazy_record/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/lazy_record/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/lazy_record/hooks',\n", " 'html_url': 'https://github.com/jnewland/lazy_record',\n", " 'id': 118,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/lazy_record/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/lazy_record/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/lazy_record/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/lazy_record/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/lazy_record/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/lazy_record/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/lazy_record/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/lazy_record/milestones{/number}',\n", " 'name': 'lazy_record',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/lazy_record/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/lazy_record/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/lazy_record/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/lazy_record/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/lazy_record/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/lazy_record/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/lazy_record/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/lazy_record/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/lazy_record/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/lazy_record/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/lazy_record'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/gsa-feeds/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/gsa-feeds/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/gsa-feeds/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/gsa-feeds/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/gsa-feeds/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/gsa-feeds/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/gsa-feeds/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/gsa-feeds/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/gsa-feeds/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/gsa-feeds/deployments',\n", " 'description': 'A Ruby wrapper for the Google Search Appliance Feeds Protocol',\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/gsa-feeds/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/gsa-feeds/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/gsa-feeds/forks',\n", " 'full_name': 'jnewland/gsa-feeds',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/gsa-feeds/hooks',\n", " 'html_url': 'https://github.com/jnewland/gsa-feeds',\n", " 'id': 119,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/gsa-feeds/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/gsa-feeds/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/gsa-feeds/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/gsa-feeds/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/gsa-feeds/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/gsa-feeds/milestones{/number}',\n", " 'name': 'gsa-feeds',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/gsa-feeds/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/gsa-feeds/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/gsa-feeds/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/gsa-feeds/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/gsa-feeds/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/gsa-feeds/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/gsa-feeds/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/gsa-feeds/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/gsa-feeds/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/gsa-feeds/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/gsa-feeds'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/votigoto/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/votigoto/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/votigoto/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/votigoto/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/votigoto/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/votigoto/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/votigoto/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/votigoto/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/votigoto/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/votigoto/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/votigoto/deployments',\n", " 'description': 'Ruby API wrapper for the TiVoToGo protocol. Use it to access a list of recorded shows and programs on your Tivo.',\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/votigoto/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/votigoto/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/votigoto/forks',\n", " 'full_name': 'jnewland/votigoto',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/votigoto/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/votigoto/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/votigoto/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/votigoto/hooks',\n", " 'html_url': 'https://github.com/jnewland/votigoto',\n", " 'id': 120,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/votigoto/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/votigoto/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/votigoto/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/votigoto/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/votigoto/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/votigoto/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/votigoto/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/votigoto/milestones{/number}',\n", " 'name': 'votigoto',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/votigoto/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/votigoto/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/votigoto/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/votigoto/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/votigoto/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/votigoto/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/votigoto/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/votigoto/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/votigoto/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/votigoto/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/votigoto'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/mofo/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/mofo/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/mofo/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/mofo/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/mofo/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/mofo/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/mofo/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/mofo/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/mofo/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/mofo/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/mofo/deployments',\n", " 'description': 'Mofo was a fast and simple microformat parser, based on a concise DSL and Hpricot. No longer maintained.',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/mofo/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/mofo/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/mofo/forks',\n", " 'full_name': 'defunkt/mofo',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/mofo/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/mofo/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/mofo/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/mofo/hooks',\n", " 'html_url': 'https://github.com/defunkt/mofo',\n", " 'id': 127,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/mofo/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/mofo/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/mofo/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/mofo/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/mofo/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/mofo/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/mofo/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/mofo/milestones{/number}',\n", " 'name': 'mofo',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/mofo/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/mofo/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/mofo/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/mofo/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/mofo/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/mofo/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/mofo/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/mofo/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/mofo/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/mofo/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/mofo'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/xhtmlize/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/xhtmlize/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/xhtmlize/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/xhtmlize/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/xhtmlize/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/xhtmlize/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/xhtmlize/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/xhtmlize/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/xhtmlize/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/xhtmlize/deployments',\n", " 'description': 'Rails helper to XHTML-ize chunks of user submitted HTML. For the standardista in all of us',\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/xhtmlize/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/xhtmlize/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/xhtmlize/forks',\n", " 'full_name': 'jnewland/xhtmlize',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/xhtmlize/hooks',\n", " 'html_url': 'https://github.com/jnewland/xhtmlize',\n", " 'id': 129,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/xhtmlize/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/xhtmlize/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/xhtmlize/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/xhtmlize/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/xhtmlize/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/xhtmlize/milestones{/number}',\n", " 'name': 'xhtmlize',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/xhtmlize/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/xhtmlize/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/xhtmlize/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/xhtmlize/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/xhtmlize/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/xhtmlize/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/xhtmlize/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/xhtmlize/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/xhtmlize/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/xhtmlize/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/xhtmlize'},\n", " {'archive_url': 'https://api.github.com/repos/schacon/ruby-git/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/schacon/ruby-git/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/schacon/ruby-git/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/schacon/ruby-git/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/schacon/ruby-git/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/schacon/ruby-git/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/schacon/ruby-git/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/schacon/ruby-git/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/schacon/ruby-git/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/schacon/ruby-git/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/schacon/ruby-git/deployments',\n", " '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.',\n", " 'downloads_url': 'https://api.github.com/repos/schacon/ruby-git/downloads',\n", " 'events_url': 'https://api.github.com/repos/schacon/ruby-git/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/schacon/ruby-git/forks',\n", " 'full_name': 'schacon/ruby-git',\n", " 'git_commits_url': 'https://api.github.com/repos/schacon/ruby-git/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/schacon/ruby-git/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/schacon/ruby-git/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/schacon/ruby-git/hooks',\n", " 'html_url': 'https://github.com/schacon/ruby-git',\n", " 'id': 130,\n", " 'issue_comment_url': 'https://api.github.com/repos/schacon/ruby-git/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/schacon/ruby-git/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/schacon/ruby-git/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/schacon/ruby-git/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/schacon/ruby-git/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/schacon/ruby-git/languages',\n", " 'merges_url': 'https://api.github.com/repos/schacon/ruby-git/merges',\n", " 'milestones_url': 'https://api.github.com/repos/schacon/ruby-git/milestones{/number}',\n", " 'name': 'ruby-git',\n", " 'notifications_url': 'https://api.github.com/repos/schacon/ruby-git/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/70?v=4',\n", " 'events_url': 'https://api.github.com/users/schacon/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/schacon/followers',\n", " 'following_url': 'https://api.github.com/users/schacon/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/schacon/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/schacon',\n", " 'id': 70,\n", " 'login': 'schacon',\n", " 'organizations_url': 'https://api.github.com/users/schacon/orgs',\n", " 'received_events_url': 'https://api.github.com/users/schacon/received_events',\n", " 'repos_url': 'https://api.github.com/users/schacon/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/schacon/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/schacon/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/schacon'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/schacon/ruby-git/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/schacon/ruby-git/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/schacon/ruby-git/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/schacon/ruby-git/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/schacon/ruby-git/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/schacon/ruby-git/subscription',\n", " 'tags_url': 'https://api.github.com/repos/schacon/ruby-git/tags',\n", " 'teams_url': 'https://api.github.com/repos/schacon/ruby-git/teams',\n", " 'trees_url': 'https://api.github.com/repos/schacon/ruby-git/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/schacon/ruby-git'},\n", " {'archive_url': 'https://api.github.com/repos/ezmobius/bmhsearch/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/ezmobius/bmhsearch/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/ezmobius/bmhsearch/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/ezmobius/bmhsearch/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/ezmobius/bmhsearch/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/ezmobius/bmhsearch/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/ezmobius/bmhsearch/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/ezmobius/bmhsearch/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/ezmobius/bmhsearch/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/ezmobius/bmhsearch/deployments',\n", " 'description': 'Fast string searcher, useful for multi-part post parsing',\n", " 'downloads_url': 'https://api.github.com/repos/ezmobius/bmhsearch/downloads',\n", " 'events_url': 'https://api.github.com/repos/ezmobius/bmhsearch/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/ezmobius/bmhsearch/forks',\n", " 'full_name': 'ezmobius/bmhsearch',\n", " 'git_commits_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/ezmobius/bmhsearch/hooks',\n", " 'html_url': 'https://github.com/ezmobius/bmhsearch',\n", " 'id': 131,\n", " 'issue_comment_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/ezmobius/bmhsearch/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/ezmobius/bmhsearch/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/ezmobius/bmhsearch/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/ezmobius/bmhsearch/languages',\n", " 'merges_url': 'https://api.github.com/repos/ezmobius/bmhsearch/merges',\n", " 'milestones_url': 'https://api.github.com/repos/ezmobius/bmhsearch/milestones{/number}',\n", " 'name': 'bmhsearch',\n", " 'notifications_url': 'https://api.github.com/repos/ezmobius/bmhsearch/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/5?v=4',\n", " 'events_url': 'https://api.github.com/users/ezmobius/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/ezmobius/followers',\n", " 'following_url': 'https://api.github.com/users/ezmobius/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/ezmobius/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/ezmobius',\n", " 'id': 5,\n", " 'login': 'ezmobius',\n", " 'organizations_url': 'https://api.github.com/users/ezmobius/orgs',\n", " 'received_events_url': 'https://api.github.com/users/ezmobius/received_events',\n", " 'repos_url': 'https://api.github.com/users/ezmobius/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/ezmobius/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/ezmobius/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/ezmobius'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/ezmobius/bmhsearch/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/ezmobius/bmhsearch/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/ezmobius/bmhsearch/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/ezmobius/bmhsearch/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/ezmobius/bmhsearch/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/ezmobius/bmhsearch/subscription',\n", " 'tags_url': 'https://api.github.com/repos/ezmobius/bmhsearch/tags',\n", " 'teams_url': 'https://api.github.com/repos/ezmobius/bmhsearch/teams',\n", " 'trees_url': 'https://api.github.com/repos/ezmobius/bmhsearch/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/ezmobius/bmhsearch'},\n", " {'archive_url': 'https://api.github.com/repos/uggedal/mofo/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/uggedal/mofo/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/uggedal/mofo/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/uggedal/mofo/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/uggedal/mofo/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/uggedal/mofo/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/uggedal/mofo/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/uggedal/mofo/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/uggedal/mofo/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/uggedal/mofo/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/uggedal/mofo/deployments',\n", " 'description': 'Mofo is a fast and simple microformat parser, based on a concise DSL and Hpricot.',\n", " 'downloads_url': 'https://api.github.com/repos/uggedal/mofo/downloads',\n", " 'events_url': 'https://api.github.com/repos/uggedal/mofo/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/uggedal/mofo/forks',\n", " 'full_name': 'uggedal/mofo',\n", " 'git_commits_url': 'https://api.github.com/repos/uggedal/mofo/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/uggedal/mofo/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/uggedal/mofo/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/uggedal/mofo/hooks',\n", " 'html_url': 'https://github.com/uggedal/mofo',\n", " 'id': 137,\n", " 'issue_comment_url': 'https://api.github.com/repos/uggedal/mofo/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/uggedal/mofo/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/uggedal/mofo/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/uggedal/mofo/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/uggedal/mofo/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/uggedal/mofo/languages',\n", " 'merges_url': 'https://api.github.com/repos/uggedal/mofo/merges',\n", " 'milestones_url': 'https://api.github.com/repos/uggedal/mofo/milestones{/number}',\n", " 'name': 'mofo',\n", " 'notifications_url': 'https://api.github.com/repos/uggedal/mofo/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/71?v=4',\n", " 'events_url': 'https://api.github.com/users/uggedal/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/uggedal/followers',\n", " 'following_url': 'https://api.github.com/users/uggedal/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/uggedal/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/uggedal',\n", " 'id': 71,\n", " 'login': 'uggedal',\n", " 'organizations_url': 'https://api.github.com/users/uggedal/orgs',\n", " 'received_events_url': 'https://api.github.com/users/uggedal/received_events',\n", " 'repos_url': 'https://api.github.com/users/uggedal/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/uggedal/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/uggedal/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/uggedal'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/uggedal/mofo/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/uggedal/mofo/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/uggedal/mofo/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/uggedal/mofo/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/uggedal/mofo/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/uggedal/mofo/subscription',\n", " 'tags_url': 'https://api.github.com/repos/uggedal/mofo/tags',\n", " 'teams_url': 'https://api.github.com/repos/uggedal/mofo/teams',\n", " 'trees_url': 'https://api.github.com/repos/uggedal/mofo/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/uggedal/mofo'},\n", " {'archive_url': 'https://api.github.com/repos/mmower/simply_versioned/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mmower/simply_versioned/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mmower/simply_versioned/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mmower/simply_versioned/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mmower/simply_versioned/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mmower/simply_versioned/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mmower/simply_versioned/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mmower/simply_versioned/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mmower/simply_versioned/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mmower/simply_versioned/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mmower/simply_versioned/deployments',\n", " 'description': 'A simple, non-invasive, approach to versioning ActiveRecord models',\n", " 'downloads_url': 'https://api.github.com/repos/mmower/simply_versioned/downloads',\n", " 'events_url': 'https://api.github.com/repos/mmower/simply_versioned/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mmower/simply_versioned/forks',\n", " 'full_name': 'mmower/simply_versioned',\n", " 'git_commits_url': 'https://api.github.com/repos/mmower/simply_versioned/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mmower/simply_versioned/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mmower/simply_versioned/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mmower/simply_versioned/hooks',\n", " 'html_url': 'https://github.com/mmower/simply_versioned',\n", " 'id': 139,\n", " 'issue_comment_url': 'https://api.github.com/repos/mmower/simply_versioned/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mmower/simply_versioned/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mmower/simply_versioned/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mmower/simply_versioned/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mmower/simply_versioned/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mmower/simply_versioned/languages',\n", " 'merges_url': 'https://api.github.com/repos/mmower/simply_versioned/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mmower/simply_versioned/milestones{/number}',\n", " 'name': 'simply_versioned',\n", " 'notifications_url': 'https://api.github.com/repos/mmower/simply_versioned/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/74?v=4',\n", " 'events_url': 'https://api.github.com/users/mmower/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mmower/followers',\n", " 'following_url': 'https://api.github.com/users/mmower/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mmower/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mmower',\n", " 'id': 74,\n", " 'login': 'mmower',\n", " 'organizations_url': 'https://api.github.com/users/mmower/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mmower/received_events',\n", " 'repos_url': 'https://api.github.com/users/mmower/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mmower/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mmower/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mmower'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mmower/simply_versioned/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mmower/simply_versioned/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mmower/simply_versioned/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mmower/simply_versioned/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mmower/simply_versioned/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mmower/simply_versioned/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mmower/simply_versioned/tags',\n", " 'teams_url': 'https://api.github.com/repos/mmower/simply_versioned/teams',\n", " 'trees_url': 'https://api.github.com/repos/mmower/simply_versioned/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mmower/simply_versioned'},\n", " {'archive_url': 'https://api.github.com/repos/abhay/gchart/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/abhay/gchart/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/abhay/gchart/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/abhay/gchart/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/abhay/gchart/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/abhay/gchart/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/abhay/gchart/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/abhay/gchart/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/abhay/gchart/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/abhay/gchart/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/abhay/gchart/deployments',\n", " '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).',\n", " 'downloads_url': 'https://api.github.com/repos/abhay/gchart/downloads',\n", " 'events_url': 'https://api.github.com/repos/abhay/gchart/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/abhay/gchart/forks',\n", " 'full_name': 'abhay/gchart',\n", " 'git_commits_url': 'https://api.github.com/repos/abhay/gchart/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/abhay/gchart/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/abhay/gchart/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/abhay/gchart/hooks',\n", " 'html_url': 'https://github.com/abhay/gchart',\n", " 'id': 140,\n", " 'issue_comment_url': 'https://api.github.com/repos/abhay/gchart/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/abhay/gchart/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/abhay/gchart/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/abhay/gchart/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/abhay/gchart/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/abhay/gchart/languages',\n", " 'merges_url': 'https://api.github.com/repos/abhay/gchart/merges',\n", " 'milestones_url': 'https://api.github.com/repos/abhay/gchart/milestones{/number}',\n", " 'name': 'gchart',\n", " 'notifications_url': 'https://api.github.com/repos/abhay/gchart/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/75?v=4',\n", " 'events_url': 'https://api.github.com/users/abhay/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/abhay/followers',\n", " 'following_url': 'https://api.github.com/users/abhay/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/abhay/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/abhay',\n", " 'id': 75,\n", " 'login': 'abhay',\n", " 'organizations_url': 'https://api.github.com/users/abhay/orgs',\n", " 'received_events_url': 'https://api.github.com/users/abhay/received_events',\n", " 'repos_url': 'https://api.github.com/users/abhay/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/abhay/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/abhay/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/abhay'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/abhay/gchart/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/abhay/gchart/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/abhay/gchart/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/abhay/gchart/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/abhay/gchart/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/abhay/gchart/subscription',\n", " 'tags_url': 'https://api.github.com/repos/abhay/gchart/tags',\n", " 'teams_url': 'https://api.github.com/repos/abhay/gchart/teams',\n", " 'trees_url': 'https://api.github.com/repos/abhay/gchart/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/abhay/gchart'},\n", " {'archive_url': 'https://api.github.com/repos/benburkert/schemr/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/benburkert/schemr/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/benburkert/schemr/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/benburkert/schemr/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/benburkert/schemr/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/benburkert/schemr/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/benburkert/schemr/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/benburkert/schemr/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/benburkert/schemr/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/benburkert/schemr/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/benburkert/schemr/deployments',\n", " 'description': 'A DSL for creating schema documents in ruby',\n", " 'downloads_url': 'https://api.github.com/repos/benburkert/schemr/downloads',\n", " 'events_url': 'https://api.github.com/repos/benburkert/schemr/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/benburkert/schemr/forks',\n", " 'full_name': 'benburkert/schemr',\n", " 'git_commits_url': 'https://api.github.com/repos/benburkert/schemr/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/benburkert/schemr/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/benburkert/schemr/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/benburkert/schemr/hooks',\n", " 'html_url': 'https://github.com/benburkert/schemr',\n", " 'id': 141,\n", " 'issue_comment_url': 'https://api.github.com/repos/benburkert/schemr/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/benburkert/schemr/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/benburkert/schemr/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/benburkert/schemr/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/benburkert/schemr/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/benburkert/schemr/languages',\n", " 'merges_url': 'https://api.github.com/repos/benburkert/schemr/merges',\n", " 'milestones_url': 'https://api.github.com/repos/benburkert/schemr/milestones{/number}',\n", " 'name': 'schemr',\n", " 'notifications_url': 'https://api.github.com/repos/benburkert/schemr/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/77?v=4',\n", " 'events_url': 'https://api.github.com/users/benburkert/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/benburkert/followers',\n", " 'following_url': 'https://api.github.com/users/benburkert/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/benburkert/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/benburkert',\n", " 'id': 77,\n", " 'login': 'benburkert',\n", " 'organizations_url': 'https://api.github.com/users/benburkert/orgs',\n", " 'received_events_url': 'https://api.github.com/users/benburkert/received_events',\n", " 'repos_url': 'https://api.github.com/users/benburkert/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/benburkert/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/benburkert/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/benburkert'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/benburkert/schemr/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/benburkert/schemr/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/benburkert/schemr/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/benburkert/schemr/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/benburkert/schemr/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/benburkert/schemr/subscription',\n", " 'tags_url': 'https://api.github.com/repos/benburkert/schemr/tags',\n", " 'teams_url': 'https://api.github.com/repos/benburkert/schemr/teams',\n", " 'trees_url': 'https://api.github.com/repos/benburkert/schemr/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/benburkert/schemr'},\n", " {'archive_url': 'https://api.github.com/repos/abhay/calais/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/abhay/calais/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/abhay/calais/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/abhay/calais/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/abhay/calais/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/abhay/calais/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/abhay/calais/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/abhay/calais/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/abhay/calais/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/abhay/calais/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/abhay/calais/deployments',\n", " 'description': 'A Ruby interface to the Open Calais API (http://opencalais.com)',\n", " 'downloads_url': 'https://api.github.com/repos/abhay/calais/downloads',\n", " 'events_url': 'https://api.github.com/repos/abhay/calais/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/abhay/calais/forks',\n", " 'full_name': 'abhay/calais',\n", " 'git_commits_url': 'https://api.github.com/repos/abhay/calais/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/abhay/calais/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/abhay/calais/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/abhay/calais/hooks',\n", " 'html_url': 'https://github.com/abhay/calais',\n", " 'id': 142,\n", " 'issue_comment_url': 'https://api.github.com/repos/abhay/calais/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/abhay/calais/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/abhay/calais/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/abhay/calais/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/abhay/calais/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/abhay/calais/languages',\n", " 'merges_url': 'https://api.github.com/repos/abhay/calais/merges',\n", " 'milestones_url': 'https://api.github.com/repos/abhay/calais/milestones{/number}',\n", " 'name': 'calais',\n", " 'notifications_url': 'https://api.github.com/repos/abhay/calais/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/75?v=4',\n", " 'events_url': 'https://api.github.com/users/abhay/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/abhay/followers',\n", " 'following_url': 'https://api.github.com/users/abhay/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/abhay/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/abhay',\n", " 'id': 75,\n", " 'login': 'abhay',\n", " 'organizations_url': 'https://api.github.com/users/abhay/orgs',\n", " 'received_events_url': 'https://api.github.com/users/abhay/received_events',\n", " 'repos_url': 'https://api.github.com/users/abhay/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/abhay/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/abhay/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/abhay'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/abhay/calais/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/abhay/calais/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/abhay/calais/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/abhay/calais/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/abhay/calais/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/abhay/calais/subscription',\n", " 'tags_url': 'https://api.github.com/repos/abhay/calais/tags',\n", " 'teams_url': 'https://api.github.com/repos/abhay/calais/teams',\n", " 'trees_url': 'https://api.github.com/repos/abhay/calais/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/abhay/calais'},\n", " {'archive_url': 'https://api.github.com/repos/mojombo/chronic/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/chronic/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/chronic/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/chronic/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/chronic/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/chronic/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/chronic/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/chronic/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/chronic/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/chronic/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/chronic/deployments',\n", " 'description': 'Chronic is a pure Ruby natural language date parser.',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/chronic/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/chronic/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/chronic/forks',\n", " 'full_name': 'mojombo/chronic',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/chronic/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/chronic/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/chronic/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/chronic/hooks',\n", " 'html_url': 'https://github.com/mojombo/chronic',\n", " 'id': 144,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/chronic/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/chronic/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/chronic/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/chronic/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/chronic/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/chronic/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/chronic/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/chronic/milestones{/number}',\n", " 'name': 'chronic',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/chronic/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/chronic/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/chronic/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/chronic/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/chronic/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/chronic/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/chronic/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/chronic/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/chronic/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/chronic/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/chronic'},\n", " {'archive_url': 'https://api.github.com/repos/sr/git-wiki/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/sr/git-wiki/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/sr/git-wiki/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/sr/git-wiki/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/sr/git-wiki/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/sr/git-wiki/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/sr/git-wiki/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/sr/git-wiki/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/sr/git-wiki/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/sr/git-wiki/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/sr/git-wiki/deployments',\n", " 'description': 'A quick & dirty git-powered Sinatra wiki',\n", " 'downloads_url': 'https://api.github.com/repos/sr/git-wiki/downloads',\n", " 'events_url': 'https://api.github.com/repos/sr/git-wiki/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/sr/git-wiki/forks',\n", " 'full_name': 'sr/git-wiki',\n", " 'git_commits_url': 'https://api.github.com/repos/sr/git-wiki/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/sr/git-wiki/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/sr/git-wiki/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/sr/git-wiki/hooks',\n", " 'html_url': 'https://github.com/sr/git-wiki',\n", " 'id': 165,\n", " 'issue_comment_url': 'https://api.github.com/repos/sr/git-wiki/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/sr/git-wiki/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/sr/git-wiki/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/sr/git-wiki/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/sr/git-wiki/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/sr/git-wiki/languages',\n", " 'merges_url': 'https://api.github.com/repos/sr/git-wiki/merges',\n", " 'milestones_url': 'https://api.github.com/repos/sr/git-wiki/milestones{/number}',\n", " 'name': 'git-wiki',\n", " 'notifications_url': 'https://api.github.com/repos/sr/git-wiki/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',\n", " 'events_url': 'https://api.github.com/users/sr/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/sr/followers',\n", " 'following_url': 'https://api.github.com/users/sr/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/sr',\n", " 'id': 90,\n", " 'login': 'sr',\n", " 'organizations_url': 'https://api.github.com/users/sr/orgs',\n", " 'received_events_url': 'https://api.github.com/users/sr/received_events',\n", " 'repos_url': 'https://api.github.com/users/sr/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/sr'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/sr/git-wiki/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/sr/git-wiki/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/sr/git-wiki/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/sr/git-wiki/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/sr/git-wiki/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/sr/git-wiki/subscription',\n", " 'tags_url': 'https://api.github.com/repos/sr/git-wiki/tags',\n", " 'teams_url': 'https://api.github.com/repos/sr/git-wiki/teams',\n", " 'trees_url': 'https://api.github.com/repos/sr/git-wiki/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/sr/git-wiki'},\n", " {'archive_url': 'https://api.github.com/repos/queso/signal-wiki/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/queso/signal-wiki/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/queso/signal-wiki/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/queso/signal-wiki/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/queso/signal-wiki/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/queso/signal-wiki/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/queso/signal-wiki/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/queso/signal-wiki/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/queso/signal-wiki/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/queso/signal-wiki/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/queso/signal-wiki/deployments',\n", " 'description': 'The easy to use rails wiki',\n", " 'downloads_url': 'https://api.github.com/repos/queso/signal-wiki/downloads',\n", " 'events_url': 'https://api.github.com/repos/queso/signal-wiki/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/queso/signal-wiki/forks',\n", " 'full_name': 'queso/signal-wiki',\n", " 'git_commits_url': 'https://api.github.com/repos/queso/signal-wiki/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/queso/signal-wiki/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/queso/signal-wiki/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/queso/signal-wiki/hooks',\n", " 'html_url': 'https://github.com/queso/signal-wiki',\n", " 'id': 177,\n", " 'issue_comment_url': 'https://api.github.com/repos/queso/signal-wiki/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/queso/signal-wiki/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/queso/signal-wiki/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/queso/signal-wiki/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/queso/signal-wiki/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/queso/signal-wiki/languages',\n", " 'merges_url': 'https://api.github.com/repos/queso/signal-wiki/merges',\n", " 'milestones_url': 'https://api.github.com/repos/queso/signal-wiki/milestones{/number}',\n", " 'name': 'signal-wiki',\n", " 'notifications_url': 'https://api.github.com/repos/queso/signal-wiki/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/106?v=4',\n", " 'events_url': 'https://api.github.com/users/queso/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/queso/followers',\n", " 'following_url': 'https://api.github.com/users/queso/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/queso/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/queso',\n", " 'id': 106,\n", " 'login': 'queso',\n", " 'organizations_url': 'https://api.github.com/users/queso/orgs',\n", " 'received_events_url': 'https://api.github.com/users/queso/received_events',\n", " 'repos_url': 'https://api.github.com/users/queso/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/queso/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/queso/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/queso'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/queso/signal-wiki/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/queso/signal-wiki/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/queso/signal-wiki/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/queso/signal-wiki/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/queso/signal-wiki/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/queso/signal-wiki/subscription',\n", " 'tags_url': 'https://api.github.com/repos/queso/signal-wiki/tags',\n", " 'teams_url': 'https://api.github.com/repos/queso/signal-wiki/teams',\n", " 'trees_url': 'https://api.github.com/repos/queso/signal-wiki/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/queso/signal-wiki'},\n", " {'archive_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/deployments',\n", " 'description': 'Ruby on Rails TextMate bundle [Learn it with PeepCode - http://peepcode.com/products/textmate-for-rails-2]',\n", " 'downloads_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/downloads',\n", " 'events_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/forks',\n", " 'full_name': 'drnic/ruby-on-rails-tmbundle',\n", " 'git_commits_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/hooks',\n", " 'html_url': 'https://github.com/drnic/ruby-on-rails-tmbundle',\n", " 'id': 179,\n", " 'issue_comment_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/languages',\n", " 'merges_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/merges',\n", " 'milestones_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/milestones{/number}',\n", " 'name': 'ruby-on-rails-tmbundle',\n", " 'notifications_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/108?v=4',\n", " 'events_url': 'https://api.github.com/users/drnic/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/drnic/followers',\n", " 'following_url': 'https://api.github.com/users/drnic/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/drnic/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/drnic',\n", " 'id': 108,\n", " 'login': 'drnic',\n", " 'organizations_url': 'https://api.github.com/users/drnic/orgs',\n", " 'received_events_url': 'https://api.github.com/users/drnic/received_events',\n", " 'repos_url': 'https://api.github.com/users/drnic/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/drnic/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/drnic/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/drnic'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/subscription',\n", " 'tags_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/tags',\n", " 'teams_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/teams',\n", " 'trees_url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/drnic/ruby-on-rails-tmbundle'},\n", " {'archive_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/deployments',\n", " 'description': 'A jQuery plugin version of the Low Pro behavior framework.',\n", " 'downloads_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/downloads',\n", " 'events_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/forks',\n", " 'full_name': 'danwrong/low-pro-for-jquery',\n", " 'git_commits_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/hooks',\n", " 'html_url': 'https://github.com/danwrong/low-pro-for-jquery',\n", " 'id': 185,\n", " 'issue_comment_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/languages',\n", " 'merges_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/merges',\n", " 'milestones_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/milestones{/number}',\n", " 'name': 'low-pro-for-jquery',\n", " 'notifications_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/110?v=4',\n", " 'events_url': 'https://api.github.com/users/danwrong/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/danwrong/followers',\n", " 'following_url': 'https://api.github.com/users/danwrong/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/danwrong/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/danwrong',\n", " 'id': 110,\n", " 'login': 'danwrong',\n", " 'organizations_url': 'https://api.github.com/users/danwrong/orgs',\n", " 'received_events_url': 'https://api.github.com/users/danwrong/received_events',\n", " 'repos_url': 'https://api.github.com/users/danwrong/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/danwrong/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/danwrong/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/danwrong'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/subscription',\n", " 'tags_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/tags',\n", " 'teams_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/teams',\n", " 'trees_url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/danwrong/low-pro-for-jquery'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/merb-core/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/merb-core/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/merb-core/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merb-core/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/merb-core/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/merb-core/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/merb-core/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/merb-core/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/merb-core/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/merb-core/deployments',\n", " 'description': \"Merb Core: All you need. None you don't.\",\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/merb-core/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/merb-core/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/merb-core/forks',\n", " 'full_name': 'wayneeseguin/merb-core',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/merb-core/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/merb-core',\n", " 'id': 186,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/merb-core/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/merb-core/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/merb-core/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/merb-core/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/merb-core/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/merb-core/milestones{/number}',\n", " 'name': 'merb-core',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/merb-core/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/merb-core/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/merb-core/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merb-core/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/merb-core/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merb-core/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/merb-core/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/merb-core/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/merb-core/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/merb-core/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/merb-core'},\n", " {'archive_url': 'https://api.github.com/repos/sr/dst/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/sr/dst/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/sr/dst/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/sr/dst/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/sr/dst/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/sr/dst/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/sr/dst/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/sr/dst/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/sr/dst/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/sr/dst/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/sr/dst/deployments',\n", " 'description': 'todo-list manager I wrote back in 2008 with the help of Gregory Brown in order to learn Ruby and TDD',\n", " 'downloads_url': 'https://api.github.com/repos/sr/dst/downloads',\n", " 'events_url': 'https://api.github.com/repos/sr/dst/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/sr/dst/forks',\n", " 'full_name': 'sr/dst',\n", " 'git_commits_url': 'https://api.github.com/repos/sr/dst/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/sr/dst/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/sr/dst/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/sr/dst/hooks',\n", " 'html_url': 'https://github.com/sr/dst',\n", " 'id': 190,\n", " 'issue_comment_url': 'https://api.github.com/repos/sr/dst/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/sr/dst/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/sr/dst/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/sr/dst/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/sr/dst/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/sr/dst/languages',\n", " 'merges_url': 'https://api.github.com/repos/sr/dst/merges',\n", " 'milestones_url': 'https://api.github.com/repos/sr/dst/milestones{/number}',\n", " 'name': 'dst',\n", " 'notifications_url': 'https://api.github.com/repos/sr/dst/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',\n", " 'events_url': 'https://api.github.com/users/sr/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/sr/followers',\n", " 'following_url': 'https://api.github.com/users/sr/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/sr',\n", " 'id': 90,\n", " 'login': 'sr',\n", " 'organizations_url': 'https://api.github.com/users/sr/orgs',\n", " 'received_events_url': 'https://api.github.com/users/sr/received_events',\n", " 'repos_url': 'https://api.github.com/users/sr/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/sr'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/sr/dst/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/sr/dst/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/sr/dst/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/sr/dst/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/sr/dst/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/sr/dst/subscription',\n", " 'tags_url': 'https://api.github.com/repos/sr/dst/tags',\n", " 'teams_url': 'https://api.github.com/repos/sr/dst/teams',\n", " 'trees_url': 'https://api.github.com/repos/sr/dst/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/sr/dst'},\n", " {'archive_url': 'https://api.github.com/repos/mojombo/yaws/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/yaws/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/yaws/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/yaws/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/yaws/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/yaws/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/yaws/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/yaws/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/yaws/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/yaws/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/yaws/deployments',\n", " 'description': 'YAWS is an erlang web server',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/yaws/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/yaws/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/yaws/forks',\n", " 'full_name': 'mojombo/yaws',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/yaws/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/yaws/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/yaws/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/yaws/hooks',\n", " 'html_url': 'https://github.com/mojombo/yaws',\n", " 'id': 191,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/yaws/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/yaws/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/yaws/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/yaws/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/yaws/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/yaws/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/yaws/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/yaws/milestones{/number}',\n", " 'name': 'yaws',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/yaws/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/yaws/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/yaws/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/yaws/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/yaws/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/yaws/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/yaws/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/yaws/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/yaws/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/yaws/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/yaws'},\n", " {'archive_url': 'https://api.github.com/repos/KirinDave/yaws/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/KirinDave/yaws/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/KirinDave/yaws/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/KirinDave/yaws/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/KirinDave/yaws/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/KirinDave/yaws/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/KirinDave/yaws/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/KirinDave/yaws/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/KirinDave/yaws/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/KirinDave/yaws/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/KirinDave/yaws/deployments',\n", " 'description': 'YAWS is an erlang web server',\n", " 'downloads_url': 'https://api.github.com/repos/KirinDave/yaws/downloads',\n", " 'events_url': 'https://api.github.com/repos/KirinDave/yaws/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/KirinDave/yaws/forks',\n", " 'full_name': 'KirinDave/yaws',\n", " 'git_commits_url': 'https://api.github.com/repos/KirinDave/yaws/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/KirinDave/yaws/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/KirinDave/yaws/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/KirinDave/yaws/hooks',\n", " 'html_url': 'https://github.com/KirinDave/yaws',\n", " 'id': 192,\n", " 'issue_comment_url': 'https://api.github.com/repos/KirinDave/yaws/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/KirinDave/yaws/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/KirinDave/yaws/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/KirinDave/yaws/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/KirinDave/yaws/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/KirinDave/yaws/languages',\n", " 'merges_url': 'https://api.github.com/repos/KirinDave/yaws/merges',\n", " 'milestones_url': 'https://api.github.com/repos/KirinDave/yaws/milestones{/number}',\n", " 'name': 'yaws',\n", " 'notifications_url': 'https://api.github.com/repos/KirinDave/yaws/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/36?v=4',\n", " 'events_url': 'https://api.github.com/users/KirinDave/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/KirinDave/followers',\n", " 'following_url': 'https://api.github.com/users/KirinDave/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/KirinDave/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/KirinDave',\n", " 'id': 36,\n", " 'login': 'KirinDave',\n", " 'organizations_url': 'https://api.github.com/users/KirinDave/orgs',\n", " 'received_events_url': 'https://api.github.com/users/KirinDave/received_events',\n", " 'repos_url': 'https://api.github.com/users/KirinDave/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/KirinDave/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/KirinDave/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/KirinDave'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/KirinDave/yaws/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/KirinDave/yaws/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/KirinDave/yaws/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/KirinDave/yaws/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/KirinDave/yaws/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/KirinDave/yaws/subscription',\n", " 'tags_url': 'https://api.github.com/repos/KirinDave/yaws/tags',\n", " 'teams_url': 'https://api.github.com/repos/KirinDave/yaws/teams',\n", " 'trees_url': 'https://api.github.com/repos/KirinDave/yaws/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/KirinDave/yaws'},\n", " {'archive_url': 'https://api.github.com/repos/sr/tasks/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/sr/tasks/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/sr/tasks/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/sr/tasks/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/sr/tasks/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/sr/tasks/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/sr/tasks/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/sr/tasks/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/sr/tasks/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/sr/tasks/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/sr/tasks/deployments',\n", " '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.',\n", " 'downloads_url': 'https://api.github.com/repos/sr/tasks/downloads',\n", " 'events_url': 'https://api.github.com/repos/sr/tasks/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/sr/tasks/forks',\n", " 'full_name': 'sr/tasks',\n", " 'git_commits_url': 'https://api.github.com/repos/sr/tasks/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/sr/tasks/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/sr/tasks/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/sr/tasks/hooks',\n", " 'html_url': 'https://github.com/sr/tasks',\n", " 'id': 193,\n", " 'issue_comment_url': 'https://api.github.com/repos/sr/tasks/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/sr/tasks/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/sr/tasks/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/sr/tasks/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/sr/tasks/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/sr/tasks/languages',\n", " 'merges_url': 'https://api.github.com/repos/sr/tasks/merges',\n", " 'milestones_url': 'https://api.github.com/repos/sr/tasks/milestones{/number}',\n", " 'name': 'tasks',\n", " 'notifications_url': 'https://api.github.com/repos/sr/tasks/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',\n", " 'events_url': 'https://api.github.com/users/sr/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/sr/followers',\n", " 'following_url': 'https://api.github.com/users/sr/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/sr',\n", " 'id': 90,\n", " 'login': 'sr',\n", " 'organizations_url': 'https://api.github.com/users/sr/orgs',\n", " 'received_events_url': 'https://api.github.com/users/sr/received_events',\n", " 'repos_url': 'https://api.github.com/users/sr/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/sr'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/sr/tasks/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/sr/tasks/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/sr/tasks/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/sr/tasks/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/sr/tasks/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/sr/tasks/subscription',\n", " 'tags_url': 'https://api.github.com/repos/sr/tasks/tags',\n", " 'teams_url': 'https://api.github.com/repos/sr/tasks/teams',\n", " 'trees_url': 'https://api.github.com/repos/sr/tasks/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/sr/tasks'},\n", " {'archive_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/deployments',\n", " 'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',\n", " 'downloads_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/downloads',\n", " 'events_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/forks',\n", " 'full_name': 'mattetti/ruby-on-rails-tmbundle',\n", " 'git_commits_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/hooks',\n", " 'html_url': 'https://github.com/mattetti/ruby-on-rails-tmbundle',\n", " 'id': 195,\n", " 'issue_comment_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/languages',\n", " 'merges_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/milestones{/number}',\n", " 'name': 'ruby-on-rails-tmbundle',\n", " 'notifications_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/113?v=4',\n", " 'events_url': 'https://api.github.com/users/mattetti/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mattetti/followers',\n", " 'following_url': 'https://api.github.com/users/mattetti/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mattetti/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mattetti',\n", " 'id': 113,\n", " 'login': 'mattetti',\n", " 'organizations_url': 'https://api.github.com/users/mattetti/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mattetti/received_events',\n", " 'repos_url': 'https://api.github.com/users/mattetti/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mattetti/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mattetti/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mattetti'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/tags',\n", " 'teams_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/teams',\n", " 'trees_url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mattetti/ruby-on-rails-tmbundle'},\n", " {'archive_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/deployments',\n", " 'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',\n", " 'downloads_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/downloads',\n", " 'events_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/forks',\n", " 'full_name': 'lawrencepit/ruby-on-rails-tmbundle',\n", " 'git_commits_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/hooks',\n", " 'html_url': 'https://github.com/lawrencepit/ruby-on-rails-tmbundle',\n", " 'id': 196,\n", " 'issue_comment_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/languages',\n", " 'merges_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/merges',\n", " 'milestones_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/milestones{/number}',\n", " 'name': 'ruby-on-rails-tmbundle',\n", " 'notifications_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/115?v=4',\n", " 'events_url': 'https://api.github.com/users/lawrencepit/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/lawrencepit/followers',\n", " 'following_url': 'https://api.github.com/users/lawrencepit/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/lawrencepit/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/lawrencepit',\n", " 'id': 115,\n", " 'login': 'lawrencepit',\n", " 'organizations_url': 'https://api.github.com/users/lawrencepit/orgs',\n", " 'received_events_url': 'https://api.github.com/users/lawrencepit/received_events',\n", " 'repos_url': 'https://api.github.com/users/lawrencepit/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/lawrencepit/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/lawrencepit/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/lawrencepit'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/subscription',\n", " 'tags_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/tags',\n", " 'teams_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/teams',\n", " 'trees_url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/lawrencepit/ruby-on-rails-tmbundle'},\n", " {'archive_url': 'https://api.github.com/repos/grempe/amazon-ec2/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/grempe/amazon-ec2/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/grempe/amazon-ec2/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/grempe/amazon-ec2/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/grempe/amazon-ec2/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/grempe/amazon-ec2/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/grempe/amazon-ec2/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/grempe/amazon-ec2/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/grempe/amazon-ec2/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/grempe/amazon-ec2/deployments',\n", " 'description': 'A Ruby Gem that gives you full access to several of the Amazon Web Services API from your Ruby/Ruby on Rails apps',\n", " 'downloads_url': 'https://api.github.com/repos/grempe/amazon-ec2/downloads',\n", " 'events_url': 'https://api.github.com/repos/grempe/amazon-ec2/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/grempe/amazon-ec2/forks',\n", " 'full_name': 'grempe/amazon-ec2',\n", " 'git_commits_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/grempe/amazon-ec2/hooks',\n", " 'html_url': 'https://github.com/grempe/amazon-ec2',\n", " 'id': 199,\n", " 'issue_comment_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/grempe/amazon-ec2/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/grempe/amazon-ec2/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/grempe/amazon-ec2/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/grempe/amazon-ec2/languages',\n", " 'merges_url': 'https://api.github.com/repos/grempe/amazon-ec2/merges',\n", " 'milestones_url': 'https://api.github.com/repos/grempe/amazon-ec2/milestones{/number}',\n", " 'name': 'amazon-ec2',\n", " 'notifications_url': 'https://api.github.com/repos/grempe/amazon-ec2/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/117?v=4',\n", " 'events_url': 'https://api.github.com/users/grempe/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/grempe/followers',\n", " 'following_url': 'https://api.github.com/users/grempe/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/grempe/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/grempe',\n", " 'id': 117,\n", " 'login': 'grempe',\n", " 'organizations_url': 'https://api.github.com/users/grempe/orgs',\n", " 'received_events_url': 'https://api.github.com/users/grempe/received_events',\n", " 'repos_url': 'https://api.github.com/users/grempe/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/grempe/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/grempe/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/grempe'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/grempe/amazon-ec2/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/grempe/amazon-ec2/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/grempe/amazon-ec2/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/grempe/amazon-ec2/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/grempe/amazon-ec2/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/grempe/amazon-ec2/subscription',\n", " 'tags_url': 'https://api.github.com/repos/grempe/amazon-ec2/tags',\n", " 'teams_url': 'https://api.github.com/repos/grempe/amazon-ec2/teams',\n", " 'trees_url': 'https://api.github.com/repos/grempe/amazon-ec2/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/grempe/amazon-ec2'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/merblogger/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/merblogger/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/merblogger/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merblogger/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/merblogger/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/merblogger/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/merblogger/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/merblogger/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/merblogger/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/merblogger/deployments',\n", " 'description': 'A Merb Blogging & Publishing Platform using Merb, DataMapper, haml and jQuery.',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/merblogger/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/merblogger/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/merblogger/forks',\n", " 'full_name': 'wayneeseguin/merblogger',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/merblogger/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/merblogger',\n", " 'id': 203,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/merblogger/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/merblogger/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/merblogger/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/merblogger/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/merblogger/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/merblogger/milestones{/number}',\n", " 'name': 'merblogger',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/merblogger/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/merblogger/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/merblogger/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merblogger/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/merblogger/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merblogger/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/merblogger/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/merblogger/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/merblogger/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/merblogger/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/merblogger'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/deployments',\n", " 'description': 'Merb + Webgen CMS system that has dynamic routing, Nginx config and static site generation with haml/sass/erb/... support.',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/forks',\n", " 'full_name': 'wayneeseguin/merbtastic',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/merbtastic',\n", " 'id': 204,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/milestones{/number}',\n", " 'name': 'merbtastic',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/merbtastic/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/merbtastic'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/alogr/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/alogr/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/alogr/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/alogr/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/alogr/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/alogr/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/alogr/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/alogr/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/alogr/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/alogr/deployments',\n", " 'description': 'AlogR is a threadsafe non-blocking asynchronous configurable logger for Ruby.',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/alogr/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/alogr/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/alogr/forks',\n", " 'full_name': 'wayneeseguin/alogr',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/alogr/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/alogr',\n", " 'id': 205,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/alogr/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/alogr/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/alogr/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/alogr/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/alogr/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/alogr/milestones{/number}',\n", " 'name': 'alogr',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/alogr/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/alogr/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/alogr/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/alogr/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/alogr/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/alogr/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/alogr/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/alogr/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/alogr/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/alogr/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/alogr'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/autozest/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/autozest/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/autozest/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/autozest/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/autozest/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/autozest/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/autozest/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/autozest/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/autozest/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/autozest/deployments',\n", " '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',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/autozest/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/autozest/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/autozest/forks',\n", " 'full_name': 'wayneeseguin/autozest',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/autozest/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/autozest',\n", " 'id': 206,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/autozest/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/autozest/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/autozest/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/autozest/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/autozest/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/autozest/milestones{/number}',\n", " 'name': 'autozest',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/autozest/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/autozest/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/autozest/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/autozest/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/autozest/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/autozest/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/autozest/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/autozest/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/autozest/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/autozest/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/autozest'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/rnginx/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/rnginx/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/rnginx/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/rnginx/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/rnginx/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/rnginx/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/rnginx/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/rnginx/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/rnginx/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/rnginx/deployments',\n", " 'description': 'Command line utility and library for working with Nginx configuration scripts.',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/rnginx/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/rnginx/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/rnginx/forks',\n", " 'full_name': 'wayneeseguin/rnginx',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/rnginx/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/rnginx',\n", " 'id': 207,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/rnginx/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/rnginx/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/rnginx/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/rnginx/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/rnginx/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/rnginx/milestones{/number}',\n", " 'name': 'rnginx',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/rnginx/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/rnginx/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/rnginx/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/rnginx/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/rnginx/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/rnginx/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/rnginx/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/rnginx/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/rnginx/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/rnginx/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/rnginx'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/sequel/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/sequel/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/sequel/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/sequel/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/sequel/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/sequel/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/sequel/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/sequel/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/sequel/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/sequel/deployments',\n", " 'description': 'Sequel ORM',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/sequel/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/sequel/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/sequel/forks',\n", " 'full_name': 'wayneeseguin/sequel',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/sequel/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/sequel',\n", " 'id': 208,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/sequel/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/sequel/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/sequel/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/sequel/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/sequel/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/sequel/milestones{/number}',\n", " 'name': 'sequel',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/sequel/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/sequel/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/sequel/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/sequel/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/sequel/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/sequel/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/sequel/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/sequel/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/sequel/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/sequel/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/sequel'},\n", " {'archive_url': 'https://api.github.com/repos/bmizerany/simply_versioned/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/bmizerany/simply_versioned/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/bmizerany/simply_versioned/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/bmizerany/simply_versioned/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/bmizerany/simply_versioned/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/bmizerany/simply_versioned/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/bmizerany/simply_versioned/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/bmizerany/simply_versioned/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/bmizerany/simply_versioned/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/bmizerany/simply_versioned/deployments',\n", " 'description': 'A simple, non-invasive, approach to versioning ActiveRecord models',\n", " 'downloads_url': 'https://api.github.com/repos/bmizerany/simply_versioned/downloads',\n", " 'events_url': 'https://api.github.com/repos/bmizerany/simply_versioned/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/bmizerany/simply_versioned/forks',\n", " 'full_name': 'bmizerany/simply_versioned',\n", " 'git_commits_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/bmizerany/simply_versioned/hooks',\n", " 'html_url': 'https://github.com/bmizerany/simply_versioned',\n", " 'id': 211,\n", " 'issue_comment_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/bmizerany/simply_versioned/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/bmizerany/simply_versioned/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/bmizerany/simply_versioned/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/bmizerany/simply_versioned/languages',\n", " 'merges_url': 'https://api.github.com/repos/bmizerany/simply_versioned/merges',\n", " 'milestones_url': 'https://api.github.com/repos/bmizerany/simply_versioned/milestones{/number}',\n", " 'name': 'simply_versioned',\n", " 'notifications_url': 'https://api.github.com/repos/bmizerany/simply_versioned/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/46?v=4',\n", " 'events_url': 'https://api.github.com/users/bmizerany/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/bmizerany/followers',\n", " 'following_url': 'https://api.github.com/users/bmizerany/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/bmizerany/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/bmizerany',\n", " 'id': 46,\n", " 'login': 'bmizerany',\n", " 'organizations_url': 'https://api.github.com/users/bmizerany/orgs',\n", " 'received_events_url': 'https://api.github.com/users/bmizerany/received_events',\n", " 'repos_url': 'https://api.github.com/users/bmizerany/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/bmizerany/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/bmizerany/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/bmizerany'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/bmizerany/simply_versioned/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/bmizerany/simply_versioned/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/bmizerany/simply_versioned/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/bmizerany/simply_versioned/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/bmizerany/simply_versioned/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/bmizerany/simply_versioned/subscription',\n", " 'tags_url': 'https://api.github.com/repos/bmizerany/simply_versioned/tags',\n", " 'teams_url': 'https://api.github.com/repos/bmizerany/simply_versioned/teams',\n", " 'trees_url': 'https://api.github.com/repos/bmizerany/simply_versioned/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/bmizerany/simply_versioned'},\n", " {'archive_url': 'https://api.github.com/repos/peterc/switchpipe/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/peterc/switchpipe/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/peterc/switchpipe/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/peterc/switchpipe/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/peterc/switchpipe/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/peterc/switchpipe/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/peterc/switchpipe/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/peterc/switchpipe/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/peterc/switchpipe/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/peterc/switchpipe/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/peterc/switchpipe/deployments',\n", " 'description': 'SwitchPipe is a backend process manager and HTTP proxy that makes (especially Ruby) web app deployment simple. NOW OBSOLETE. DO NOT USE.',\n", " 'downloads_url': 'https://api.github.com/repos/peterc/switchpipe/downloads',\n", " 'events_url': 'https://api.github.com/repos/peterc/switchpipe/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/peterc/switchpipe/forks',\n", " 'full_name': 'peterc/switchpipe',\n", " 'git_commits_url': 'https://api.github.com/repos/peterc/switchpipe/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/peterc/switchpipe/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/peterc/switchpipe/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/peterc/switchpipe/hooks',\n", " 'html_url': 'https://github.com/peterc/switchpipe',\n", " 'id': 212,\n", " 'issue_comment_url': 'https://api.github.com/repos/peterc/switchpipe/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/peterc/switchpipe/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/peterc/switchpipe/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/peterc/switchpipe/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/peterc/switchpipe/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/peterc/switchpipe/languages',\n", " 'merges_url': 'https://api.github.com/repos/peterc/switchpipe/merges',\n", " 'milestones_url': 'https://api.github.com/repos/peterc/switchpipe/milestones{/number}',\n", " 'name': 'switchpipe',\n", " 'notifications_url': 'https://api.github.com/repos/peterc/switchpipe/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/118?v=4',\n", " 'events_url': 'https://api.github.com/users/peterc/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/peterc/followers',\n", " 'following_url': 'https://api.github.com/users/peterc/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/peterc/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/peterc',\n", " 'id': 118,\n", " 'login': 'peterc',\n", " 'organizations_url': 'https://api.github.com/users/peterc/orgs',\n", " 'received_events_url': 'https://api.github.com/users/peterc/received_events',\n", " 'repos_url': 'https://api.github.com/users/peterc/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/peterc/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/peterc/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/peterc'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/peterc/switchpipe/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/peterc/switchpipe/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/peterc/switchpipe/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/peterc/switchpipe/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/peterc/switchpipe/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/peterc/switchpipe/subscription',\n", " 'tags_url': 'https://api.github.com/repos/peterc/switchpipe/tags',\n", " 'teams_url': 'https://api.github.com/repos/peterc/switchpipe/teams',\n", " 'trees_url': 'https://api.github.com/repos/peterc/switchpipe/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/peterc/switchpipe'},\n", " {'archive_url': 'https://api.github.com/repos/hornbeck/arc/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/hornbeck/arc/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/hornbeck/arc/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/hornbeck/arc/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/hornbeck/arc/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/hornbeck/arc/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/hornbeck/arc/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/hornbeck/arc/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/hornbeck/arc/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/hornbeck/arc/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/hornbeck/arc/deployments',\n", " 'description': 'My arc repo',\n", " 'downloads_url': 'https://api.github.com/repos/hornbeck/arc/downloads',\n", " 'events_url': 'https://api.github.com/repos/hornbeck/arc/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/hornbeck/arc/forks',\n", " 'full_name': 'hornbeck/arc',\n", " 'git_commits_url': 'https://api.github.com/repos/hornbeck/arc/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/hornbeck/arc/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/hornbeck/arc/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/hornbeck/arc/hooks',\n", " 'html_url': 'https://github.com/hornbeck/arc',\n", " 'id': 213,\n", " 'issue_comment_url': 'https://api.github.com/repos/hornbeck/arc/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/hornbeck/arc/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/hornbeck/arc/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/hornbeck/arc/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/hornbeck/arc/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/hornbeck/arc/languages',\n", " 'merges_url': 'https://api.github.com/repos/hornbeck/arc/merges',\n", " 'milestones_url': 'https://api.github.com/repos/hornbeck/arc/milestones{/number}',\n", " 'name': 'arc',\n", " 'notifications_url': 'https://api.github.com/repos/hornbeck/arc/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/49?v=4',\n", " 'events_url': 'https://api.github.com/users/hornbeck/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/hornbeck/followers',\n", " 'following_url': 'https://api.github.com/users/hornbeck/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/hornbeck/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/hornbeck',\n", " 'id': 49,\n", " 'login': 'hornbeck',\n", " 'organizations_url': 'https://api.github.com/users/hornbeck/orgs',\n", " 'received_events_url': 'https://api.github.com/users/hornbeck/received_events',\n", " 'repos_url': 'https://api.github.com/users/hornbeck/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/hornbeck/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/hornbeck'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/hornbeck/arc/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/hornbeck/arc/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/hornbeck/arc/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/hornbeck/arc/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/hornbeck/arc/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/hornbeck/arc/subscription',\n", " 'tags_url': 'https://api.github.com/repos/hornbeck/arc/tags',\n", " 'teams_url': 'https://api.github.com/repos/hornbeck/arc/teams',\n", " 'trees_url': 'https://api.github.com/repos/hornbeck/arc/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/hornbeck/arc'},\n", " {'archive_url': 'https://api.github.com/repos/up_the_irons/ebay4r/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/up_the_irons/ebay4r/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/up_the_irons/ebay4r/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/up_the_irons/ebay4r/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/up_the_irons/ebay4r/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/up_the_irons/ebay4r/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/up_the_irons/ebay4r/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/up_the_irons/ebay4r/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/up_the_irons/ebay4r/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/up_the_irons/ebay4r/deployments',\n", " 'description': \"eBay4R is a Ruby wrapper for eBay's Web Services SOAP API\",\n", " 'downloads_url': 'https://api.github.com/repos/up_the_irons/ebay4r/downloads',\n", " 'events_url': 'https://api.github.com/repos/up_the_irons/ebay4r/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/up_the_irons/ebay4r/forks',\n", " 'full_name': 'up_the_irons/ebay4r',\n", " 'git_commits_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/up_the_irons/ebay4r/hooks',\n", " 'html_url': 'https://github.com/up_the_irons/ebay4r',\n", " 'id': 217,\n", " 'issue_comment_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/up_the_irons/ebay4r/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/up_the_irons/ebay4r/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/up_the_irons/ebay4r/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/up_the_irons/ebay4r/languages',\n", " 'merges_url': 'https://api.github.com/repos/up_the_irons/ebay4r/merges',\n", " 'milestones_url': 'https://api.github.com/repos/up_the_irons/ebay4r/milestones{/number}',\n", " 'name': 'ebay4r',\n", " 'notifications_url': 'https://api.github.com/repos/up_the_irons/ebay4r/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',\n", " 'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/up_the_irons/followers',\n", " 'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/up_the_irons',\n", " 'id': 121,\n", " 'login': 'up_the_irons',\n", " 'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',\n", " 'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',\n", " 'repos_url': 'https://api.github.com/users/up_the_irons/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/up_the_irons'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/up_the_irons/ebay4r/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/up_the_irons/ebay4r/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/up_the_irons/ebay4r/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/up_the_irons/ebay4r/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/up_the_irons/ebay4r/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/up_the_irons/ebay4r/subscription',\n", " 'tags_url': 'https://api.github.com/repos/up_the_irons/ebay4r/tags',\n", " 'teams_url': 'https://api.github.com/repos/up_the_irons/ebay4r/teams',\n", " 'trees_url': 'https://api.github.com/repos/up_the_irons/ebay4r/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/up_the_irons/ebay4r'},\n", " {'archive_url': 'https://api.github.com/repos/wycats/merb-plugins/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wycats/merb-plugins/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wycats/merb-plugins/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wycats/merb-plugins/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wycats/merb-plugins/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wycats/merb-plugins/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wycats/merb-plugins/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wycats/merb-plugins/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wycats/merb-plugins/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wycats/merb-plugins/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wycats/merb-plugins/deployments',\n", " 'description': 'Merb Plugins: Even more modules to hook up your Merb installation',\n", " 'downloads_url': 'https://api.github.com/repos/wycats/merb-plugins/downloads',\n", " 'events_url': 'https://api.github.com/repos/wycats/merb-plugins/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wycats/merb-plugins/forks',\n", " 'full_name': 'wycats/merb-plugins',\n", " 'git_commits_url': 'https://api.github.com/repos/wycats/merb-plugins/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wycats/merb-plugins/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wycats/merb-plugins/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wycats/merb-plugins/hooks',\n", " 'html_url': 'https://github.com/wycats/merb-plugins',\n", " 'id': 218,\n", " 'issue_comment_url': 'https://api.github.com/repos/wycats/merb-plugins/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wycats/merb-plugins/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wycats/merb-plugins/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wycats/merb-plugins/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wycats/merb-plugins/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wycats/merb-plugins/languages',\n", " 'merges_url': 'https://api.github.com/repos/wycats/merb-plugins/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wycats/merb-plugins/milestones{/number}',\n", " 'name': 'merb-plugins',\n", " 'notifications_url': 'https://api.github.com/repos/wycats/merb-plugins/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/4?v=4',\n", " 'events_url': 'https://api.github.com/users/wycats/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wycats/followers',\n", " 'following_url': 'https://api.github.com/users/wycats/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wycats/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wycats',\n", " 'id': 4,\n", " 'login': 'wycats',\n", " 'organizations_url': 'https://api.github.com/users/wycats/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wycats/received_events',\n", " 'repos_url': 'https://api.github.com/users/wycats/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wycats/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wycats/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wycats'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wycats/merb-plugins/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wycats/merb-plugins/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wycats/merb-plugins/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wycats/merb-plugins/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wycats/merb-plugins/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wycats/merb-plugins/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wycats/merb-plugins/tags',\n", " 'teams_url': 'https://api.github.com/repos/wycats/merb-plugins/teams',\n", " 'trees_url': 'https://api.github.com/repos/wycats/merb-plugins/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wycats/merb-plugins'},\n", " {'archive_url': 'https://api.github.com/repos/up_the_irons/ram/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/up_the_irons/ram/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/up_the_irons/ram/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/up_the_irons/ram/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/up_the_irons/ram/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/up_the_irons/ram/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/up_the_irons/ram/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/up_the_irons/ram/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/up_the_irons/ram/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/up_the_irons/ram/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/up_the_irons/ram/deployments',\n", " 'description': 'Ruby Asset Manager',\n", " 'downloads_url': 'https://api.github.com/repos/up_the_irons/ram/downloads',\n", " 'events_url': 'https://api.github.com/repos/up_the_irons/ram/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/up_the_irons/ram/forks',\n", " 'full_name': 'up_the_irons/ram',\n", " 'git_commits_url': 'https://api.github.com/repos/up_the_irons/ram/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/up_the_irons/ram/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/up_the_irons/ram/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/up_the_irons/ram/hooks',\n", " 'html_url': 'https://github.com/up_the_irons/ram',\n", " 'id': 220,\n", " 'issue_comment_url': 'https://api.github.com/repos/up_the_irons/ram/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/up_the_irons/ram/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/up_the_irons/ram/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/up_the_irons/ram/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/up_the_irons/ram/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/up_the_irons/ram/languages',\n", " 'merges_url': 'https://api.github.com/repos/up_the_irons/ram/merges',\n", " 'milestones_url': 'https://api.github.com/repos/up_the_irons/ram/milestones{/number}',\n", " 'name': 'ram',\n", " 'notifications_url': 'https://api.github.com/repos/up_the_irons/ram/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',\n", " 'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/up_the_irons/followers',\n", " 'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/up_the_irons',\n", " 'id': 121,\n", " 'login': 'up_the_irons',\n", " 'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',\n", " 'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',\n", " 'repos_url': 'https://api.github.com/users/up_the_irons/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/up_the_irons'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/up_the_irons/ram/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/up_the_irons/ram/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/up_the_irons/ram/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/up_the_irons/ram/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/up_the_irons/ram/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/up_the_irons/ram/subscription',\n", " 'tags_url': 'https://api.github.com/repos/up_the_irons/ram/tags',\n", " 'teams_url': 'https://api.github.com/repos/up_the_irons/ram/teams',\n", " 'trees_url': 'https://api.github.com/repos/up_the_irons/ram/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/up_the_irons/ram'},\n", " {'archive_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/deployments',\n", " 'description': 'Ambition adapter for ActiveLdap',\n", " 'downloads_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/downloads',\n", " 'events_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/forks',\n", " 'full_name': 'defunkt/ambitious_activeldap',\n", " 'git_commits_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/hooks',\n", " 'html_url': 'https://github.com/defunkt/ambitious_activeldap',\n", " 'id': 230,\n", " 'issue_comment_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/languages',\n", " 'merges_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/merges',\n", " 'milestones_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/milestones{/number}',\n", " 'name': 'ambitious_activeldap',\n", " 'notifications_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/2?v=4',\n", " 'events_url': 'https://api.github.com/users/defunkt/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/defunkt/followers',\n", " 'following_url': 'https://api.github.com/users/defunkt/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/defunkt/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/defunkt',\n", " 'id': 2,\n", " 'login': 'defunkt',\n", " 'organizations_url': 'https://api.github.com/users/defunkt/orgs',\n", " 'received_events_url': 'https://api.github.com/users/defunkt/received_events',\n", " 'repos_url': 'https://api.github.com/users/defunkt/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/defunkt/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/defunkt/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/defunkt'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/subscription',\n", " 'tags_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/tags',\n", " 'teams_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/teams',\n", " 'trees_url': 'https://api.github.com/repos/defunkt/ambitious_activeldap/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/defunkt/ambitious_activeldap'},\n", " {'archive_url': 'https://api.github.com/repos/atmos/fitter_happier/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/atmos/fitter_happier/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/atmos/fitter_happier/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/atmos/fitter_happier/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/atmos/fitter_happier/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/atmos/fitter_happier/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/atmos/fitter_happier/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/atmos/fitter_happier/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/atmos/fitter_happier/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/atmos/fitter_happier/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/atmos/fitter_happier/deployments',\n", " 'description': 'A Rails Plugin for adding a simple health check to your application',\n", " 'downloads_url': 'https://api.github.com/repos/atmos/fitter_happier/downloads',\n", " 'events_url': 'https://api.github.com/repos/atmos/fitter_happier/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/atmos/fitter_happier/forks',\n", " 'full_name': 'atmos/fitter_happier',\n", " 'git_commits_url': 'https://api.github.com/repos/atmos/fitter_happier/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/atmos/fitter_happier/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/atmos/fitter_happier/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/atmos/fitter_happier/hooks',\n", " 'html_url': 'https://github.com/atmos/fitter_happier',\n", " 'id': 232,\n", " 'issue_comment_url': 'https://api.github.com/repos/atmos/fitter_happier/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/atmos/fitter_happier/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/atmos/fitter_happier/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/atmos/fitter_happier/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/atmos/fitter_happier/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/atmos/fitter_happier/languages',\n", " 'merges_url': 'https://api.github.com/repos/atmos/fitter_happier/merges',\n", " 'milestones_url': 'https://api.github.com/repos/atmos/fitter_happier/milestones{/number}',\n", " 'name': 'fitter_happier',\n", " 'notifications_url': 'https://api.github.com/repos/atmos/fitter_happier/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/38?v=4',\n", " 'events_url': 'https://api.github.com/users/atmos/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/atmos/followers',\n", " 'following_url': 'https://api.github.com/users/atmos/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/atmos/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/atmos',\n", " 'id': 38,\n", " 'login': 'atmos',\n", " 'organizations_url': 'https://api.github.com/users/atmos/orgs',\n", " 'received_events_url': 'https://api.github.com/users/atmos/received_events',\n", " 'repos_url': 'https://api.github.com/users/atmos/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/atmos/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/atmos/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/atmos'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/atmos/fitter_happier/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/atmos/fitter_happier/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/atmos/fitter_happier/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/atmos/fitter_happier/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/atmos/fitter_happier/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/atmos/fitter_happier/subscription',\n", " 'tags_url': 'https://api.github.com/repos/atmos/fitter_happier/tags',\n", " 'teams_url': 'https://api.github.com/repos/atmos/fitter_happier/teams',\n", " 'trees_url': 'https://api.github.com/repos/atmos/fitter_happier/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/atmos/fitter_happier'},\n", " {'archive_url': 'https://api.github.com/repos/brosner/oebfare/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/brosner/oebfare/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/brosner/oebfare/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/brosner/oebfare/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/brosner/oebfare/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/brosner/oebfare/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/brosner/oebfare/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/brosner/oebfare/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/brosner/oebfare/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/brosner/oebfare/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/brosner/oebfare/deployments',\n", " 'description': 'my personal blog written with django',\n", " 'downloads_url': 'https://api.github.com/repos/brosner/oebfare/downloads',\n", " 'events_url': 'https://api.github.com/repos/brosner/oebfare/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/brosner/oebfare/forks',\n", " 'full_name': 'brosner/oebfare',\n", " 'git_commits_url': 'https://api.github.com/repos/brosner/oebfare/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/brosner/oebfare/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/brosner/oebfare/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/brosner/oebfare/hooks',\n", " 'html_url': 'https://github.com/brosner/oebfare',\n", " 'id': 237,\n", " 'issue_comment_url': 'https://api.github.com/repos/brosner/oebfare/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/brosner/oebfare/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/brosner/oebfare/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/brosner/oebfare/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/brosner/oebfare/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/brosner/oebfare/languages',\n", " 'merges_url': 'https://api.github.com/repos/brosner/oebfare/merges',\n", " 'milestones_url': 'https://api.github.com/repos/brosner/oebfare/milestones{/number}',\n", " 'name': 'oebfare',\n", " 'notifications_url': 'https://api.github.com/repos/brosner/oebfare/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/124?v=4',\n", " 'events_url': 'https://api.github.com/users/brosner/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/brosner/followers',\n", " 'following_url': 'https://api.github.com/users/brosner/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/brosner/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/brosner',\n", " 'id': 124,\n", " 'login': 'brosner',\n", " 'organizations_url': 'https://api.github.com/users/brosner/orgs',\n", " 'received_events_url': 'https://api.github.com/users/brosner/received_events',\n", " 'repos_url': 'https://api.github.com/users/brosner/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/brosner/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/brosner/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/brosner'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/brosner/oebfare/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/brosner/oebfare/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/brosner/oebfare/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/brosner/oebfare/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/brosner/oebfare/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/brosner/oebfare/subscription',\n", " 'tags_url': 'https://api.github.com/repos/brosner/oebfare/tags',\n", " 'teams_url': 'https://api.github.com/repos/brosner/oebfare/teams',\n", " 'trees_url': 'https://api.github.com/repos/brosner/oebfare/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/brosner/oebfare'},\n", " {'archive_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/deployments',\n", " 'description': 'Tools for processing credit cards on the command line',\n", " 'downloads_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/downloads',\n", " 'events_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/forks',\n", " 'full_name': 'up_the_irons/credit_card_tools',\n", " 'git_commits_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/hooks',\n", " 'html_url': 'https://github.com/up_the_irons/credit_card_tools',\n", " 'id': 245,\n", " 'issue_comment_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/languages',\n", " 'merges_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/merges',\n", " 'milestones_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/milestones{/number}',\n", " 'name': 'credit_card_tools',\n", " 'notifications_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/121?v=4',\n", " 'events_url': 'https://api.github.com/users/up_the_irons/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/up_the_irons/followers',\n", " 'following_url': 'https://api.github.com/users/up_the_irons/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/up_the_irons/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/up_the_irons',\n", " 'id': 121,\n", " 'login': 'up_the_irons',\n", " 'organizations_url': 'https://api.github.com/users/up_the_irons/orgs',\n", " 'received_events_url': 'https://api.github.com/users/up_the_irons/received_events',\n", " 'repos_url': 'https://api.github.com/users/up_the_irons/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/up_the_irons/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/up_the_irons/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/up_the_irons'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/subscription',\n", " 'tags_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/tags',\n", " 'teams_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/teams',\n", " 'trees_url': 'https://api.github.com/repos/up_the_irons/credit_card_tools/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/up_the_irons/credit_card_tools'},\n", " {'archive_url': 'https://api.github.com/repos/jnicklas/rorem/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnicklas/rorem/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnicklas/rorem/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnicklas/rorem/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnicklas/rorem/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnicklas/rorem/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnicklas/rorem/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnicklas/rorem/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnicklas/rorem/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnicklas/rorem/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnicklas/rorem/deployments',\n", " 'description': 'Rorem is a random data generator',\n", " 'downloads_url': 'https://api.github.com/repos/jnicklas/rorem/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnicklas/rorem/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnicklas/rorem/forks',\n", " 'full_name': 'jnicklas/rorem',\n", " 'git_commits_url': 'https://api.github.com/repos/jnicklas/rorem/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnicklas/rorem/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnicklas/rorem/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnicklas/rorem/hooks',\n", " 'html_url': 'https://github.com/jnicklas/rorem',\n", " 'id': 248,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnicklas/rorem/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnicklas/rorem/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnicklas/rorem/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnicklas/rorem/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnicklas/rorem/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnicklas/rorem/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnicklas/rorem/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnicklas/rorem/milestones{/number}',\n", " 'name': 'rorem',\n", " 'notifications_url': 'https://api.github.com/repos/jnicklas/rorem/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/134?v=4',\n", " 'events_url': 'https://api.github.com/users/jnicklas/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnicklas/followers',\n", " 'following_url': 'https://api.github.com/users/jnicklas/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnicklas/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnicklas',\n", " 'id': 134,\n", " 'login': 'jnicklas',\n", " 'organizations_url': 'https://api.github.com/users/jnicklas/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnicklas/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnicklas/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnicklas/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnicklas'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnicklas/rorem/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnicklas/rorem/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnicklas/rorem/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnicklas/rorem/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnicklas/rorem/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnicklas/rorem/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnicklas/rorem/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnicklas/rorem/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnicklas/rorem/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnicklas/rorem'},\n", " {'archive_url': 'https://api.github.com/repos/cristibalan/braid/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/cristibalan/braid/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/cristibalan/braid/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/cristibalan/braid/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/cristibalan/braid/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/cristibalan/braid/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/cristibalan/braid/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/cristibalan/braid/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/cristibalan/braid/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/cristibalan/braid/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/cristibalan/braid/deployments',\n", " 'description': 'Simple tool to help track vendor branches in a Git repository.',\n", " 'downloads_url': 'https://api.github.com/repos/cristibalan/braid/downloads',\n", " 'events_url': 'https://api.github.com/repos/cristibalan/braid/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/cristibalan/braid/forks',\n", " 'full_name': 'cristibalan/braid',\n", " 'git_commits_url': 'https://api.github.com/repos/cristibalan/braid/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/cristibalan/braid/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/cristibalan/braid/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/cristibalan/braid/hooks',\n", " 'html_url': 'https://github.com/cristibalan/braid',\n", " 'id': 249,\n", " 'issue_comment_url': 'https://api.github.com/repos/cristibalan/braid/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/cristibalan/braid/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/cristibalan/braid/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/cristibalan/braid/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/cristibalan/braid/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/cristibalan/braid/languages',\n", " 'merges_url': 'https://api.github.com/repos/cristibalan/braid/merges',\n", " 'milestones_url': 'https://api.github.com/repos/cristibalan/braid/milestones{/number}',\n", " 'name': 'braid',\n", " 'notifications_url': 'https://api.github.com/repos/cristibalan/braid/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/122?v=4',\n", " 'events_url': 'https://api.github.com/users/cristibalan/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/cristibalan/followers',\n", " 'following_url': 'https://api.github.com/users/cristibalan/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/cristibalan/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/cristibalan',\n", " 'id': 122,\n", " 'login': 'cristibalan',\n", " 'organizations_url': 'https://api.github.com/users/cristibalan/orgs',\n", " 'received_events_url': 'https://api.github.com/users/cristibalan/received_events',\n", " 'repos_url': 'https://api.github.com/users/cristibalan/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/cristibalan/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/cristibalan/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/cristibalan'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/cristibalan/braid/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/cristibalan/braid/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/cristibalan/braid/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/cristibalan/braid/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/cristibalan/braid/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/cristibalan/braid/subscription',\n", " 'tags_url': 'https://api.github.com/repos/cristibalan/braid/tags',\n", " 'teams_url': 'https://api.github.com/repos/cristibalan/braid/teams',\n", " 'trees_url': 'https://api.github.com/repos/cristibalan/braid/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/cristibalan/braid'},\n", " {'archive_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/deployments',\n", " 'description': 'UploadColumn is no longer maintained, check out CarrierWave for an alternative',\n", " 'downloads_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/forks',\n", " 'full_name': 'jnicklas/uploadcolumn',\n", " 'git_commits_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/hooks',\n", " 'html_url': 'https://github.com/jnicklas/uploadcolumn',\n", " 'id': 251,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/milestones{/number}',\n", " 'name': 'uploadcolumn',\n", " 'notifications_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/134?v=4',\n", " 'events_url': 'https://api.github.com/users/jnicklas/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnicklas/followers',\n", " 'following_url': 'https://api.github.com/users/jnicklas/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnicklas/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnicklas',\n", " 'id': 134,\n", " 'login': 'jnicklas',\n", " 'organizations_url': 'https://api.github.com/users/jnicklas/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnicklas/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnicklas/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/jnicklas/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnicklas/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnicklas'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnicklas/uploadcolumn/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnicklas/uploadcolumn'},\n", " {'archive_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/deployments',\n", " 'description': 'Ruby on Rails TextMate bundle [master branch is svn trunk; patches to drnicwilliams@gmail.com]',\n", " 'downloads_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/downloads',\n", " 'events_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/forks',\n", " 'full_name': 'simonjefford/ruby-on-rails-tmbundle',\n", " 'git_commits_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/hooks',\n", " 'html_url': 'https://github.com/simonjefford/ruby-on-rails-tmbundle',\n", " 'id': 252,\n", " 'issue_comment_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/languages',\n", " 'merges_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/merges',\n", " 'milestones_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/milestones{/number}',\n", " 'name': 'ruby-on-rails-tmbundle',\n", " 'notifications_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/136?v=4',\n", " 'events_url': 'https://api.github.com/users/simonjefford/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/simonjefford/followers',\n", " 'following_url': 'https://api.github.com/users/simonjefford/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/simonjefford/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/simonjefford',\n", " 'id': 136,\n", " 'login': 'simonjefford',\n", " 'organizations_url': 'https://api.github.com/users/simonjefford/orgs',\n", " 'received_events_url': 'https://api.github.com/users/simonjefford/received_events',\n", " 'repos_url': 'https://api.github.com/users/simonjefford/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/simonjefford/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/simonjefford/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/simonjefford'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/subscription',\n", " 'tags_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/tags',\n", " 'teams_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/teams',\n", " 'trees_url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/simonjefford/ruby-on-rails-tmbundle'},\n", " {'archive_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/deployments',\n", " 'description': \"OUTDATED mirror of Rack's darcs repository, use github.com/chneukirchen/rack\",\n", " 'downloads_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/downloads',\n", " 'events_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/forks',\n", " 'full_name': 'chneukirchen/rack-mirror',\n", " 'git_commits_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/hooks',\n", " 'html_url': 'https://github.com/chneukirchen/rack-mirror',\n", " 'id': 256,\n", " 'issue_comment_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/languages',\n", " 'merges_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/merges',\n", " 'milestones_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/milestones{/number}',\n", " 'name': 'rack-mirror',\n", " 'notifications_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',\n", " 'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/chneukirchen/followers',\n", " 'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/chneukirchen',\n", " 'id': 139,\n", " 'login': 'chneukirchen',\n", " 'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',\n", " 'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',\n", " 'repos_url': 'https://api.github.com/users/chneukirchen/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/chneukirchen'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/subscription',\n", " 'tags_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/tags',\n", " 'teams_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/teams',\n", " 'trees_url': 'https://api.github.com/repos/chneukirchen/rack-mirror/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/chneukirchen/rack-mirror'},\n", " {'archive_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/deployments',\n", " 'description': '(experimental) Mirror of the coset darcs repository',\n", " 'downloads_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/downloads',\n", " 'events_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/forks',\n", " 'full_name': 'chneukirchen/coset-mirror',\n", " 'git_commits_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/hooks',\n", " 'html_url': 'https://github.com/chneukirchen/coset-mirror',\n", " 'id': 257,\n", " 'issue_comment_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/languages',\n", " 'merges_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/merges',\n", " 'milestones_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/milestones{/number}',\n", " 'name': 'coset-mirror',\n", " 'notifications_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',\n", " 'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/chneukirchen/followers',\n", " 'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/chneukirchen',\n", " 'id': 139,\n", " 'login': 'chneukirchen',\n", " 'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',\n", " 'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',\n", " 'repos_url': 'https://api.github.com/users/chneukirchen/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/chneukirchen'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/subscription',\n", " 'tags_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/tags',\n", " 'teams_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/teams',\n", " 'trees_url': 'https://api.github.com/repos/chneukirchen/coset-mirror/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/chneukirchen/coset-mirror'},\n", " {'archive_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/deployments',\n", " 'description': \"JavaScript Unit Test TextMate Bundle [for prototype's unittest.js library]\",\n", " 'downloads_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/downloads',\n", " 'events_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/forks',\n", " 'full_name': 'drnic/javascript-unittest-tmbundle',\n", " 'git_commits_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/hooks',\n", " 'html_url': 'https://github.com/drnic/javascript-unittest-tmbundle',\n", " 'id': 267,\n", " 'issue_comment_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/languages',\n", " 'merges_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/merges',\n", " 'milestones_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/milestones{/number}',\n", " 'name': 'javascript-unittest-tmbundle',\n", " 'notifications_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/108?v=4',\n", " 'events_url': 'https://api.github.com/users/drnic/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/drnic/followers',\n", " 'following_url': 'https://api.github.com/users/drnic/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/drnic/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/drnic',\n", " 'id': 108,\n", " 'login': 'drnic',\n", " 'organizations_url': 'https://api.github.com/users/drnic/orgs',\n", " 'received_events_url': 'https://api.github.com/users/drnic/received_events',\n", " 'repos_url': 'https://api.github.com/users/drnic/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/drnic/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/drnic/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/drnic'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/subscription',\n", " 'tags_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/tags',\n", " 'teams_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/teams',\n", " 'trees_url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/drnic/javascript-unittest-tmbundle'},\n", " {'archive_url': 'https://api.github.com/repos/engineyard/eycap/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/engineyard/eycap/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/engineyard/eycap/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/engineyard/eycap/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/engineyard/eycap/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/engineyard/eycap/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/engineyard/eycap/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/engineyard/eycap/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/engineyard/eycap/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/engineyard/eycap/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/engineyard/eycap/deployments',\n", " 'description': 'Engine Yard specific capistrano recipes',\n", " 'downloads_url': 'https://api.github.com/repos/engineyard/eycap/downloads',\n", " 'events_url': 'https://api.github.com/repos/engineyard/eycap/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/engineyard/eycap/forks',\n", " 'full_name': 'engineyard/eycap',\n", " 'git_commits_url': 'https://api.github.com/repos/engineyard/eycap/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/engineyard/eycap/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/engineyard/eycap/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/engineyard/eycap/hooks',\n", " 'html_url': 'https://github.com/engineyard/eycap',\n", " 'id': 273,\n", " 'issue_comment_url': 'https://api.github.com/repos/engineyard/eycap/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/engineyard/eycap/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/engineyard/eycap/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/engineyard/eycap/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/engineyard/eycap/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/engineyard/eycap/languages',\n", " 'merges_url': 'https://api.github.com/repos/engineyard/eycap/merges',\n", " 'milestones_url': 'https://api.github.com/repos/engineyard/eycap/milestones{/number}',\n", " 'name': 'eycap',\n", " 'notifications_url': 'https://api.github.com/repos/engineyard/eycap/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/81?v=4',\n", " 'events_url': 'https://api.github.com/users/engineyard/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/engineyard/followers',\n", " 'following_url': 'https://api.github.com/users/engineyard/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/engineyard/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/engineyard',\n", " 'id': 81,\n", " 'login': 'engineyard',\n", " 'organizations_url': 'https://api.github.com/users/engineyard/orgs',\n", " 'received_events_url': 'https://api.github.com/users/engineyard/received_events',\n", " 'repos_url': 'https://api.github.com/users/engineyard/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/engineyard/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/engineyard/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/engineyard'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/engineyard/eycap/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/engineyard/eycap/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/engineyard/eycap/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/engineyard/eycap/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/engineyard/eycap/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/engineyard/eycap/subscription',\n", " 'tags_url': 'https://api.github.com/repos/engineyard/eycap/tags',\n", " 'teams_url': 'https://api.github.com/repos/engineyard/eycap/teams',\n", " 'trees_url': 'https://api.github.com/repos/engineyard/eycap/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/engineyard/eycap'},\n", " {'archive_url': 'https://api.github.com/repos/chneukirchen/gitsum/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/chneukirchen/gitsum/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/chneukirchen/gitsum/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/chneukirchen/gitsum/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/chneukirchen/gitsum/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/chneukirchen/gitsum/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/chneukirchen/gitsum/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/chneukirchen/gitsum/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/chneukirchen/gitsum/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/chneukirchen/gitsum/deployments',\n", " 'description': 'basic darcsum feelalike for Git',\n", " 'downloads_url': 'https://api.github.com/repos/chneukirchen/gitsum/downloads',\n", " 'events_url': 'https://api.github.com/repos/chneukirchen/gitsum/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/chneukirchen/gitsum/forks',\n", " 'full_name': 'chneukirchen/gitsum',\n", " 'git_commits_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/chneukirchen/gitsum/hooks',\n", " 'html_url': 'https://github.com/chneukirchen/gitsum',\n", " 'id': 279,\n", " 'issue_comment_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/chneukirchen/gitsum/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/chneukirchen/gitsum/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/chneukirchen/gitsum/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/chneukirchen/gitsum/languages',\n", " 'merges_url': 'https://api.github.com/repos/chneukirchen/gitsum/merges',\n", " 'milestones_url': 'https://api.github.com/repos/chneukirchen/gitsum/milestones{/number}',\n", " 'name': 'gitsum',\n", " 'notifications_url': 'https://api.github.com/repos/chneukirchen/gitsum/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/139?v=4',\n", " 'events_url': 'https://api.github.com/users/chneukirchen/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/chneukirchen/followers',\n", " 'following_url': 'https://api.github.com/users/chneukirchen/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/chneukirchen/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/chneukirchen',\n", " 'id': 139,\n", " 'login': 'chneukirchen',\n", " 'organizations_url': 'https://api.github.com/users/chneukirchen/orgs',\n", " 'received_events_url': 'https://api.github.com/users/chneukirchen/received_events',\n", " 'repos_url': 'https://api.github.com/users/chneukirchen/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/chneukirchen/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/chneukirchen/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/chneukirchen'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/chneukirchen/gitsum/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/chneukirchen/gitsum/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/chneukirchen/gitsum/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/chneukirchen/gitsum/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/chneukirchen/gitsum/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/chneukirchen/gitsum/subscription',\n", " 'tags_url': 'https://api.github.com/repos/chneukirchen/gitsum/tags',\n", " 'teams_url': 'https://api.github.com/repos/chneukirchen/gitsum/teams',\n", " 'trees_url': 'https://api.github.com/repos/chneukirchen/gitsum/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/chneukirchen/gitsum'},\n", " {'archive_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/deployments',\n", " 'description': 'Sequel::Model (No longer working on this project)',\n", " 'downloads_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/downloads',\n", " 'events_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/forks',\n", " 'full_name': 'wayneeseguin/sequel-model',\n", " 'git_commits_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/hooks',\n", " 'html_url': 'https://github.com/wayneeseguin/sequel-model',\n", " 'id': 293,\n", " 'issue_comment_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/languages',\n", " 'merges_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/merges',\n", " 'milestones_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/milestones{/number}',\n", " 'name': 'sequel-model',\n", " 'notifications_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/18?v=4',\n", " 'events_url': 'https://api.github.com/users/wayneeseguin/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/wayneeseguin/followers',\n", " 'following_url': 'https://api.github.com/users/wayneeseguin/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/wayneeseguin/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/wayneeseguin',\n", " 'id': 18,\n", " 'login': 'wayneeseguin',\n", " 'organizations_url': 'https://api.github.com/users/wayneeseguin/orgs',\n", " 'received_events_url': 'https://api.github.com/users/wayneeseguin/received_events',\n", " 'repos_url': 'https://api.github.com/users/wayneeseguin/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/wayneeseguin/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/wayneeseguin/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/wayneeseguin'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/subscription',\n", " 'tags_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/tags',\n", " 'teams_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/teams',\n", " 'trees_url': 'https://api.github.com/repos/wayneeseguin/sequel-model/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/wayneeseguin/sequel-model'},\n", " {'archive_url': 'https://api.github.com/repos/kevinclark/god/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/kevinclark/god/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/kevinclark/god/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/kevinclark/god/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/kevinclark/god/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/kevinclark/god/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/kevinclark/god/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/kevinclark/god/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/kevinclark/god/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/kevinclark/god/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/kevinclark/god/deployments',\n", " 'description': 'Ruby process monitor',\n", " 'downloads_url': 'https://api.github.com/repos/kevinclark/god/downloads',\n", " 'events_url': 'https://api.github.com/repos/kevinclark/god/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/kevinclark/god/forks',\n", " 'full_name': 'kevinclark/god',\n", " 'git_commits_url': 'https://api.github.com/repos/kevinclark/god/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/kevinclark/god/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/kevinclark/god/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/kevinclark/god/hooks',\n", " 'html_url': 'https://github.com/kevinclark/god',\n", " 'id': 305,\n", " 'issue_comment_url': 'https://api.github.com/repos/kevinclark/god/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/kevinclark/god/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/kevinclark/god/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/kevinclark/god/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/kevinclark/god/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/kevinclark/god/languages',\n", " 'merges_url': 'https://api.github.com/repos/kevinclark/god/merges',\n", " 'milestones_url': 'https://api.github.com/repos/kevinclark/god/milestones{/number}',\n", " 'name': 'god',\n", " 'notifications_url': 'https://api.github.com/repos/kevinclark/god/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/20?v=4',\n", " 'events_url': 'https://api.github.com/users/kevinclark/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/kevinclark/followers',\n", " 'following_url': 'https://api.github.com/users/kevinclark/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/kevinclark/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/kevinclark',\n", " 'id': 20,\n", " 'login': 'kevinclark',\n", " 'organizations_url': 'https://api.github.com/users/kevinclark/orgs',\n", " 'received_events_url': 'https://api.github.com/users/kevinclark/received_events',\n", " 'repos_url': 'https://api.github.com/users/kevinclark/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/kevinclark/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/kevinclark/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/kevinclark'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/kevinclark/god/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/kevinclark/god/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/kevinclark/god/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/kevinclark/god/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/kevinclark/god/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/kevinclark/god/subscription',\n", " 'tags_url': 'https://api.github.com/repos/kevinclark/god/tags',\n", " 'teams_url': 'https://api.github.com/repos/kevinclark/god/teams',\n", " 'trees_url': 'https://api.github.com/repos/kevinclark/god/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/kevinclark/god'},\n", " {'archive_url': 'https://api.github.com/repos/hornbeck/blerb-core/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/hornbeck/blerb-core/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/hornbeck/blerb-core/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/hornbeck/blerb-core/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/hornbeck/blerb-core/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/hornbeck/blerb-core/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/hornbeck/blerb-core/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/hornbeck/blerb-core/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/hornbeck/blerb-core/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/hornbeck/blerb-core/deployments',\n", " 'description': 'blerb running on merb-core',\n", " 'downloads_url': 'https://api.github.com/repos/hornbeck/blerb-core/downloads',\n", " 'events_url': 'https://api.github.com/repos/hornbeck/blerb-core/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/hornbeck/blerb-core/forks',\n", " 'full_name': 'hornbeck/blerb-core',\n", " 'git_commits_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/hornbeck/blerb-core/hooks',\n", " 'html_url': 'https://github.com/hornbeck/blerb-core',\n", " 'id': 307,\n", " 'issue_comment_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/hornbeck/blerb-core/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/hornbeck/blerb-core/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/hornbeck/blerb-core/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/hornbeck/blerb-core/languages',\n", " 'merges_url': 'https://api.github.com/repos/hornbeck/blerb-core/merges',\n", " 'milestones_url': 'https://api.github.com/repos/hornbeck/blerb-core/milestones{/number}',\n", " 'name': 'blerb-core',\n", " 'notifications_url': 'https://api.github.com/repos/hornbeck/blerb-core/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/49?v=4',\n", " 'events_url': 'https://api.github.com/users/hornbeck/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/hornbeck/followers',\n", " 'following_url': 'https://api.github.com/users/hornbeck/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/hornbeck/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/hornbeck',\n", " 'id': 49,\n", " 'login': 'hornbeck',\n", " 'organizations_url': 'https://api.github.com/users/hornbeck/orgs',\n", " 'received_events_url': 'https://api.github.com/users/hornbeck/received_events',\n", " 'repos_url': 'https://api.github.com/users/hornbeck/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/hornbeck/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/hornbeck/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/hornbeck'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/hornbeck/blerb-core/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/hornbeck/blerb-core/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/hornbeck/blerb-core/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/hornbeck/blerb-core/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/hornbeck/blerb-core/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/hornbeck/blerb-core/subscription',\n", " 'tags_url': 'https://api.github.com/repos/hornbeck/blerb-core/tags',\n", " 'teams_url': 'https://api.github.com/repos/hornbeck/blerb-core/teams',\n", " 'trees_url': 'https://api.github.com/repos/hornbeck/blerb-core/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/hornbeck/blerb-core'},\n", " {'archive_url': 'https://api.github.com/repos/brosner/django-mptt/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/brosner/django-mptt/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/brosner/django-mptt/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/brosner/django-mptt/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/brosner/django-mptt/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/brosner/django-mptt/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/brosner/django-mptt/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/brosner/django-mptt/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/brosner/django-mptt/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/brosner/django-mptt/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/brosner/django-mptt/deployments',\n", " 'description': 'utilities for implementing a modified pre-order traversal tree in django',\n", " 'downloads_url': 'https://api.github.com/repos/brosner/django-mptt/downloads',\n", " 'events_url': 'https://api.github.com/repos/brosner/django-mptt/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/brosner/django-mptt/forks',\n", " 'full_name': 'brosner/django-mptt',\n", " 'git_commits_url': 'https://api.github.com/repos/brosner/django-mptt/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/brosner/django-mptt/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/brosner/django-mptt/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/brosner/django-mptt/hooks',\n", " 'html_url': 'https://github.com/brosner/django-mptt',\n", " 'id': 312,\n", " 'issue_comment_url': 'https://api.github.com/repos/brosner/django-mptt/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/brosner/django-mptt/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/brosner/django-mptt/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/brosner/django-mptt/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/brosner/django-mptt/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/brosner/django-mptt/languages',\n", " 'merges_url': 'https://api.github.com/repos/brosner/django-mptt/merges',\n", " 'milestones_url': 'https://api.github.com/repos/brosner/django-mptt/milestones{/number}',\n", " 'name': 'django-mptt',\n", " 'notifications_url': 'https://api.github.com/repos/brosner/django-mptt/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/124?v=4',\n", " 'events_url': 'https://api.github.com/users/brosner/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/brosner/followers',\n", " 'following_url': 'https://api.github.com/users/brosner/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/brosner/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/brosner',\n", " 'id': 124,\n", " 'login': 'brosner',\n", " 'organizations_url': 'https://api.github.com/users/brosner/orgs',\n", " 'received_events_url': 'https://api.github.com/users/brosner/received_events',\n", " 'repos_url': 'https://api.github.com/users/brosner/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/brosner/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/brosner/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/brosner'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/brosner/django-mptt/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/brosner/django-mptt/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/brosner/django-mptt/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/brosner/django-mptt/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/brosner/django-mptt/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/brosner/django-mptt/subscription',\n", " 'tags_url': 'https://api.github.com/repos/brosner/django-mptt/tags',\n", " 'teams_url': 'https://api.github.com/repos/brosner/django-mptt/teams',\n", " 'trees_url': 'https://api.github.com/repos/brosner/django-mptt/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/brosner/django-mptt'},\n", " {'archive_url': 'https://api.github.com/repos/technomancy/bus-scheme/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/technomancy/bus-scheme/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/technomancy/bus-scheme/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/technomancy/bus-scheme/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/technomancy/bus-scheme/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/technomancy/bus-scheme/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/technomancy/bus-scheme/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/technomancy/bus-scheme/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/technomancy/bus-scheme/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/technomancy/bus-scheme/deployments',\n", " 'description': 'a Scheme written in Ruby, but implemented on the bus!',\n", " 'downloads_url': 'https://api.github.com/repos/technomancy/bus-scheme/downloads',\n", " 'events_url': 'https://api.github.com/repos/technomancy/bus-scheme/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/technomancy/bus-scheme/forks',\n", " 'full_name': 'technomancy/bus-scheme',\n", " 'git_commits_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/technomancy/bus-scheme/hooks',\n", " 'html_url': 'https://github.com/technomancy/bus-scheme',\n", " 'id': 314,\n", " 'issue_comment_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/technomancy/bus-scheme/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/technomancy/bus-scheme/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/technomancy/bus-scheme/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/technomancy/bus-scheme/languages',\n", " 'merges_url': 'https://api.github.com/repos/technomancy/bus-scheme/merges',\n", " 'milestones_url': 'https://api.github.com/repos/technomancy/bus-scheme/milestones{/number}',\n", " 'name': 'bus-scheme',\n", " 'notifications_url': 'https://api.github.com/repos/technomancy/bus-scheme/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/141?v=4',\n", " 'events_url': 'https://api.github.com/users/technomancy/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/technomancy/followers',\n", " 'following_url': 'https://api.github.com/users/technomancy/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/technomancy/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/technomancy',\n", " 'id': 141,\n", " 'login': 'technomancy',\n", " 'organizations_url': 'https://api.github.com/users/technomancy/orgs',\n", " 'received_events_url': 'https://api.github.com/users/technomancy/received_events',\n", " 'repos_url': 'https://api.github.com/users/technomancy/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/technomancy/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/technomancy/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/technomancy'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/technomancy/bus-scheme/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/technomancy/bus-scheme/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/technomancy/bus-scheme/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/technomancy/bus-scheme/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/technomancy/bus-scheme/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/technomancy/bus-scheme/subscription',\n", " 'tags_url': 'https://api.github.com/repos/technomancy/bus-scheme/tags',\n", " 'teams_url': 'https://api.github.com/repos/technomancy/bus-scheme/teams',\n", " 'trees_url': 'https://api.github.com/repos/technomancy/bus-scheme/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/technomancy/bus-scheme'},\n", " {'archive_url': 'https://api.github.com/repos/Caged/javascript-bits/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/Caged/javascript-bits/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/Caged/javascript-bits/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/Caged/javascript-bits/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/Caged/javascript-bits/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/Caged/javascript-bits/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/Caged/javascript-bits/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/Caged/javascript-bits/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/Caged/javascript-bits/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/Caged/javascript-bits/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/Caged/javascript-bits/deployments',\n", " 'description': 'Useful pieces of JavaScript. Some old, some new.',\n", " 'downloads_url': 'https://api.github.com/repos/Caged/javascript-bits/downloads',\n", " 'events_url': 'https://api.github.com/repos/Caged/javascript-bits/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/Caged/javascript-bits/forks',\n", " 'full_name': 'Caged/javascript-bits',\n", " 'git_commits_url': 'https://api.github.com/repos/Caged/javascript-bits/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/Caged/javascript-bits/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/Caged/javascript-bits/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/Caged/javascript-bits/hooks',\n", " 'html_url': 'https://github.com/Caged/javascript-bits',\n", " 'id': 319,\n", " 'issue_comment_url': 'https://api.github.com/repos/Caged/javascript-bits/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/Caged/javascript-bits/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/Caged/javascript-bits/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/Caged/javascript-bits/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/Caged/javascript-bits/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/Caged/javascript-bits/languages',\n", " 'merges_url': 'https://api.github.com/repos/Caged/javascript-bits/merges',\n", " 'milestones_url': 'https://api.github.com/repos/Caged/javascript-bits/milestones{/number}',\n", " 'name': 'javascript-bits',\n", " 'notifications_url': 'https://api.github.com/repos/Caged/javascript-bits/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',\n", " 'events_url': 'https://api.github.com/users/Caged/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/Caged/followers',\n", " 'following_url': 'https://api.github.com/users/Caged/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/Caged',\n", " 'id': 25,\n", " 'login': 'Caged',\n", " 'organizations_url': 'https://api.github.com/users/Caged/orgs',\n", " 'received_events_url': 'https://api.github.com/users/Caged/received_events',\n", " 'repos_url': 'https://api.github.com/users/Caged/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/Caged'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/Caged/javascript-bits/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/Caged/javascript-bits/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/Caged/javascript-bits/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/Caged/javascript-bits/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/Caged/javascript-bits/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/Caged/javascript-bits/subscription',\n", " 'tags_url': 'https://api.github.com/repos/Caged/javascript-bits/tags',\n", " 'teams_url': 'https://api.github.com/repos/Caged/javascript-bits/teams',\n", " 'trees_url': 'https://api.github.com/repos/Caged/javascript-bits/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/Caged/javascript-bits'},\n", " {'archive_url': 'https://api.github.com/repos/Caged/groomlake/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/Caged/groomlake/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/Caged/groomlake/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/Caged/groomlake/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/Caged/groomlake/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/Caged/groomlake/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/Caged/groomlake/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/Caged/groomlake/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/Caged/groomlake/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/Caged/groomlake/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/Caged/groomlake/deployments',\n", " 'description': 'Ruby parsers for some Adobe file formats.',\n", " 'downloads_url': 'https://api.github.com/repos/Caged/groomlake/downloads',\n", " 'events_url': 'https://api.github.com/repos/Caged/groomlake/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/Caged/groomlake/forks',\n", " 'full_name': 'Caged/groomlake',\n", " 'git_commits_url': 'https://api.github.com/repos/Caged/groomlake/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/Caged/groomlake/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/Caged/groomlake/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/Caged/groomlake/hooks',\n", " 'html_url': 'https://github.com/Caged/groomlake',\n", " 'id': 320,\n", " 'issue_comment_url': 'https://api.github.com/repos/Caged/groomlake/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/Caged/groomlake/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/Caged/groomlake/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/Caged/groomlake/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/Caged/groomlake/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/Caged/groomlake/languages',\n", " 'merges_url': 'https://api.github.com/repos/Caged/groomlake/merges',\n", " 'milestones_url': 'https://api.github.com/repos/Caged/groomlake/milestones{/number}',\n", " 'name': 'groomlake',\n", " 'notifications_url': 'https://api.github.com/repos/Caged/groomlake/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/25?v=4',\n", " 'events_url': 'https://api.github.com/users/Caged/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/Caged/followers',\n", " 'following_url': 'https://api.github.com/users/Caged/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/Caged/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/Caged',\n", " 'id': 25,\n", " 'login': 'Caged',\n", " 'organizations_url': 'https://api.github.com/users/Caged/orgs',\n", " 'received_events_url': 'https://api.github.com/users/Caged/received_events',\n", " 'repos_url': 'https://api.github.com/users/Caged/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/Caged/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/Caged/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/Caged'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/Caged/groomlake/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/Caged/groomlake/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/Caged/groomlake/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/Caged/groomlake/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/Caged/groomlake/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/Caged/groomlake/subscription',\n", " 'tags_url': 'https://api.github.com/repos/Caged/groomlake/tags',\n", " 'teams_url': 'https://api.github.com/repos/Caged/groomlake/teams',\n", " 'trees_url': 'https://api.github.com/repos/Caged/groomlake/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/Caged/groomlake'},\n", " {'archive_url': 'https://api.github.com/repos/sevenwire/forgery/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/sevenwire/forgery/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/sevenwire/forgery/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/sevenwire/forgery/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/sevenwire/forgery/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/sevenwire/forgery/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/sevenwire/forgery/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/sevenwire/forgery/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/sevenwire/forgery/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/sevenwire/forgery/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/sevenwire/forgery/deployments',\n", " 'description': 'Easy and customizable generation of forged data.',\n", " 'downloads_url': 'https://api.github.com/repos/sevenwire/forgery/downloads',\n", " 'events_url': 'https://api.github.com/repos/sevenwire/forgery/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/sevenwire/forgery/forks',\n", " 'full_name': 'sevenwire/forgery',\n", " 'git_commits_url': 'https://api.github.com/repos/sevenwire/forgery/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/sevenwire/forgery/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/sevenwire/forgery/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/sevenwire/forgery/hooks',\n", " 'html_url': 'https://github.com/sevenwire/forgery',\n", " 'id': 322,\n", " 'issue_comment_url': 'https://api.github.com/repos/sevenwire/forgery/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/sevenwire/forgery/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/sevenwire/forgery/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/sevenwire/forgery/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/sevenwire/forgery/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/sevenwire/forgery/languages',\n", " 'merges_url': 'https://api.github.com/repos/sevenwire/forgery/merges',\n", " 'milestones_url': 'https://api.github.com/repos/sevenwire/forgery/milestones{/number}',\n", " 'name': 'forgery',\n", " 'notifications_url': 'https://api.github.com/repos/sevenwire/forgery/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars3.githubusercontent.com/u/150?v=4',\n", " 'events_url': 'https://api.github.com/users/sevenwire/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/sevenwire/followers',\n", " 'following_url': 'https://api.github.com/users/sevenwire/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/sevenwire/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/sevenwire',\n", " 'id': 150,\n", " 'login': 'sevenwire',\n", " 'organizations_url': 'https://api.github.com/users/sevenwire/orgs',\n", " 'received_events_url': 'https://api.github.com/users/sevenwire/received_events',\n", " 'repos_url': 'https://api.github.com/users/sevenwire/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/sevenwire/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/sevenwire/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/sevenwire'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/sevenwire/forgery/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/sevenwire/forgery/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/sevenwire/forgery/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/sevenwire/forgery/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/sevenwire/forgery/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/sevenwire/forgery/subscription',\n", " 'tags_url': 'https://api.github.com/repos/sevenwire/forgery/tags',\n", " 'teams_url': 'https://api.github.com/repos/sevenwire/forgery/teams',\n", " 'trees_url': 'https://api.github.com/repos/sevenwire/forgery/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/sevenwire/forgery'},\n", " {'archive_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/deployments',\n", " 'description': 'Ambition adapter for Sphinx',\n", " 'downloads_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/downloads',\n", " 'events_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/forks',\n", " 'full_name': 'technicalpickles/ambitious-sphinx',\n", " 'git_commits_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/hooks',\n", " 'html_url': 'https://github.com/technicalpickles/ambitious-sphinx',\n", " 'id': 324,\n", " 'issue_comment_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/languages',\n", " 'merges_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/merges',\n", " 'milestones_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/milestones{/number}',\n", " 'name': 'ambitious-sphinx',\n", " 'notifications_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/159?v=4',\n", " 'events_url': 'https://api.github.com/users/technicalpickles/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/technicalpickles/followers',\n", " 'following_url': 'https://api.github.com/users/technicalpickles/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/technicalpickles/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/technicalpickles',\n", " 'id': 159,\n", " 'login': 'technicalpickles',\n", " 'organizations_url': 'https://api.github.com/users/technicalpickles/orgs',\n", " 'received_events_url': 'https://api.github.com/users/technicalpickles/received_events',\n", " 'repos_url': 'https://api.github.com/users/technicalpickles/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/technicalpickles/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/technicalpickles/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/technicalpickles'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/subscription',\n", " 'tags_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/tags',\n", " 'teams_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/teams',\n", " 'trees_url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/technicalpickles/ambitious-sphinx'},\n", " {'archive_url': 'https://api.github.com/repos/lazyatom/soup/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/lazyatom/soup/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/lazyatom/soup/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/lazyatom/soup/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/lazyatom/soup/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/lazyatom/soup/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/lazyatom/soup/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/lazyatom/soup/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/lazyatom/soup/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/lazyatom/soup/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/lazyatom/soup/deployments',\n", " 'description': \"I suppose it's a document database. Or a tuple store. But really, it's just data sloshing around, waiting to be used.\",\n", " 'downloads_url': 'https://api.github.com/repos/lazyatom/soup/downloads',\n", " 'events_url': 'https://api.github.com/repos/lazyatom/soup/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/lazyatom/soup/forks',\n", " 'full_name': 'lazyatom/soup',\n", " 'git_commits_url': 'https://api.github.com/repos/lazyatom/soup/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/lazyatom/soup/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/lazyatom/soup/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/lazyatom/soup/hooks',\n", " 'html_url': 'https://github.com/lazyatom/soup',\n", " 'id': 329,\n", " 'issue_comment_url': 'https://api.github.com/repos/lazyatom/soup/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/lazyatom/soup/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/lazyatom/soup/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/lazyatom/soup/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/lazyatom/soup/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/lazyatom/soup/languages',\n", " 'merges_url': 'https://api.github.com/repos/lazyatom/soup/merges',\n", " 'milestones_url': 'https://api.github.com/repos/lazyatom/soup/milestones{/number}',\n", " 'name': 'soup',\n", " 'notifications_url': 'https://api.github.com/repos/lazyatom/soup/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/145?v=4',\n", " 'events_url': 'https://api.github.com/users/lazyatom/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/lazyatom/followers',\n", " 'following_url': 'https://api.github.com/users/lazyatom/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/lazyatom/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/lazyatom',\n", " 'id': 145,\n", " 'login': 'lazyatom',\n", " 'organizations_url': 'https://api.github.com/users/lazyatom/orgs',\n", " 'received_events_url': 'https://api.github.com/users/lazyatom/received_events',\n", " 'repos_url': 'https://api.github.com/users/lazyatom/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/lazyatom/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/lazyatom/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/lazyatom'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/lazyatom/soup/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/lazyatom/soup/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/lazyatom/soup/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/lazyatom/soup/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/lazyatom/soup/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/lazyatom/soup/subscription',\n", " 'tags_url': 'https://api.github.com/repos/lazyatom/soup/tags',\n", " 'teams_url': 'https://api.github.com/repos/lazyatom/soup/teams',\n", " 'trees_url': 'https://api.github.com/repos/lazyatom/soup/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/lazyatom/soup'},\n", " {'archive_url': 'https://api.github.com/repos/josh/rails/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/josh/rails/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/josh/rails/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/josh/rails/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/josh/rails/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/josh/rails/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/josh/rails/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/josh/rails/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/josh/rails/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/josh/rails/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/josh/rails/deployments',\n", " 'description': 'Ruby on Rails',\n", " 'downloads_url': 'https://api.github.com/repos/josh/rails/downloads',\n", " 'events_url': 'https://api.github.com/repos/josh/rails/events',\n", " 'fork': True,\n", " 'forks_url': 'https://api.github.com/repos/josh/rails/forks',\n", " 'full_name': 'josh/rails',\n", " 'git_commits_url': 'https://api.github.com/repos/josh/rails/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/josh/rails/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/josh/rails/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/josh/rails/hooks',\n", " 'html_url': 'https://github.com/josh/rails',\n", " 'id': 332,\n", " 'issue_comment_url': 'https://api.github.com/repos/josh/rails/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/josh/rails/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/josh/rails/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/josh/rails/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/josh/rails/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/josh/rails/languages',\n", " 'merges_url': 'https://api.github.com/repos/josh/rails/merges',\n", " 'milestones_url': 'https://api.github.com/repos/josh/rails/milestones{/number}',\n", " 'name': 'rails',\n", " 'notifications_url': 'https://api.github.com/repos/josh/rails/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/137?v=4',\n", " 'events_url': 'https://api.github.com/users/josh/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/josh/followers',\n", " 'following_url': 'https://api.github.com/users/josh/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/josh/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/josh',\n", " 'id': 137,\n", " 'login': 'josh',\n", " 'organizations_url': 'https://api.github.com/users/josh/orgs',\n", " 'received_events_url': 'https://api.github.com/users/josh/received_events',\n", " 'repos_url': 'https://api.github.com/users/josh/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/josh/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/josh/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/josh'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/josh/rails/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/josh/rails/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/josh/rails/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/josh/rails/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/josh/rails/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/josh/rails/subscription',\n", " 'tags_url': 'https://api.github.com/repos/josh/rails/tags',\n", " 'teams_url': 'https://api.github.com/repos/josh/rails/teams',\n", " 'trees_url': 'https://api.github.com/repos/josh/rails/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/josh/rails'},\n", " {'archive_url': 'https://api.github.com/repos/cdcarter/backpacking/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/cdcarter/backpacking/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/cdcarter/backpacking/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/cdcarter/backpacking/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/cdcarter/backpacking/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/cdcarter/backpacking/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/cdcarter/backpacking/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/cdcarter/backpacking/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/cdcarter/backpacking/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/cdcarter/backpacking/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/cdcarter/backpacking/deployments',\n", " 'description': 'An Io web framework of sorts',\n", " 'downloads_url': 'https://api.github.com/repos/cdcarter/backpacking/downloads',\n", " 'events_url': 'https://api.github.com/repos/cdcarter/backpacking/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/cdcarter/backpacking/forks',\n", " 'full_name': 'cdcarter/backpacking',\n", " 'git_commits_url': 'https://api.github.com/repos/cdcarter/backpacking/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/cdcarter/backpacking/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/cdcarter/backpacking/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/cdcarter/backpacking/hooks',\n", " 'html_url': 'https://github.com/cdcarter/backpacking',\n", " 'id': 334,\n", " 'issue_comment_url': 'https://api.github.com/repos/cdcarter/backpacking/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/cdcarter/backpacking/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/cdcarter/backpacking/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/cdcarter/backpacking/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/cdcarter/backpacking/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/cdcarter/backpacking/languages',\n", " 'merges_url': 'https://api.github.com/repos/cdcarter/backpacking/merges',\n", " 'milestones_url': 'https://api.github.com/repos/cdcarter/backpacking/milestones{/number}',\n", " 'name': 'backpacking',\n", " 'notifications_url': 'https://api.github.com/repos/cdcarter/backpacking/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars1.githubusercontent.com/u/164?v=4',\n", " 'events_url': 'https://api.github.com/users/cdcarter/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/cdcarter/followers',\n", " 'following_url': 'https://api.github.com/users/cdcarter/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/cdcarter/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/cdcarter',\n", " 'id': 164,\n", " 'login': 'cdcarter',\n", " 'organizations_url': 'https://api.github.com/users/cdcarter/orgs',\n", " 'received_events_url': 'https://api.github.com/users/cdcarter/received_events',\n", " 'repos_url': 'https://api.github.com/users/cdcarter/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/cdcarter/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/cdcarter/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/cdcarter'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/cdcarter/backpacking/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/cdcarter/backpacking/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/cdcarter/backpacking/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/cdcarter/backpacking/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/cdcarter/backpacking/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/cdcarter/backpacking/subscription',\n", " 'tags_url': 'https://api.github.com/repos/cdcarter/backpacking/tags',\n", " 'teams_url': 'https://api.github.com/repos/cdcarter/backpacking/teams',\n", " 'trees_url': 'https://api.github.com/repos/cdcarter/backpacking/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/cdcarter/backpacking'},\n", " {'archive_url': 'https://api.github.com/repos/jnewland/capsize/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/jnewland/capsize/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/jnewland/capsize/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/jnewland/capsize/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/jnewland/capsize/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/jnewland/capsize/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/jnewland/capsize/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/jnewland/capsize/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/jnewland/capsize/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/jnewland/capsize/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/jnewland/capsize/deployments',\n", " 'description': 'A Capistrano extension for managing and running your app on Amazon EC2.',\n", " 'downloads_url': 'https://api.github.com/repos/jnewland/capsize/downloads',\n", " 'events_url': 'https://api.github.com/repos/jnewland/capsize/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/jnewland/capsize/forks',\n", " 'full_name': 'jnewland/capsize',\n", " 'git_commits_url': 'https://api.github.com/repos/jnewland/capsize/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/jnewland/capsize/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/jnewland/capsize/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/jnewland/capsize/hooks',\n", " 'html_url': 'https://github.com/jnewland/capsize',\n", " 'id': 339,\n", " 'issue_comment_url': 'https://api.github.com/repos/jnewland/capsize/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/jnewland/capsize/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/jnewland/capsize/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/jnewland/capsize/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/jnewland/capsize/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/jnewland/capsize/languages',\n", " 'merges_url': 'https://api.github.com/repos/jnewland/capsize/merges',\n", " 'milestones_url': 'https://api.github.com/repos/jnewland/capsize/milestones{/number}',\n", " 'name': 'capsize',\n", " 'notifications_url': 'https://api.github.com/repos/jnewland/capsize/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/47?v=4',\n", " 'events_url': 'https://api.github.com/users/jnewland/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/jnewland/followers',\n", " 'following_url': 'https://api.github.com/users/jnewland/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/jnewland/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/jnewland',\n", " 'id': 47,\n", " 'login': 'jnewland',\n", " 'organizations_url': 'https://api.github.com/users/jnewland/orgs',\n", " 'received_events_url': 'https://api.github.com/users/jnewland/received_events',\n", " 'repos_url': 'https://api.github.com/users/jnewland/repos',\n", " 'site_admin': True,\n", " 'starred_url': 'https://api.github.com/users/jnewland/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/jnewland/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/jnewland'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/jnewland/capsize/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/jnewland/capsize/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/jnewland/capsize/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/jnewland/capsize/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/jnewland/capsize/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/jnewland/capsize/subscription',\n", " 'tags_url': 'https://api.github.com/repos/jnewland/capsize/tags',\n", " 'teams_url': 'https://api.github.com/repos/jnewland/capsize/teams',\n", " 'trees_url': 'https://api.github.com/repos/jnewland/capsize/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/jnewland/capsize'},\n", " {'archive_url': 'https://api.github.com/repos/bs/starling/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/bs/starling/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/bs/starling/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/bs/starling/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/bs/starling/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/bs/starling/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/bs/starling/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/bs/starling/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/bs/starling/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/bs/starling/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/bs/starling/deployments',\n", " 'description': 'Starling Message Queue',\n", " 'downloads_url': 'https://api.github.com/repos/bs/starling/downloads',\n", " 'events_url': 'https://api.github.com/repos/bs/starling/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/bs/starling/forks',\n", " 'full_name': 'bs/starling',\n", " 'git_commits_url': 'https://api.github.com/repos/bs/starling/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/bs/starling/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/bs/starling/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/bs/starling/hooks',\n", " 'html_url': 'https://github.com/bs/starling',\n", " 'id': 351,\n", " 'issue_comment_url': 'https://api.github.com/repos/bs/starling/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/bs/starling/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/bs/starling/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/bs/starling/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/bs/starling/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/bs/starling/languages',\n", " 'merges_url': 'https://api.github.com/repos/bs/starling/merges',\n", " 'milestones_url': 'https://api.github.com/repos/bs/starling/milestones{/number}',\n", " 'name': 'starling',\n", " 'notifications_url': 'https://api.github.com/repos/bs/starling/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/68?v=4',\n", " 'events_url': 'https://api.github.com/users/bs/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/bs/followers',\n", " 'following_url': 'https://api.github.com/users/bs/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/bs/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/bs',\n", " 'id': 68,\n", " 'login': 'bs',\n", " 'organizations_url': 'https://api.github.com/users/bs/orgs',\n", " 'received_events_url': 'https://api.github.com/users/bs/received_events',\n", " 'repos_url': 'https://api.github.com/users/bs/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/bs/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/bs/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/bs'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/bs/starling/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/bs/starling/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/bs/starling/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/bs/starling/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/bs/starling/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/bs/starling/subscription',\n", " 'tags_url': 'https://api.github.com/repos/bs/starling/tags',\n", " 'teams_url': 'https://api.github.com/repos/bs/starling/teams',\n", " 'trees_url': 'https://api.github.com/repos/bs/starling/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/bs/starling'},\n", " {'archive_url': 'https://api.github.com/repos/sr/ape/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/sr/ape/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/sr/ape/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/sr/ape/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/sr/ape/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/sr/ape/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/sr/ape/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/sr/ape/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/sr/ape/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/sr/ape/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/sr/ape/deployments',\n", " 'description': 'The Atom Protocol Exerciser',\n", " 'downloads_url': 'https://api.github.com/repos/sr/ape/downloads',\n", " 'events_url': 'https://api.github.com/repos/sr/ape/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/sr/ape/forks',\n", " 'full_name': 'sr/ape',\n", " 'git_commits_url': 'https://api.github.com/repos/sr/ape/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/sr/ape/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/sr/ape/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/sr/ape/hooks',\n", " 'html_url': 'https://github.com/sr/ape',\n", " 'id': 360,\n", " 'issue_comment_url': 'https://api.github.com/repos/sr/ape/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/sr/ape/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/sr/ape/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/sr/ape/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/sr/ape/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/sr/ape/languages',\n", " 'merges_url': 'https://api.github.com/repos/sr/ape/merges',\n", " 'milestones_url': 'https://api.github.com/repos/sr/ape/milestones{/number}',\n", " 'name': 'ape',\n", " 'notifications_url': 'https://api.github.com/repos/sr/ape/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/90?v=4',\n", " 'events_url': 'https://api.github.com/users/sr/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/sr/followers',\n", " 'following_url': 'https://api.github.com/users/sr/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/sr/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/sr',\n", " 'id': 90,\n", " 'login': 'sr',\n", " 'organizations_url': 'https://api.github.com/users/sr/orgs',\n", " 'received_events_url': 'https://api.github.com/users/sr/received_events',\n", " 'repos_url': 'https://api.github.com/users/sr/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/sr/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/sr/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/sr'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/sr/ape/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/sr/ape/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/sr/ape/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/sr/ape/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/sr/ape/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/sr/ape/subscription',\n", " 'tags_url': 'https://api.github.com/repos/sr/ape/tags',\n", " 'teams_url': 'https://api.github.com/repos/sr/ape/teams',\n", " 'trees_url': 'https://api.github.com/repos/sr/ape/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/sr/ape'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/awesomeness/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/awesomeness/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/awesomeness/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/awesomeness/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/awesomeness/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/awesomeness/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/awesomeness/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/awesomeness/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/awesomeness/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/awesomeness/deployments',\n", " 'description': \"Collective Idea's Awesomeness. A collection of useful Rails bits and pieces.\",\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/awesomeness/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/awesomeness/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/awesomeness/forks',\n", " 'full_name': 'collectiveidea/awesomeness',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/awesomeness/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/awesomeness',\n", " 'id': 362,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/awesomeness/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/awesomeness/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/awesomeness/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/awesomeness/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/awesomeness/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/awesomeness/milestones{/number}',\n", " 'name': 'awesomeness',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/awesomeness/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/awesomeness/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/awesomeness/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/awesomeness/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/awesomeness/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/awesomeness/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/awesomeness/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/awesomeness/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/awesomeness/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/awesomeness/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/awesomeness'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/audited/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/audited/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/audited/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/audited/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/audited/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/audited/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/audited/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/audited/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/audited/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/audited/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/audited/deployments',\n", " 'description': 'Audited (formerly acts_as_audited) is an ORM extension that logs all changes to your Rails models.',\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/audited/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/audited/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/audited/forks',\n", " 'full_name': 'collectiveidea/audited',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/audited/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/audited/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/audited/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/audited/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/audited',\n", " 'id': 363,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/audited/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/audited/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/audited/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/audited/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/audited/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/audited/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/audited/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/audited/milestones{/number}',\n", " 'name': 'audited',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/audited/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/audited/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/audited/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/audited/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/audited/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/audited/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/audited/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/audited/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/audited/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/audited/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/audited'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/deployments',\n", " 'description': 'Simple geocoding for Active Record models',\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/forks',\n", " 'full_name': 'collectiveidea/acts_as_geocodable',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/acts_as_geocodable',\n", " 'id': 364,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/milestones{/number}',\n", " 'name': 'acts_as_geocodable',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/acts_as_geocodable'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/deployments',\n", " 'description': 'an Active Record plugin that makes it easier to work with the money gem',\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/forks',\n", " 'full_name': 'collectiveidea/acts_as_money',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/acts_as_money',\n", " 'id': 365,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/milestones{/number}',\n", " 'name': 'acts_as_money',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/acts_as_money/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/acts_as_money'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/deployments',\n", " 'description': None,\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/forks',\n", " 'full_name': 'collectiveidea/calendar_builder',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/calendar_builder',\n", " 'id': 367,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/milestones{/number}',\n", " 'name': 'calendar_builder',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/calendar_builder/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/calendar_builder'},\n", " {'archive_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/deployments',\n", " 'description': 'When Active Record objects are saved from a form, empty fields are saved as empty strings instead of nil. This kills most validations.',\n", " 'downloads_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/downloads',\n", " 'events_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/forks',\n", " 'full_name': 'collectiveidea/clear_empty_attributes',\n", " 'git_commits_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/hooks',\n", " 'html_url': 'https://github.com/collectiveidea/clear_empty_attributes',\n", " 'id': 368,\n", " 'issue_comment_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/languages',\n", " 'merges_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/merges',\n", " 'milestones_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/milestones{/number}',\n", " 'name': 'clear_empty_attributes',\n", " 'notifications_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars2.githubusercontent.com/u/128?v=4',\n", " 'events_url': 'https://api.github.com/users/collectiveidea/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/collectiveidea/followers',\n", " 'following_url': 'https://api.github.com/users/collectiveidea/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/collectiveidea/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/collectiveidea',\n", " 'id': 128,\n", " 'login': 'collectiveidea',\n", " 'organizations_url': 'https://api.github.com/users/collectiveidea/orgs',\n", " 'received_events_url': 'https://api.github.com/users/collectiveidea/received_events',\n", " 'repos_url': 'https://api.github.com/users/collectiveidea/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/collectiveidea/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/collectiveidea/subscriptions',\n", " 'type': 'Organization',\n", " 'url': 'https://api.github.com/users/collectiveidea'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/subscription',\n", " 'tags_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/tags',\n", " 'teams_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/teams',\n", " 'trees_url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/collectiveidea/clear_empty_attributes'}]" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# This is parsed data\n", "# That is converted into python data structures\n", "d = data.json()\n", "\n", "d" ] }, { "cell_type": "code", "execution_count": 33, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "{'archive_url': 'https://api.github.com/repos/mojombo/grit/{archive_format}{/ref}',\n", " 'assignees_url': 'https://api.github.com/repos/mojombo/grit/assignees{/user}',\n", " 'blobs_url': 'https://api.github.com/repos/mojombo/grit/git/blobs{/sha}',\n", " 'branches_url': 'https://api.github.com/repos/mojombo/grit/branches{/branch}',\n", " 'collaborators_url': 'https://api.github.com/repos/mojombo/grit/collaborators{/collaborator}',\n", " 'comments_url': 'https://api.github.com/repos/mojombo/grit/comments{/number}',\n", " 'commits_url': 'https://api.github.com/repos/mojombo/grit/commits{/sha}',\n", " 'compare_url': 'https://api.github.com/repos/mojombo/grit/compare/{base}...{head}',\n", " 'contents_url': 'https://api.github.com/repos/mojombo/grit/contents/{+path}',\n", " 'contributors_url': 'https://api.github.com/repos/mojombo/grit/contributors',\n", " 'deployments_url': 'https://api.github.com/repos/mojombo/grit/deployments',\n", " 'description': '**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.',\n", " 'downloads_url': 'https://api.github.com/repos/mojombo/grit/downloads',\n", " 'events_url': 'https://api.github.com/repos/mojombo/grit/events',\n", " 'fork': False,\n", " 'forks_url': 'https://api.github.com/repos/mojombo/grit/forks',\n", " 'full_name': 'mojombo/grit',\n", " 'git_commits_url': 'https://api.github.com/repos/mojombo/grit/git/commits{/sha}',\n", " 'git_refs_url': 'https://api.github.com/repos/mojombo/grit/git/refs{/sha}',\n", " 'git_tags_url': 'https://api.github.com/repos/mojombo/grit/git/tags{/sha}',\n", " 'hooks_url': 'https://api.github.com/repos/mojombo/grit/hooks',\n", " 'html_url': 'https://github.com/mojombo/grit',\n", " 'id': 1,\n", " 'issue_comment_url': 'https://api.github.com/repos/mojombo/grit/issues/comments{/number}',\n", " 'issue_events_url': 'https://api.github.com/repos/mojombo/grit/issues/events{/number}',\n", " 'issues_url': 'https://api.github.com/repos/mojombo/grit/issues{/number}',\n", " 'keys_url': 'https://api.github.com/repos/mojombo/grit/keys{/key_id}',\n", " 'labels_url': 'https://api.github.com/repos/mojombo/grit/labels{/name}',\n", " 'languages_url': 'https://api.github.com/repos/mojombo/grit/languages',\n", " 'merges_url': 'https://api.github.com/repos/mojombo/grit/merges',\n", " 'milestones_url': 'https://api.github.com/repos/mojombo/grit/milestones{/number}',\n", " 'name': 'grit',\n", " 'notifications_url': 'https://api.github.com/repos/mojombo/grit/notifications{?since,all,participating}',\n", " 'owner': {'avatar_url': 'https://avatars0.githubusercontent.com/u/1?v=4',\n", " 'events_url': 'https://api.github.com/users/mojombo/events{/privacy}',\n", " 'followers_url': 'https://api.github.com/users/mojombo/followers',\n", " 'following_url': 'https://api.github.com/users/mojombo/following{/other_user}',\n", " 'gists_url': 'https://api.github.com/users/mojombo/gists{/gist_id}',\n", " 'gravatar_id': '',\n", " 'html_url': 'https://github.com/mojombo',\n", " 'id': 1,\n", " 'login': 'mojombo',\n", " 'organizations_url': 'https://api.github.com/users/mojombo/orgs',\n", " 'received_events_url': 'https://api.github.com/users/mojombo/received_events',\n", " 'repos_url': 'https://api.github.com/users/mojombo/repos',\n", " 'site_admin': False,\n", " 'starred_url': 'https://api.github.com/users/mojombo/starred{/owner}{/repo}',\n", " 'subscriptions_url': 'https://api.github.com/users/mojombo/subscriptions',\n", " 'type': 'User',\n", " 'url': 'https://api.github.com/users/mojombo'},\n", " 'private': False,\n", " 'pulls_url': 'https://api.github.com/repos/mojombo/grit/pulls{/number}',\n", " 'releases_url': 'https://api.github.com/repos/mojombo/grit/releases{/id}',\n", " 'stargazers_url': 'https://api.github.com/repos/mojombo/grit/stargazers',\n", " 'statuses_url': 'https://api.github.com/repos/mojombo/grit/statuses/{sha}',\n", " 'subscribers_url': 'https://api.github.com/repos/mojombo/grit/subscribers',\n", " 'subscription_url': 'https://api.github.com/repos/mojombo/grit/subscription',\n", " 'tags_url': 'https://api.github.com/repos/mojombo/grit/tags',\n", " 'teams_url': 'https://api.github.com/repos/mojombo/grit/teams',\n", " 'trees_url': 'https://api.github.com/repos/mojombo/grit/git/trees{/sha}',\n", " 'url': 'https://api.github.com/repos/mojombo/grit'}" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d[0]" ] }, { "cell_type": "code", "execution_count": 34, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "'**Grit is no longer maintained. Check out libgit2/rugged.** Grit gives you object oriented read/write access to Git repositories via Ruby.'" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d[0][\"description\"]" ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
descriptionnameurl
0**Grit is no longer maintained. Check out libg...grithttps://api.github.com/repos/mojombo/grit
1Merb Core: All you need. None you don't.merb-corehttps://api.github.com/repos/wycats/merb-core
2The Rubinius Language Platformrubiniushttps://api.github.com/repos/rubinius/rubinius
3Ruby process monitorgodhttps://api.github.com/repos/mojombo/god
4Awesome JSONjsawesomehttps://api.github.com/repos/vanpelt/jsawesome
5A JavaScript BDD Testing Libraryjspechttps://api.github.com/repos/wycats/jspec
6Unmaintained. Sorry.exception_loggerhttps://api.github.com/repos/defunkt/exception...
7include Enumerable — Unmaintainedambitionhttps://api.github.com/repos/defunkt/ambition
8Generates common user authentication code for ...restful-authenticationhttps://api.github.com/repos/technoweenie/rest...
9Treat an ActiveRecord model as a file attachme...attachment_fuhttps://api.github.com/repos/technoweenie/atta...
10SUPER OLD STUFFmicrosishttps://api.github.com/repos/Caged/microsis
11psuedo s3 protocol for mozilla browserss3https://api.github.com/repos/anotherjesse/s3
12The solution for tabitus of the browsertaboohttps://api.github.com/repos/anotherjesse/taboo
13firefox trac integrationfoxtracshttps://api.github.com/repos/anotherjesse/foxt...
14Flash photo widget prototype - hacked at last ...fotomatichttps://api.github.com/repos/anotherjesse/foto...
15A realtime, OpenGL graphing library for Rubyglowstickhttps://api.github.com/repos/mojombo/glowstick
16Nonestarlinghttps://api.github.com/repos/defunkt/starling
17Merb More: The Full Stack. Take what you need;...merb-morehttps://api.github.com/repos/wycats/merb-more
18A very fast & simple Ruby web serverthinhttps://api.github.com/repos/macournoyer/thin
19Rails RESTful controller abstraction plugin.resource_controllerhttps://api.github.com/repos/jamesgolick/resou...
20Markaby patched to run on rails 2.0.2markabyhttps://api.github.com/repos/jamesgolick/markaby
21Noneenum_fieldhttps://api.github.com/repos/jamesgolick/enum_...
22Subtlety: SVN => RSS, hAtom => Atomsubtletyhttps://api.github.com/repos/defunkt/subtlety
23Zippy lil’ zipcode lib.zippyhttps://api.github.com/repos/defunkt/zippy
24Ghost from Christmas past. Unmaintained.cache_fuhttps://api.github.com/repos/defunkt/cache_fu
25A ruby library to inexpensively emit runtime ...phosphorhttps://api.github.com/repos/KirinDave/phosphor
26(offically at github.com/sinatra/sinatra) Clas...sinatrahttps://api.github.com/repos/bmizerany/sinatra
27Prototype/Javascript wrapper for the Google Se...gsa-prototypehttps://api.github.com/repos/jnewland/gsa-prot...
28Syncs one directory to another (example: a git...duplikatehttps://api.github.com/repos/technoweenie/dupl...
29Proof of concept Lazy-Loading for ActiveRecord...lazy_recordhttps://api.github.com/repos/jnewland/lazy_record
............
70Rorem is a random data generatorroremhttps://api.github.com/repos/jnicklas/rorem
71Simple tool to help track vendor branches in a...braidhttps://api.github.com/repos/cristibalan/braid
72UploadColumn is no longer maintained, check ou...uploadcolumnhttps://api.github.com/repos/jnicklas/uploadco...
73Ruby on Rails TextMate bundle [master branch i...ruby-on-rails-tmbundlehttps://api.github.com/repos/simonjefford/ruby...
74OUTDATED mirror of Rack's darcs repository, us...rack-mirrorhttps://api.github.com/repos/chneukirchen/rack...
75(experimental) Mirror of the coset darcs repos...coset-mirrorhttps://api.github.com/repos/chneukirchen/cose...
76JavaScript Unit Test TextMate Bundle [for prot...javascript-unittest-tmbundlehttps://api.github.com/repos/drnic/javascript-...
77Engine Yard specific capistrano recipeseycaphttps://api.github.com/repos/engineyard/eycap
78basic darcsum feelalike for Gitgitsumhttps://api.github.com/repos/chneukirchen/gitsum
79Sequel::Model (No longer working on this project)sequel-modelhttps://api.github.com/repos/wayneeseguin/sequ...
80Ruby process monitorgodhttps://api.github.com/repos/kevinclark/god
81blerb running on merb-coreblerb-corehttps://api.github.com/repos/hornbeck/blerb-core
82utilities for implementing a modified pre-orde...django-mptthttps://api.github.com/repos/brosner/django-mptt
83a Scheme written in Ruby, but implemented on t...bus-schemehttps://api.github.com/repos/technomancy/bus-s...
84Useful pieces of JavaScript. Some old, some new.javascript-bitshttps://api.github.com/repos/Caged/javascript-...
85Ruby parsers for some Adobe file formats.groomlakehttps://api.github.com/repos/Caged/groomlake
86Easy and customizable generation of forged data.forgeryhttps://api.github.com/repos/sevenwire/forgery
87Ambition adapter for Sphinxambitious-sphinxhttps://api.github.com/repos/technicalpickles/...
88I suppose it's a document database. Or a tuple...souphttps://api.github.com/repos/lazyatom/soup
89Ruby on Railsrailshttps://api.github.com/repos/josh/rails
90An Io web framework of sortsbackpackinghttps://api.github.com/repos/cdcarter/backpacking
91A Capistrano extension for managing and runnin...capsizehttps://api.github.com/repos/jnewland/capsize
92Starling Message Queuestarlinghttps://api.github.com/repos/bs/starling
93The Atom Protocol Exerciserapehttps://api.github.com/repos/sr/ape
94Collective Idea's Awesomeness. A collection o...awesomenesshttps://api.github.com/repos/collectiveidea/aw...
95Audited (formerly acts_as_audited) is an ORM e...auditedhttps://api.github.com/repos/collectiveidea/au...
96Simple geocoding for Active Record modelsacts_as_geocodablehttps://api.github.com/repos/collectiveidea/ac...
97an Active Record plugin that makes it easier t...acts_as_moneyhttps://api.github.com/repos/collectiveidea/ac...
98Nonecalendar_builderhttps://api.github.com/repos/collectiveidea/ca...
99When Active Record objects are saved from a fo...clear_empty_attributeshttps://api.github.com/repos/collectiveidea/cl...
\n", "

100 rows × 3 columns

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

100 rows × 3 columns

\n", "
" ], "text/plain": [ " description \\\n", "0 **Grit is no longer maintained. Check out libg... \n", "1 Merb Core: All you need. None you don't. \n", "2 The Rubinius Language Platform \n", "3 Ruby process monitor \n", "4 Awesome JSON \n", "5 A JavaScript BDD Testing Library \n", "6 Unmaintained. Sorry. \n", "7 include Enumerable — Unmaintained \n", "8 Generates common user authentication code for ... \n", "9 Treat an ActiveRecord model as a file attachme... \n", "10 SUPER OLD STUFF \n", "11 psuedo s3 protocol for mozilla browsers \n", "12 The solution for tabitus of the browser \n", "13 firefox trac integration \n", "14 Flash photo widget prototype - hacked at last ... \n", "15 A realtime, OpenGL graphing library for Ruby \n", "16 None \n", "17 Merb More: The Full Stack. Take what you need;... \n", "18 A very fast & simple Ruby web server \n", "19 Rails RESTful controller abstraction plugin. \n", "20 Markaby patched to run on rails 2.0.2 \n", "21 None \n", "22 Subtlety: SVN => RSS, hAtom => Atom \n", "23 Zippy lil’ zipcode lib. \n", "24 Ghost from Christmas past. Unmaintained. \n", "25 A ruby library to inexpensively emit runtime ... \n", "26 (offically at github.com/sinatra/sinatra) Clas... \n", "27 Prototype/Javascript wrapper for the Google Se... \n", "28 Syncs one directory to another (example: a git... \n", "29 Proof of concept Lazy-Loading for ActiveRecord... \n", ".. ... \n", "70 Rorem is a random data generator \n", "71 Simple tool to help track vendor branches in a... \n", "72 UploadColumn is no longer maintained, check ou... \n", "73 Ruby on Rails TextMate bundle [master branch i... \n", "74 OUTDATED mirror of Rack's darcs repository, us... \n", "75 (experimental) Mirror of the coset darcs repos... \n", "76 JavaScript Unit Test TextMate Bundle [for prot... \n", "77 Engine Yard specific capistrano recipes \n", "78 basic darcsum feelalike for Git \n", "79 Sequel::Model (No longer working on this project) \n", "80 Ruby process monitor \n", "81 blerb running on merb-core \n", "82 utilities for implementing a modified pre-orde... \n", "83 a Scheme written in Ruby, but implemented on t... \n", "84 Useful pieces of JavaScript. Some old, some new. \n", "85 Ruby parsers for some Adobe file formats. \n", "86 Easy and customizable generation of forged data. \n", "87 Ambition adapter for Sphinx \n", "88 I suppose it's a document database. Or a tuple... \n", "89 Ruby on Rails \n", "90 An Io web framework of sorts \n", "91 A Capistrano extension for managing and runnin... \n", "92 Starling Message Queue \n", "93 The Atom Protocol Exerciser \n", "94 Collective Idea's Awesomeness. A collection o... \n", "95 Audited (formerly acts_as_audited) is an ORM e... \n", "96 Simple geocoding for Active Record models \n", "97 an Active Record plugin that makes it easier t... \n", "98 None \n", "99 When Active Record objects are saved from a fo... \n", "\n", " name \\\n", "0 grit \n", "1 merb-core \n", "2 rubinius \n", "3 god \n", "4 jsawesome \n", "5 jspec \n", "6 exception_logger \n", "7 ambition \n", "8 restful-authentication \n", "9 attachment_fu \n", "10 microsis \n", "11 s3 \n", "12 taboo \n", "13 foxtracs \n", "14 fotomatic \n", "15 glowstick \n", "16 starling \n", "17 merb-more \n", "18 thin \n", "19 resource_controller \n", "20 markaby \n", "21 enum_field \n", "22 subtlety \n", "23 zippy \n", "24 cache_fu \n", "25 phosphor \n", "26 sinatra \n", "27 gsa-prototype \n", "28 duplikate \n", "29 lazy_record \n", ".. ... \n", "70 rorem \n", "71 braid \n", "72 uploadcolumn \n", "73 ruby-on-rails-tmbundle \n", "74 rack-mirror \n", "75 coset-mirror \n", "76 javascript-unittest-tmbundle \n", "77 eycap \n", "78 gitsum \n", "79 sequel-model \n", "80 god \n", "81 blerb-core \n", "82 django-mptt \n", "83 bus-scheme \n", "84 javascript-bits \n", "85 groomlake \n", "86 forgery \n", "87 ambitious-sphinx \n", "88 soup \n", "89 rails \n", "90 backpacking \n", "91 capsize \n", "92 starling \n", "93 ape \n", "94 awesomeness \n", "95 audited \n", "96 acts_as_geocodable \n", "97 acts_as_money \n", "98 calendar_builder \n", "99 clear_empty_attributes \n", "\n", " url \n", "0 https://api.github.com/repos/mojombo/grit \n", "1 https://api.github.com/repos/wycats/merb-core \n", "2 https://api.github.com/repos/rubinius/rubinius \n", "3 https://api.github.com/repos/mojombo/god \n", "4 https://api.github.com/repos/vanpelt/jsawesome \n", "5 https://api.github.com/repos/wycats/jspec \n", "6 https://api.github.com/repos/defunkt/exception... \n", "7 https://api.github.com/repos/defunkt/ambition \n", "8 https://api.github.com/repos/technoweenie/rest... \n", "9 https://api.github.com/repos/technoweenie/atta... \n", "10 https://api.github.com/repos/Caged/microsis \n", "11 https://api.github.com/repos/anotherjesse/s3 \n", "12 https://api.github.com/repos/anotherjesse/taboo \n", "13 https://api.github.com/repos/anotherjesse/foxt... \n", "14 https://api.github.com/repos/anotherjesse/foto... \n", "15 https://api.github.com/repos/mojombo/glowstick \n", "16 https://api.github.com/repos/defunkt/starling \n", "17 https://api.github.com/repos/wycats/merb-more \n", "18 https://api.github.com/repos/macournoyer/thin \n", "19 https://api.github.com/repos/jamesgolick/resou... \n", "20 https://api.github.com/repos/jamesgolick/markaby \n", "21 https://api.github.com/repos/jamesgolick/enum_... \n", "22 https://api.github.com/repos/defunkt/subtlety \n", "23 https://api.github.com/repos/defunkt/zippy \n", "24 https://api.github.com/repos/defunkt/cache_fu \n", "25 https://api.github.com/repos/KirinDave/phosphor \n", "26 https://api.github.com/repos/bmizerany/sinatra \n", "27 https://api.github.com/repos/jnewland/gsa-prot... \n", "28 https://api.github.com/repos/technoweenie/dupl... \n", "29 https://api.github.com/repos/jnewland/lazy_record \n", ".. ... \n", "70 https://api.github.com/repos/jnicklas/rorem \n", "71 https://api.github.com/repos/cristibalan/braid \n", "72 https://api.github.com/repos/jnicklas/uploadco... \n", "73 https://api.github.com/repos/simonjefford/ruby... \n", "74 https://api.github.com/repos/chneukirchen/rack... \n", "75 https://api.github.com/repos/chneukirchen/cose... \n", "76 https://api.github.com/repos/drnic/javascript-... \n", "77 https://api.github.com/repos/engineyard/eycap \n", "78 https://api.github.com/repos/chneukirchen/gitsum \n", "79 https://api.github.com/repos/wayneeseguin/sequ... \n", "80 https://api.github.com/repos/kevinclark/god \n", "81 https://api.github.com/repos/hornbeck/blerb-core \n", "82 https://api.github.com/repos/brosner/django-mptt \n", "83 https://api.github.com/repos/technomancy/bus-s... \n", "84 https://api.github.com/repos/Caged/javascript-... \n", "85 https://api.github.com/repos/Caged/groomlake \n", "86 https://api.github.com/repos/sevenwire/forgery \n", "87 https://api.github.com/repos/technicalpickles/... \n", "88 https://api.github.com/repos/lazyatom/soup \n", "89 https://api.github.com/repos/josh/rails \n", "90 https://api.github.com/repos/cdcarter/backpacking \n", "91 https://api.github.com/repos/jnewland/capsize \n", "92 https://api.github.com/repos/bs/starling \n", "93 https://api.github.com/repos/sr/ape \n", "94 https://api.github.com/repos/collectiveidea/aw... \n", "95 https://api.github.com/repos/collectiveidea/au... \n", "96 https://api.github.com/repos/collectiveidea/ac... \n", "97 https://api.github.com/repos/collectiveidea/ac... \n", "98 https://api.github.com/repos/collectiveidea/ca... \n", "99 https://api.github.com/repos/collectiveidea/cl... \n", "\n", "[100 rows x 3 columns]" ] }, "execution_count": 38, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Using list comprehensions\n", "# You can do what we did last cell with a single line\n", "df_data = [\n", " {\n", " \"name\": x[\"name\"],\n", " \"description\": x[\"description\"],\n", " \"url\": x[\"url\"],\n", " } for x in d]\n", "\n", "\n", "pd.DataFrame(df_data)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Python Social Media clients\n", "- [Tweepy](http://docs.tweepy.org)\n", "- [Facebook SDK](https://facebook-sdk.readthedocs.io/en/latest/)\n", "- [Python Linkedin](http://ozgur.github.io/python-linkedin/)\n", "- [Instagram](https://github.com/facebookarchive/python-instagram)\n", "- [Telegram](https://github.com/LonamiWebs/Telethon)\n", "- [Youtube](https://github.com/youtube/api-samples/tree/master/python)\n", "- [Tumblr](https://github.com/tumblr/pytumblr)\n", "- [Reddit](https://praw.readthedocs.io/en/latest/)\n", "- [Quora](https://github.com/csu/pyquora)\n", "- [Github](https://developer.github.com/v3/)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Twitter Access\n", "\n", "## Using tweepy\n", "\n", "install using:\n", "\n", "```pip install tweepy```\n", "\n", "You will also need to setup credentials for your application from [apps.twitter.com](apps.twitter.com)" ] }, { "cell_type": "code", "execution_count": 40, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "import tweepy\n", "\n", "# The following values are needed for authentication\n", "# They can be obtained from apps.twitter.com\n", "# I have hidden them for security reasons\n", "consumer_key = \"**HIDDEN**\"\n", "consumer_secret = \"**HIDDEN**\"\n", "access_token = \"**HIDDEN**\"\n", "access_token_secret = \"**HIDDEN**\"\n", "\n", "auth = tweepy.OAuthHandler(consumer_key, consumer_secret)\n", "auth.set_access_token(access_token, access_token_secret)\n", "\n", "# create the authenticated api object\n", "api = tweepy.API(auth)" ] }, { "cell_type": "code", "execution_count": 41, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# Now you can fetch the data that you need\n", "# let's fetch the followers for @zainkuwait\n", "zain_followers = api.followers(\"zainkuwait\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`zain_followers` will contain a list of User objects\n", "\n", "To know what attributes the users will have you can check the [user](https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/user-object) object reference from twitter" ] }, { "cell_type": "code", "execution_count": 46, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
created_atdescriptionfavourites_countfollowers_countlocationprotectedscreen_namestatuses_count
02017-11-18 15:55:3500Falsetninhszizuhqd410
12017-11-12 20:13:5700FalsejvfTv4KIBgzZUla0
22017-11-18 15:38:1600FalsemRgZgj6rETxAP0u0
32017-11-18 15:22:0614False8Dlb6cTzeNFtulj0
42012-06-14 05:37:5019963kuwaitTrueQ8_lanko0
52017-11-16 18:33:5306الاحمدى, دولة الكويتFalsesaidfaw796583530
62017-08-31 14:20:4102FalseOussama355436130
72017-11-18 14:54:2000Falsesherlysimpson110
82017-11-13 18:53:384827دولة الكويتFalseabdulla134695113
92016-10-18 11:05:308250KuwaitTrueAmrKhal4226796352
102017-11-17 05:45:17محدش مرتاح73جليب الشيوخ, دولة الكويتFalseetJblAerk4Qyd0w6
112017-10-27 09:59:5226311الفروانيه, دولة الكويتFalseu9gnR8XZ2qIRdLO60
122017-10-09 14:47:19I LIKE BATMAN AND TURTULS344دولة الكويتFalseFAHAD_ALDEEN11
132017-10-10 05:03:2500Falsegehad_kretnah0
142017-11-18 13:41:4111FalseJamal198386140
152017-11-18 13:34:1501Falsevennieackarie220
162017-11-17 10:28:48Be Brave 🦋65False89Khuloud13
172017-11-18 12:05:39‏‏‏بتلاقيني جنبك وقت إنكسارك ، تطمنّ ما أشبهك.19الكويتFalseAbrarMarzouq4
182015-10-03 18:54:30#نآقد_يوفنتيني (@MisterLippi) #Scudetto35 #LE6...35240Turin, PiedmontFalseMrLippi_Q82082
192010-12-14 18:27:08اكاديمي كويتي متقاعد يهوي الضحك ويعشق سكيك الك...23611437Falseq8smily8773
\n", "
" ], "text/plain": [ " created_at description \\\n", "0 2017-11-18 15:55:35 \n", "1 2017-11-12 20:13:57 \n", "2 2017-11-18 15:38:16 \n", "3 2017-11-18 15:22:06 \n", "4 2012-06-14 05:37:50 \n", "5 2017-11-16 18:33:53 \n", "6 2017-08-31 14:20:41 \n", "7 2017-11-18 14:54:20 \n", "8 2017-11-13 18:53:38 \n", "9 2016-10-18 11:05:30 \n", "10 2017-11-17 05:45:17 محدش مرتاح \n", "11 2017-10-27 09:59:52 \n", "12 2017-10-09 14:47:19 I LIKE BATMAN AND TURTULS \n", "13 2017-10-10 05:03:25 \n", "14 2017-11-18 13:41:41 \n", "15 2017-11-18 13:34:15 \n", "16 2017-11-17 10:28:48 Be Brave 🦋 \n", "17 2017-11-18 12:05:39 ‏‏‏بتلاقيني جنبك وقت إنكسارك ، تطمنّ ما أشبهك. \n", "18 2015-10-03 18:54:30 #نآقد_يوفنتيني (@MisterLippi) #Scudetto35 #LE6... \n", "19 2010-12-14 18:27:08 اكاديمي كويتي متقاعد يهوي الضحك ويعشق سكيك الك... \n", "\n", " favourites_count followers_count location protected \\\n", "0 0 0 False \n", "1 0 0 False \n", "2 0 0 False \n", "3 1 4 False \n", "4 1996 3 kuwait True \n", "5 0 6 الاحمدى, دولة الكويت False \n", "6 0 2 False \n", "7 0 0 False \n", "8 48 27 دولة الكويت False \n", "9 82 50 Kuwait True \n", "10 7 3 جليب الشيوخ, دولة الكويت False \n", "11 263 11 الفروانيه, دولة الكويت False \n", "12 34 4 دولة الكويت False \n", "13 0 0 False \n", "14 1 1 False \n", "15 0 1 False \n", "16 6 5 False \n", "17 1 9 الكويت False \n", "18 35 240 Turin, Piedmont False \n", "19 2361 1437 False \n", "\n", " screen_name statuses_count \n", "0 tninhszizuhqd41 0 \n", "1 jvfTv4KIBgzZUla 0 \n", "2 mRgZgj6rETxAP0u 0 \n", "3 8Dlb6cTzeNFtulj 0 \n", "4 Q8_lanko 0 \n", "5 saidfaw79658353 0 \n", "6 Oussama35543613 0 \n", "7 sherlysimpson11 0 \n", "8 abdulla13469511 3 \n", "9 AmrKhal42267963 52 \n", "10 etJblAerk4Qyd0w 6 \n", "11 u9gnR8XZ2qIRdLO 60 \n", "12 FAHAD_ALDEEN 11 \n", "13 gehad_kretnah 0 \n", "14 Jamal19838614 0 \n", "15 vennieackarie22 0 \n", "16 89Khuloud 13 \n", "17 AbrarMarzouq 4 \n", "18 MrLippi_Q8 2082 \n", "19 q8smily 8773 " ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Lets construct a list of records using list comprehension\n", "\n", "follower_data_list = [\n", " {\n", " # Remeber, User is an object not a dictionary\n", " \"screen_name\": x.screen_name,\n", " \"location\": x.location,\n", " \"description\": x.description,\n", " \"protected\": x.protected,\n", " \"followers_count\": x.followers_count,\n", " \"favourites_count\": x.favourites_count,\n", " \"statuses_count\": x.statuses_count,\n", " \"created_at\": x.created_at,\n", " } for x in zain_followers\n", "]\n", "\n", "pd.DataFrame(follower_data_list)" ] }, { "cell_type": "code", "execution_count": 70, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "519510" ] }, "execution_count": 70, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# lets place the data in a variable\n", "x = pd.DataFrame(follower_data_list)\n", "\n", "# lets find out how many user zainkuwait has\n", "zain_kw = api.get_user(\"zainkuwait\")\n", "\n", "zain_kw.followers_count" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Rate limiting\n", "With such a large number twitter will prevent us from fetching all the users. This is known as **Rate Limiting**\n", "\n", "The way around it is:\n", "- Using cursors to fetch multiple pages\n", "- Fetching data over a longer period of time\n", "- Using multiple computers and apps to fetch different pages\n", "- Combining the collected data" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# lets fetch 3 pages only\n", "# each page will contain 20 followers\n", "# we can change that to a maximum of 200\n", "\n", "follower_df = None\n", "for followers_page in tweepy.Cursor(api.followers, screen_name=\"zainkuwait\", count=200).pages(3):\n", " # construct a dataframe with every page\n", " follower_data_list = [\n", " {\n", " # Remeber, User is an object not a dictionary\n", " \"screen_name\": x.screen_name,\n", " \"location\": x.location,\n", " \"description\": x.description,\n", " \"protected\": x.protected,\n", " \"followers_count\": x.followers_count,\n", " \"favourites_count\": x.favourites_count,\n", " \"statuses_count\": x.statuses_count,\n", " \"created_at\": x.created_at,\n", " } for x in followers_page\n", " ]\n", "\n", " if follower_df is None:\n", " follower_df = pd.DataFrame(follower_data_list)\n", " else:\n", " follower_df = follower_df.append(pd.DataFrame(follower_data_list), ignore_index=True)" ] }, { "cell_type": "code", "execution_count": 87, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "600" ] }, "execution_count": 87, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(follower_df)" ] }, { "cell_type": "code", "execution_count": 100, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
created_atdescriptionfavourites_countfollowers_countlocationprotectedscreen_namestatuses_count
02017-11-13 00:47:1500بيتيFalseKetman_8lm4
12017-11-18 15:08:2300FalsezN0eAegNnhq6MbM0
22017-11-18 15:55:3500Falsetninhszizuhqd410
32017-11-12 20:13:5700FalsejvfTv4KIBgzZUla0
42017-11-18 15:38:1600FalsemRgZgj6rETxAP0u0
52017-11-18 15:22:0614False8Dlb6cTzeNFtulj0
62012-06-14 05:37:5019963kuwaitTrueQ8_lanko0
72017-11-16 18:33:5306الاحمدى, دولة الكويتFalsesaidfaw796583530
82017-08-31 14:20:4103FalseOussama355436130
92017-11-18 14:54:2000Falsesherlysimpson110
\n", "
" ], "text/plain": [ " created_at description favourites_count followers_count \\\n", "0 2017-11-13 00:47:15 0 0 \n", "1 2017-11-18 15:08:23 0 0 \n", "2 2017-11-18 15:55:35 0 0 \n", "3 2017-11-12 20:13:57 0 0 \n", "4 2017-11-18 15:38:16 0 0 \n", "5 2017-11-18 15:22:06 1 4 \n", "6 2012-06-14 05:37:50 1996 3 \n", "7 2017-11-16 18:33:53 0 6 \n", "8 2017-08-31 14:20:41 0 3 \n", "9 2017-11-18 14:54:20 0 0 \n", "\n", " location protected screen_name statuses_count \n", "0 بيتي False Ketman_8lm 4 \n", "1 False zN0eAegNnhq6MbM 0 \n", "2 False tninhszizuhqd41 0 \n", "3 False jvfTv4KIBgzZUla 0 \n", "4 False mRgZgj6rETxAP0u 0 \n", "5 False 8Dlb6cTzeNFtulj 0 \n", "6 kuwait True Q8_lanko 0 \n", "7 الاحمدى, دولة الكويت False saidfaw79658353 0 \n", "8 False Oussama35543613 0 \n", "9 False sherlysimpson11 0 " ] }, "execution_count": 100, "metadata": {}, "output_type": "execute_result" } ], "source": [ "follower_df.head(10)" ] }, { "cell_type": "code", "execution_count": 101, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
created_atdescriptionfavourites_countfollowers_countlocationprotectedscreen_namestatuses_count
5902017-11-12 00:20:19أشهد أن لا إله إلا الله وأشهد أن سيدنا محمد عب...112السالمية, دولة الكويتFalseIbrahim745883290
5912017-11-11 17:45:51الأخبار العامة أخبار العالم العلوم و التكنولوجيا10110Falselaila_aleidan16
5922011-11-22 22:37:05013Falseibad801
5932017-11-11 23:25:3301FalseY69fP456EU8ND9V0
5942017-11-11 22:34:57012KuwaitFalsemoalsuwailem10
5952017-10-08 21:51:3502FalseTbmf30
5962017-11-11 22:16:57My Gob12FalseMuzafforIslam14
5972017-11-11 22:10:3600FalsegC9DV7GIahGn2QM0
5982013-10-08 23:36:08#HackedByJM511 @T4TBHH2111274Falsedesinger_j84380
5992017-10-30 22:03:52Interior Designer , Artist , proud MOM 🕊034Mishrif, KuwaitFalseAbrarMuhsen2
\n", "
" ], "text/plain": [ " created_at description \\\n", "590 2017-11-12 00:20:19 أشهد أن لا إله إلا الله وأشهد أن سيدنا محمد عب... \n", "591 2017-11-11 17:45:51 الأخبار العامة أخبار العالم العلوم و التكنولوجيا \n", "592 2011-11-22 22:37:05 \n", "593 2017-11-11 23:25:33 \n", "594 2017-11-11 22:34:57 \n", "595 2017-10-08 21:51:35 \n", "596 2017-11-11 22:16:57 My Gob \n", "597 2017-11-11 22:10:36 \n", "598 2013-10-08 23:36:08 #HackedByJM511 @T4TBHH \n", "599 2017-10-30 22:03:52 Interior Designer , Artist , proud MOM 🕊 \n", "\n", " favourites_count followers_count location protected \\\n", "590 1 12 السالمية, دولة الكويت False \n", "591 101 10 False \n", "592 0 13 False \n", "593 0 1 False \n", "594 0 12 Kuwait False \n", "595 0 2 False \n", "596 1 2 False \n", "597 0 0 False \n", "598 2111 274 False \n", "599 0 34 Mishrif, Kuwait False \n", "\n", " screen_name statuses_count \n", "590 Ibrahim74588329 0 \n", "591 laila_aleidan 16 \n", "592 ibad80 1 \n", "593 Y69fP456EU8ND9V 0 \n", "594 moalsuwailem1 0 \n", "595 Tbmf3 0 \n", "596 MuzafforIslam1 4 \n", "597 gC9DV7GIahGn2QM 0 \n", "598 desinger_j84 380 \n", "599 AbrarMuhsen 2 " ] }, "execution_count": 101, "metadata": {}, "output_type": "execute_result" } ], "source": [ "follower_df.tail(10)" ] }, { "cell_type": "code", "execution_count": 102, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
created_atdescriptionfavourites_countfollowers_countlocationprotectedscreen_namestatuses_count
1312017-10-12 20:27:56‏وقل اعملوا فسيرى الله عملكم16831False1BkicRwkk8s2go442
2832017-11-15 07:15:39910Falsestapleford19840
2642017-11-14 09:54:232111Falsex50jeAwF0urESzl38
2352017-06-10 03:12:2116614Falsemazen_zazo66123
2992017-11-14 22:45:3627Falsenoor1981628
5252017-11-12 18:18:52125Falseygjjgkihnjjb3
4872017-10-13 02:56:52I sneak drinks into movie theatres, Meditation...07Windham, NHFalseJenjenSheeza2
1912017-11-16 11:09:31اللهم لا تجعل ذكر أمي ينقطع وسخر لها الدعوات ط...041KuwaitFalsedalalii_326
5602013-05-29 20:58:11ألحوآر مع آلجھلاء ' كآلرسم على ميآھ آلبحر ! مھ...0280KuwaitFalsehoda7647675850
4592013-06-08 20:19:16لن نخضع والله خيرا حافظا0164q8Falsetarekelfahhed966
\n", "
" ], "text/plain": [ " created_at description \\\n", "131 2017-10-12 20:27:56 ‏وقل اعملوا فسيرى الله عملكم \n", "283 2017-11-15 07:15:39 \n", "264 2017-11-14 09:54:23 \n", "235 2017-06-10 03:12:21 \n", "299 2017-11-14 22:45:36 \n", "525 2017-11-12 18:18:52 \n", "487 2017-10-13 02:56:52 I sneak drinks into movie theatres, Meditation... \n", "191 2017-11-16 11:09:31 اللهم لا تجعل ذكر أمي ينقطع وسخر لها الدعوات ط... \n", "560 2013-05-29 20:58:11 ألحوآر مع آلجھلاء ' كآلرسم على ميآھ آلبحر ! مھ... \n", "459 2013-06-08 20:19:16 لن نخضع والله خيرا حافظا \n", "\n", " favourites_count followers_count location protected \\\n", "131 168 31 False \n", "283 9 10 False \n", "264 21 11 False \n", "235 166 14 False \n", "299 2 7 False \n", "525 1 25 False \n", "487 0 7 Windham, NH False \n", "191 0 41 Kuwait False \n", "560 0 280 Kuwait False \n", "459 0 164 q8 False \n", "\n", " screen_name statuses_count \n", "131 1BkicRwkk8s2go4 42 \n", "283 stapleford1984 0 \n", "264 x50jeAwF0urESzl 38 \n", "235 mazen_zazo66 123 \n", "299 noor19816 28 \n", "525 ygjjgkihnjjb 3 \n", "487 JenjenSheeza 2 \n", "191 dalalii_32 6 \n", "560 hoda7647675 850 \n", "459 tarekelfahhed 966 " ] }, "execution_count": 102, "metadata": {}, "output_type": "execute_result" } ], "source": [ "follower_df.sample(10)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Web Scrapping\n", "\n", "- Need know how HTML is constructed\n", "\n", "```HTML\n", " text \n", "```" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Typical HTML tags\n", "\n", "```HTML\n", "

Headline 1

\n", "```\n", "```HTML\n", "Link to Google\n", "```\n", "```HTML\n", "
main content text
\n", "```\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# HTML Can Be Nested\n", "\n", "```HTML\n", "

\n", " Headline 1\n", "
\n", " main content text\n", " Link inside main content \n", "
\n", " \n", "

\n", "\n", "```\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# How Scrapping Works\n", "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\n", "2. You load the HTML page as text using **requests**\n", "3. You parse the HTML text using the scrapping tool\n", "4. Using the scrapping tool, you fetch the items that meet the criteria you identified from 1\n", "5. Repeat and test using jupyter notebook to ensure you captured the data correctly" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# Beautiful Soup\n", "\n", "Used easily pick information from an HTML or XML document\n", "\n", "Install using:\n", "\n", "``` pip install beautifulsoup4 ```" ] }, { "cell_type": "code", "execution_count": 89, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "import requests\n", "from bs4 import BeautifulSoup as BS\n", "\n", "# Load html page using requests\n", "res = requests.get(\"http://www.alanba.com.kw/newspaper/\")\n", "\n", "# Parse the text of the webpage using BS\n", "bs = BS(res.text, 'html.parser')\n", "\n", "# Now examine the page using the developer toolt to find the tags and attributes you need" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "subslide" } }, "source": [ "# From the Browser Developer Tools\n", "## We discovered that we need the text matching the criteria:\n", "- Under the h2 tag of class ```page-title CenterTextAlign```\n", "- The path will be the href for a tag the mentioned h2 tag\n", "- The title text will be the text for the same a tag" ] }, { "cell_type": "code", "execution_count": 90, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [], "source": [ "# fetch all h2 tags of class page-title CenterTextAlign\n", "h2_tags = bs.find_all(\"h2\", class_=\"page-title CenterTextAlign\")" ] }, { "cell_type": "code", "execution_count": 91, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[

هيئة مواجهة الأزمات.. بمباركة حكومية

,\n", "

المرزوق: أمطار لا مثيل لها الثلاثاء المقبل وتستمر خفيفة ومتفرقة حتى 2 ديسمبر

,\n", "

بالفيديو.. الطيران الشراعي زيَّن سماء
الكويت بـ «سمعاً وطاعة يا صاحب السمو»

,\n", "

سلطنة عُمان تحتفل اليوم بعيدها الوطني الـ 47: نهضة تنموية مستمرة بقيادة السلطان قابوس

,\n", "

بالفيديو.. حركة «BDS الكويت»: المقاطعة أداة مهمة لمقاومة
الاستعمار الصهيوني

,\n", "

بالفيديو.. معرض الكتاب
يزيل الحواجز بين الطفل والقراءة

,\n", "

الحريري بعد لقاء ماكرون: سأحتفل
بعيد الاستقلال في بيروت

,\n", "

المذيع وليد المؤمن
في ذمة الله

,\n", "

جمال الحربي: لن نفرج عن اي منتج زراعي مصري الا بعد تأكد
ملاءمته صحيا

,\n", "

بالفيديو.. هل شاهدت أحداً محظوظاً كهذا الصبي؟ شاهد كيف فصلت سنتيمترات بينه وبين الموت !

,\n", "

بالفيديو.. الشرطة الإسبانية
تلاحق متسلقين بعد
فيديو صادم

,\n", "

بالفيديو.. روبوت خارق
يقوم بحركات يعجز
عنها معظم البشر!

,\n", "

بالفيديو.. أسواق حلب
القديمة تنفض
غبار الحرب

,\n", "

بالفيديو.. بدر محارب:
أحب المسرح..
والتلفزيون «يوكّل كيك»!

,\n", "

بالفيديو.. لأول مرة سمية الخشاب ترد: هل خطفت أحمد سعد من
ريم البارودي؟

,\n", "

بالفيديو.. دليل براءة
شيرين عبد الوهاب

,\n", "

هكذا كيف اعتقلوا
أستاذة للعلوم ذهبت
بعقل تلميذ وعاشرته

,\n", "

نجاح أول عملية زراعة
رأس بشرية.. وعلماء:
تبعاتها \"مرعبة\"

,\n", "

شاهد غضب من فيديو
لحبار يرقص ألما داخل
طبق الطعام

,\n", "

لماذا علينا التوقف
عن تناول الأرز؟

,\n", "

العلماء يكتشفون طريقة سهلة لتقوية شبكة Wi Fi في المنازل.. تعرف عليها

,\n", "

بالفيديو.. شاهد تغير
فصول السنة من الفضاء في 20 عاماً

]" ] }, "execution_count": 91, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# The data looks correct\n", "h2_tags" ] }, { "cell_type": "code", "execution_count": 92, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/plain": [ "'هيئة مواجهة الأزمات.. بمباركة حكومية'" ] }, "execution_count": 92, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Lets experiment how to get the text\n", "h2_tags[0].text" ] }, { "cell_type": "code", "execution_count": 96, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'/ar/kuwait-news/791415/18-11-2017-هيئة-مواجهة-الأزمات-بمباركة-حكومية/'" ] }, "execution_count": 96, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# now the url path\n", "h2_tags[0].a.attrs[\"href\"]" ] }, { "cell_type": "code", "execution_count": 97, "metadata": { "slideshow": { "slide_type": "subslide" } }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
pathtitle
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...
\n", "
" ], "text/plain": [ " path \\\n", "0 /ar/kuwait-news/791415/18-11-2017-هيئة-مواجهة-... \n", "1 /ar/kuwait-news/791401/18-11-2017-المرزوق-أمطا... \n", "2 /ar/kuwait-news/791371/18-11-2017-بالفيديو-الط... \n", "3 /ar/kuwait-community/occasions-events/791275/1... \n", "4 /ar/kuwait-news/791387/18-11-2017-بالفيديو-حرك... \n", "5 /ar/kuwait-news/791408/18-11-2017-بالفيديو-معر... \n", "6 /ar/arabic-international-news/lebanon-news/791... \n", "7 /ar/kuwait-news/791437/19-11-2017-وزير-الإعلام... \n", "8 /ar/kuwait-news/791461/19-11-2017-الحربي-السما... \n", "9 /ar/last/791450/19-11-2017-بالفيديو-شاهدت-أحدا... \n", "10 /ar/world-news/791447/19-11-2017-بالفيديو-الشر... \n", "11 /ar/last/791452/19-11-2017-بالفيديو-روبوت-خارق... \n", "12 /ar/kuwait-news/791402/18-11-2017-بالفيديو-أسو... \n", "13 /ar/art-news/791345/18-11-2017-بالفيديو-بدر-مح... \n", "14 /ar/art-news/arabic-international/791453/19-11... \n", "15 /ar/art-news/arabic-international/791455/19-11... \n", "16 /ar/last/791456/19-11-2017-هكذا-كيف-اعتقلوا-أس... \n", "17 /ar/last/791451/19-11-2017-نجاح-أول-عملية-زراع... \n", "18 /ar/last/791454/19-11-2017-شاهد-غضب-فيديو-لحبا... \n", "19 /ar/last/791448/19-11-2017-لماذا-علينا-التوقف-... \n", "20 /ar/last/791457/19-11-2017-العلماء-يكتشفون-طري... \n", "21 /ar/last/791458/19-11-2017-بالفيديو-شاهد-تغير-... \n", "\n", " title \n", "0 هيئة مواجهة الأزمات.. بمباركة حكومية \n", "1 المرزوق: أمطار لا مثيل لها الثلاثاء المقبل وتس... \n", "2 بالفيديو.. الطيران الشراعي زيَّن سماء الكويت ب... \n", "3 سلطنة عُمان تحتفل اليوم بعيدها الوطني الـ 47: ... \n", "4 بالفيديو.. حركة «BDS الكويت»: المقاطعة أداة مه... \n", "5 بالفيديو.. معرض الكتاب يزيل الحواجز بين الطفل ... \n", "6 الحريري بعد لقاء ماكرون: سأحتفل بعيد الاستقلال... \n", "7 المذيع وليد المؤمن في ذمة الله \n", "8 جمال الحربي: لن نفرج عن اي منتج زراعي مصري الا... \n", "9 بالفيديو.. هل شاهدت أحداً محظوظاً كهذا الصبي؟ ... \n", "10 بالفيديو.. الشرطة الإسبانية تلاحق متسلقين بعد ... \n", "11 بالفيديو.. روبوت خارق يقوم بحركات يعجز عنها مع... \n", "12 بالفيديو.. أسواق حلب القديمة تنفض غبار الحرب \n", "13 بالفيديو.. بدر محارب: أحب المسرح.. والتلفزيون ... \n", "14 بالفيديو.. لأول مرة سمية الخشاب ترد: هل خطفت أ... \n", "15 بالفيديو.. دليل براءة شيرين عبد الوهاب \n", "16 هكذا كيف اعتقلوا أستاذة للعلوم ذهبت بعقل تلميذ... \n", "17 نجاح أول عملية زراعة رأس بشرية.. وعلماء: تبعات... \n", "18 شاهد غضب من فيديو لحبار يرقص ألما داخل طبق الطعام \n", "19 لماذا علينا التوقف عن تناول الأرز؟ \n", "20 العلماء يكتشفون طريقة سهلة لتقوية شبكة Wi Fi ف... \n", "21 بالفيديو.. شاهد تغير فصول السنة من الفضاء في 2... " ] }, "execution_count": 97, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Now use list comprehension to construct your list of records\n", "headline_list = [\n", " {\n", " \"title\": x.text,\n", " \"path\": x.a.attrs[\"href\"],\n", " } for x in h2_tags\n", "]\n", "pd.DataFrame(headline_list)" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Saving Dataframes\n", "\n", "You can save your data frames on file using the to_* methods" ] }, { "cell_type": "code", "execution_count": 103, "metadata": {}, "outputs": [], "source": [ "# After creating the list of headlines\n", "mydf = pd.DataFrame(headline_list)\n", "\n", "# store as csv\n", "mydf.to_csv(\"headlines.csv\")\n", "\n", "# you can store as json\n", "mydf.to_json(\"headlines.json\")\n", "\n", "# or even excel\n", "mydf.to_excel(\"headlines.xls\")" ] }, { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Which Approach to use?\n", "1. Use client if exists\n", "2. Use restful API if no client exists\n", "3. Scrape if you have to\n", " - Assumes stable structure" ] } ], "metadata": { "celltoolbar": "Slideshow", "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.2" } }, "nbformat": 4, "nbformat_minor": 2 }