[
Convert REST Payload to Python Objects¶
Let us understand how we can convert REST GET
Payload to appropriate Python Objects.
- We have already seen that the
payload
is of typestr
. Also, it contains validjson
. It can be a simple JSON Document or JSON Array.
Here are the steps involved in converting REST Payload to Python Objects.
- Invoke REST API by passing valid URI. It will create response object.
- Using response object, we can invoke
json()
. It will return Python dict or Python list. The list typically contain dicts. - Once it is converted to Python dict or list we can further process data using appropriate Python APIs as per our requirements.
In [1]:
import requests
- Example for simple JSON to
dict
.
In [2]:
!curl https://api.github.com
{ "current_user_url": "https://api.github.com/user", "current_user_authorizations_html_url": "https://github.com/settings/connections/applications{/client_id}", "authorizations_url": "https://api.github.com/authorizations", "code_search_url": "https://api.github.com/search/code?q={query}{&page,per_page,sort,order}", "commit_search_url": "https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}", "emails_url": "https://api.github.com/user/emails", "emojis_url": "https://api.github.com/emojis", "events_url": "https://api.github.com/events", "feeds_url": "https://api.github.com/feeds", "followers_url": "https://api.github.com/user/followers", "following_url": "https://api.github.com/user/following{/target}", "gists_url": "https://api.github.com/gists{/gist_id}", "hub_url": "https://api.github.com/hub", "issue_search_url": "https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}", "issues_url": "https://api.github.com/issues", "keys_url": "https://api.github.com/user/keys", "label_search_url": "https://api.github.com/search/labels?q={query}&repository_id={repository_id}{&page,per_page}", "notifications_url": "https://api.github.com/notifications", "organization_url": "https://api.github.com/orgs/{org}", "organization_repositories_url": "https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}", "organization_teams_url": "https://api.github.com/orgs/{org}/teams", "public_gists_url": "https://api.github.com/gists/public", "rate_limit_url": "https://api.github.com/rate_limit", "repository_url": "https://api.github.com/repos/{owner}/{repo}", "repository_search_url": "https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}", "current_user_repositories_url": "https://api.github.com/user/repos{?type,page,per_page,sort}", "starred_url": "https://api.github.com/user/starred{/owner}{/repo}", "starred_gists_url": "https://api.github.com/gists/starred", "topic_search_url": "https://api.github.com/search/topics?q={query}{&page,per_page}", "user_url": "https://api.github.com/users/{user}", "user_organizations_url": "https://api.github.com/user/orgs", "user_repositories_url": "https://api.github.com/users/{user}/repos{?type,page,per_page,sort}", "user_search_url": "https://api.github.com/search/users?q={query}{&page,per_page,sort,order}" }
In [3]:
payload = requests.get('https://api.github.com').content.decode('utf-8')
In [4]:
payload # A string with valid json
Out[4]:
'{\n "current_user_url": "https://api.github.com/user",\n "current_user_authorizations_html_url": "https://github.com/settings/connections/applications{/client_id}",\n "authorizations_url": "https://api.github.com/authorizations",\n "code_search_url": "https://api.github.com/search/code?q={query}{&page,per_page,sort,order}",\n "commit_search_url": "https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}",\n "emails_url": "https://api.github.com/user/emails",\n "emojis_url": "https://api.github.com/emojis",\n "events_url": "https://api.github.com/events",\n "feeds_url": "https://api.github.com/feeds",\n "followers_url": "https://api.github.com/user/followers",\n "following_url": "https://api.github.com/user/following{/target}",\n "gists_url": "https://api.github.com/gists{/gist_id}",\n "hub_url": "https://api.github.com/hub",\n "issue_search_url": "https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}",\n "issues_url": "https://api.github.com/issues",\n "keys_url": "https://api.github.com/user/keys",\n "label_search_url": "https://api.github.com/search/labels?q={query}&repository_id={repository_id}{&page,per_page}",\n "notifications_url": "https://api.github.com/notifications",\n "organization_url": "https://api.github.com/orgs/{org}",\n "organization_repositories_url": "https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}",\n "organization_teams_url": "https://api.github.com/orgs/{org}/teams",\n "public_gists_url": "https://api.github.com/gists/public",\n "rate_limit_url": "https://api.github.com/rate_limit",\n "repository_url": "https://api.github.com/repos/{owner}/{repo}",\n "repository_search_url": "https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}",\n "current_user_repositories_url": "https://api.github.com/user/repos{?type,page,per_page,sort}",\n "starred_url": "https://api.github.com/user/starred{/owner}{/repo}",\n "starred_gists_url": "https://api.github.com/gists/starred",\n "topic_search_url": "https://api.github.com/search/topics?q={query}{&page,per_page}",\n "user_url": "https://api.github.com/users/{user}",\n "user_organizations_url": "https://api.github.com/user/orgs",\n "user_repositories_url": "https://api.github.com/users/{user}/repos{?type,page,per_page,sort}",\n "user_search_url": "https://api.github.com/search/users?q={query}{&page,per_page,sort,order}"\n}\n'
In [5]:
payload_dict = requests.get('https://api.github.com').json() # returns Python dict directly
In [6]:
type(payload_dict)
Out[6]:
dict
In [7]:
payload_dict # It is of type dict
Out[7]:
{'current_user_url': 'https://api.github.com/user', 'current_user_authorizations_html_url': 'https://github.com/settings/connections/applications{/client_id}', 'authorizations_url': 'https://api.github.com/authorizations', 'code_search_url': 'https://api.github.com/search/code?q={query}{&page,per_page,sort,order}', 'commit_search_url': 'https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}', 'emails_url': 'https://api.github.com/user/emails', 'emojis_url': 'https://api.github.com/emojis', 'events_url': 'https://api.github.com/events', 'feeds_url': 'https://api.github.com/feeds', 'followers_url': 'https://api.github.com/user/followers', 'following_url': 'https://api.github.com/user/following{/target}', 'gists_url': 'https://api.github.com/gists{/gist_id}', 'hub_url': 'https://api.github.com/hub', 'issue_search_url': 'https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}', 'issues_url': 'https://api.github.com/issues', 'keys_url': 'https://api.github.com/user/keys', 'label_search_url': 'https://api.github.com/search/labels?q={query}&repository_id={repository_id}{&page,per_page}', 'notifications_url': 'https://api.github.com/notifications', 'organization_url': 'https://api.github.com/orgs/{org}', 'organization_repositories_url': 'https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}', 'organization_teams_url': 'https://api.github.com/orgs/{org}/teams', 'public_gists_url': 'https://api.github.com/gists/public', 'rate_limit_url': 'https://api.github.com/rate_limit', 'repository_url': 'https://api.github.com/repos/{owner}/{repo}', 'repository_search_url': 'https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}', 'current_user_repositories_url': 'https://api.github.com/user/repos{?type,page,per_page,sort}', 'starred_url': 'https://api.github.com/user/starred{/owner}{/repo}', 'starred_gists_url': 'https://api.github.com/gists/starred', 'topic_search_url': 'https://api.github.com/search/topics?q={query}{&page,per_page}', 'user_url': 'https://api.github.com/users/{user}', 'user_organizations_url': 'https://api.github.com/user/orgs', 'user_repositories_url': 'https://api.github.com/users/{user}/repos{?type,page,per_page,sort}', 'user_search_url': 'https://api.github.com/search/users?q={query}{&page,per_page,sort,order}'}
In [8]:
payload_dict.keys()
Out[8]:
dict_keys(['current_user_url', 'current_user_authorizations_html_url', 'authorizations_url', 'code_search_url', 'commit_search_url', 'emails_url', 'emojis_url', 'events_url', 'feeds_url', 'followers_url', 'following_url', 'gists_url', 'hub_url', 'issue_search_url', 'issues_url', 'keys_url', 'label_search_url', 'notifications_url', 'organization_url', 'organization_repositories_url', 'organization_teams_url', 'public_gists_url', 'rate_limit_url', 'repository_url', 'repository_search_url', 'current_user_repositories_url', 'starred_url', 'starred_gists_url', 'topic_search_url', 'user_url', 'user_organizations_url', 'user_repositories_url', 'user_search_url'])
In [9]:
payload_dict.values()
Out[9]:
dict_values(['https://api.github.com/user', 'https://github.com/settings/connections/applications{/client_id}', 'https://api.github.com/authorizations', 'https://api.github.com/search/code?q={query}{&page,per_page,sort,order}', 'https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}', 'https://api.github.com/user/emails', 'https://api.github.com/emojis', 'https://api.github.com/events', 'https://api.github.com/feeds', 'https://api.github.com/user/followers', 'https://api.github.com/user/following{/target}', 'https://api.github.com/gists{/gist_id}', 'https://api.github.com/hub', 'https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}', 'https://api.github.com/issues', 'https://api.github.com/user/keys', 'https://api.github.com/search/labels?q={query}&repository_id={repository_id}{&page,per_page}', 'https://api.github.com/notifications', 'https://api.github.com/orgs/{org}', 'https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}', 'https://api.github.com/orgs/{org}/teams', 'https://api.github.com/gists/public', 'https://api.github.com/rate_limit', 'https://api.github.com/repos/{owner}/{repo}', 'https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}', 'https://api.github.com/user/repos{?type,page,per_page,sort}', 'https://api.github.com/user/starred{/owner}{/repo}', 'https://api.github.com/gists/starred', 'https://api.github.com/search/topics?q={query}{&page,per_page}', 'https://api.github.com/users/{user}', 'https://api.github.com/user/orgs', 'https://api.github.com/users/{user}/repos{?type,page,per_page,sort}', 'https://api.github.com/search/users?q={query}{&page,per_page,sort,order}'])
In [10]:
payload_dict['current_user_url']
Out[10]:
'https://api.github.com/user'
- Example for JSON Array to
list
.
In [11]:
!curl https://api.github.com/users/dgadiraju/repos
[ { "id": 353113931, "node_id": "MDEwOlJlcG9zaXRvcnkzNTMxMTM5MzE=", "name": "airflow-dags", "full_name": "dgadiraju/airflow-dags", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/airflow-dags", "description": null, "fork": true, "url": "https://api.github.com/repos/dgadiraju/airflow-dags", "forks_url": "https://api.github.com/repos/dgadiraju/airflow-dags/forks", "keys_url": "https://api.github.com/repos/dgadiraju/airflow-dags/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/airflow-dags/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/airflow-dags/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/airflow-dags/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/airflow-dags/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/airflow-dags/events", "assignees_url": "https://api.github.com/repos/dgadiraju/airflow-dags/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/airflow-dags/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/airflow-dags/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/airflow-dags/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/airflow-dags/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/airflow-dags/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/airflow-dags/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/airflow-dags/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/airflow-dags/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/airflow-dags/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/airflow-dags/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/airflow-dags/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/airflow-dags/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/airflow-dags/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/airflow-dags/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/airflow-dags/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/airflow-dags/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/airflow-dags/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/airflow-dags/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/airflow-dags/merges", "archive_url": "https://api.github.com/repos/dgadiraju/airflow-dags/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/airflow-dags/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/airflow-dags/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/airflow-dags/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/airflow-dags/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/airflow-dags/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/airflow-dags/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/airflow-dags/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/airflow-dags/deployments", "created_at": "2021-03-30T19:11:04Z", "updated_at": "2021-03-30T20:51:57Z", "pushed_at": "2021-03-30T20:51:55Z", "git_url": "git://github.com/dgadiraju/airflow-dags.git", "ssh_url": "git@github.com:dgadiraju/airflow-dags.git", "clone_url": "https://github.com/dgadiraju/airflow-dags.git", "svn_url": "https://github.com/dgadiraju/airflow-dags", "homepage": null, "size": 4, "stargazers_count": 0, "watchers_count": 0, "language": "Python", "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 353210198, "node_id": "MDEwOlJlcG9zaXRvcnkzNTMyMTAxOTg=", "name": "airflow-eks-config", "full_name": "dgadiraju/airflow-eks-config", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/airflow-eks-config", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/airflow-eks-config", "forks_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/forks", "keys_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/events", "assignees_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/merges", "archive_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/airflow-eks-config/deployments", "created_at": "2021-03-31T03:13:27Z", "updated_at": "2021-03-31T21:06:21Z", "pushed_at": "2021-04-01T02:38:18Z", "git_url": "git://github.com/dgadiraju/airflow-eks-config.git", "ssh_url": "git@github.com:dgadiraju/airflow-eks-config.git", "clone_url": "https://github.com/dgadiraju/airflow-eks-config.git", "svn_url": "https://github.com/dgadiraju/airflow-eks-config", "homepage": null, "size": 3, "stargazers_count": 0, "watchers_count": 0, "language": null, "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 353486665, "node_id": "MDEwOlJlcG9zaXRvcnkzNTM0ODY2NjU=", "name": "airflow-eks-docker", "full_name": "dgadiraju/airflow-eks-docker", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/airflow-eks-docker", "description": "Airflow Docker image used in AWS EKS cluster", "fork": true, "url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker", "forks_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/forks", "keys_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/events", "assignees_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/merges", "archive_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/airflow-eks-docker/deployments", "created_at": "2021-03-31T20:50:23Z", "updated_at": "2021-03-31T20:50:24Z", "pushed_at": "2021-03-29T23:17:36Z", "git_url": "git://github.com/dgadiraju/airflow-eks-docker.git", "ssh_url": "git@github.com:dgadiraju/airflow-eks-docker.git", "clone_url": "https://github.com/dgadiraju/airflow-eks-docker.git", "svn_url": "https://github.com/dgadiraju/airflow-eks-docker", "homepage": null, "size": 64, "stargazers_count": 0, "watchers_count": 0, "language": null, "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 0, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 0, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 65133088, "node_id": "MDEwOlJlcG9zaXRvcnk2NTEzMzA4OA==", "name": "bigdatalabs", "full_name": "dgadiraju/bigdatalabs", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/bigdatalabs", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/bigdatalabs", "forks_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/forks", "keys_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/events", "assignees_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/merges", "archive_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/bigdatalabs/deployments", "created_at": "2016-08-07T12:54:39Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2016-08-07T12:54:39Z", "git_url": "git://github.com/dgadiraju/bigdatalabs.git", "ssh_url": "git@github.com:dgadiraju/bigdatalabs.git", "clone_url": "https://github.com/dgadiraju/bigdatalabs.git", "svn_url": "https://github.com/dgadiraju/bigdatalabs", "homepage": null, "size": 0, "stargazers_count": 2, "watchers_count": 2, "language": null, "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 0, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 0, "open_issues": 0, "watchers": 2, "default_branch": "master" }, { "id": 163745250, "node_id": "MDEwOlJlcG9zaXRvcnkxNjM3NDUyNTA=", "name": "bypr", "full_name": "dgadiraju/bypr", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/bypr", "description": "Build your profile using react", "fork": false, "url": "https://api.github.com/repos/dgadiraju/bypr", "forks_url": "https://api.github.com/repos/dgadiraju/bypr/forks", "keys_url": "https://api.github.com/repos/dgadiraju/bypr/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/bypr/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/bypr/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/bypr/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/bypr/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/bypr/events", "assignees_url": "https://api.github.com/repos/dgadiraju/bypr/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/bypr/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/bypr/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/bypr/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/bypr/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/bypr/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/bypr/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/bypr/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/bypr/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/bypr/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/bypr/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/bypr/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/bypr/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/bypr/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/bypr/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/bypr/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/bypr/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/bypr/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/bypr/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/bypr/merges", "archive_url": "https://api.github.com/repos/dgadiraju/bypr/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/bypr/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/bypr/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/bypr/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/bypr/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/bypr/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/bypr/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/bypr/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/bypr/deployments", "created_at": "2019-01-01T15:07:19Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2019-01-01T16:19:02Z", "git_url": "git://github.com/dgadiraju/bypr.git", "ssh_url": "git@github.com:dgadiraju/bypr.git", "clone_url": "https://github.com/dgadiraju/bypr.git", "svn_url": "https://github.com/dgadiraju/bypr", "homepage": null, "size": 188, "stargazers_count": 1, "watchers_count": 1, "language": "JavaScript", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 1, "default_branch": "master" }, { "id": 136827022, "node_id": "MDEwOlJlcG9zaXRvcnkxMzY4MjcwMjI=", "name": "ccdemo", "full_name": "dgadiraju/ccdemo", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/ccdemo", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/ccdemo", "forks_url": "https://api.github.com/repos/dgadiraju/ccdemo/forks", "keys_url": "https://api.github.com/repos/dgadiraju/ccdemo/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/ccdemo/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/ccdemo/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/ccdemo/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/ccdemo/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/ccdemo/events", "assignees_url": "https://api.github.com/repos/dgadiraju/ccdemo/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/ccdemo/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/ccdemo/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/ccdemo/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/ccdemo/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/ccdemo/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/ccdemo/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/ccdemo/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/ccdemo/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/ccdemo/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/ccdemo/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/ccdemo/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/ccdemo/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/ccdemo/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/ccdemo/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/ccdemo/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/ccdemo/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/ccdemo/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/ccdemo/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/ccdemo/merges", "archive_url": "https://api.github.com/repos/dgadiraju/ccdemo/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/ccdemo/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/ccdemo/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/ccdemo/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/ccdemo/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/ccdemo/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/ccdemo/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/ccdemo/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/ccdemo/deployments", "created_at": "2018-06-10T16:47:26Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2018-06-17T15:34:18Z", "git_url": "git://github.com/dgadiraju/ccdemo.git", "ssh_url": "git@github.com:dgadiraju/ccdemo.git", "clone_url": "https://github.com/dgadiraju/ccdemo.git", "svn_url": "https://github.com/dgadiraju/ccdemo", "homepage": null, "size": 6, "stargazers_count": 2, "watchers_count": 2, "language": "Scala", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 9, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 9, "open_issues": 0, "watchers": 2, "default_branch": "master" }, { "id": 352789911, "node_id": "MDEwOlJlcG9zaXRvcnkzNTI3ODk5MTE=", "name": "charts", "full_name": "dgadiraju/charts", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/charts", "description": "the home of the stable/airflow Helm chart", "fork": true, "url": "https://api.github.com/repos/dgadiraju/charts", "forks_url": "https://api.github.com/repos/dgadiraju/charts/forks", "keys_url": "https://api.github.com/repos/dgadiraju/charts/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/charts/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/charts/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/charts/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/charts/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/charts/events", "assignees_url": "https://api.github.com/repos/dgadiraju/charts/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/charts/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/charts/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/charts/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/charts/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/charts/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/charts/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/charts/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/charts/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/charts/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/charts/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/charts/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/charts/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/charts/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/charts/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/charts/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/charts/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/charts/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/charts/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/charts/merges", "archive_url": "https://api.github.com/repos/dgadiraju/charts/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/charts/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/charts/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/charts/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/charts/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/charts/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/charts/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/charts/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/charts/deployments", "created_at": "2021-03-29T21:30:55Z", "updated_at": "2021-03-29T21:30:56Z", "pushed_at": "2021-03-29T15:47:10Z", "git_url": "git://github.com/dgadiraju/charts.git", "ssh_url": "git@github.com:dgadiraju/charts.git", "clone_url": "https://github.com/dgadiraju/charts.git", "svn_url": "https://github.com/dgadiraju/charts", "homepage": "", "size": 497, "stargazers_count": 0, "watchers_count": 0, "language": null, "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": false, "has_pages": false, "forks_count": 1, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": { "key": "apache-2.0", "name": "Apache License 2.0", "spdx_id": "Apache-2.0", "url": "https://api.github.com/licenses/apache-2.0", "node_id": "MDc6TGljZW5zZTI=" }, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 1, "open_issues": 0, "watchers": 0, "default_branch": "main" }, { "id": 251401336, "node_id": "MDEwOlJlcG9zaXRvcnkyNTE0MDEzMzY=", "name": "clive-demo", "full_name": "dgadiraju/clive-demo", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/clive-demo", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/clive-demo", "forks_url": "https://api.github.com/repos/dgadiraju/clive-demo/forks", "keys_url": "https://api.github.com/repos/dgadiraju/clive-demo/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/clive-demo/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/clive-demo/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/clive-demo/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/clive-demo/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/clive-demo/events", "assignees_url": "https://api.github.com/repos/dgadiraju/clive-demo/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/clive-demo/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/clive-demo/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/clive-demo/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/clive-demo/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/clive-demo/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/clive-demo/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/clive-demo/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/clive-demo/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/clive-demo/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/clive-demo/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/clive-demo/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/clive-demo/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/clive-demo/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/clive-demo/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/clive-demo/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/clive-demo/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/clive-demo/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/clive-demo/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/clive-demo/merges", "archive_url": "https://api.github.com/repos/dgadiraju/clive-demo/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/clive-demo/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/clive-demo/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/clive-demo/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/clive-demo/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/clive-demo/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/clive-demo/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/clive-demo/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/clive-demo/deployments", "created_at": "2020-03-30T19:01:02Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2020-03-30T19:04:52Z", "git_url": "git://github.com/dgadiraju/clive-demo.git", "ssh_url": "git@github.com:dgadiraju/clive-demo.git", "clone_url": "https://github.com/dgadiraju/clive-demo.git", "svn_url": "https://github.com/dgadiraju/clive-demo", "homepage": null, "size": 2, "stargazers_count": 1, "watchers_count": 1, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 1, "default_branch": "master" }, { "id": 26467119, "node_id": "MDEwOlJlcG9zaXRvcnkyNjQ2NzExOQ==", "name": "code", "full_name": "dgadiraju/code", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/code", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/code", "forks_url": "https://api.github.com/repos/dgadiraju/code/forks", "keys_url": "https://api.github.com/repos/dgadiraju/code/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/code/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/code/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/code/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/code/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/code/events", "assignees_url": "https://api.github.com/repos/dgadiraju/code/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/code/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/code/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/code/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/code/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/code/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/code/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/code/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/code/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/code/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/code/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/code/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/code/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/code/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/code/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/code/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/code/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/code/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/code/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/code/merges", "archive_url": "https://api.github.com/repos/dgadiraju/code/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/code/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/code/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/code/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/code/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/code/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/code/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/code/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/code/deployments", "created_at": "2014-11-11T03:09:42Z", "updated_at": "2022-02-09T12:16:27Z", "pushed_at": "2022-02-09T22:31:16Z", "git_url": "git://github.com/dgadiraju/code.git", "ssh_url": "git@github.com:dgadiraju/code.git", "clone_url": "https://github.com/dgadiraju/code.git", "svn_url": "https://github.com/dgadiraju/code", "homepage": null, "size": 14408, "stargazers_count": 180, "watchers_count": 180, "language": "Java", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 591, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 14, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 591, "open_issues": 14, "watchers": 180, "default_branch": "master" }, { "id": 26652510, "node_id": "MDEwOlJlcG9zaXRvcnkyNjY1MjUxMA==", "name": "data", "full_name": "dgadiraju/data", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/data", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/data", "forks_url": "https://api.github.com/repos/dgadiraju/data/forks", "keys_url": "https://api.github.com/repos/dgadiraju/data/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/data/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/data/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/data/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/data/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/data/events", "assignees_url": "https://api.github.com/repos/dgadiraju/data/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/data/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/data/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/data/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/data/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/data/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/data/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/data/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/data/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/data/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/data/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/data/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/data/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/data/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/data/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/data/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/data/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/data/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/data/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/data/merges", "archive_url": "https://api.github.com/repos/dgadiraju/data/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/data/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/data/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/data/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/data/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/data/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/data/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/data/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/data/deployments", "created_at": "2014-11-14T18:49:35Z", "updated_at": "2022-03-21T18:13:58Z", "pushed_at": "2021-11-22T06:09:24Z", "git_url": "git://github.com/dgadiraju/data.git", "ssh_url": "git@github.com:dgadiraju/data.git", "clone_url": "https://github.com/dgadiraju/data.git", "svn_url": "https://github.com/dgadiraju/data", "homepage": null, "size": 287667, "stargazers_count": 93, "watchers_count": 93, "language": null, "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 471, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 3, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 471, "open_issues": 3, "watchers": 93, "default_branch": "master" }, { "id": 406722917, "node_id": "MDEwOlJlcG9zaXRvcnk0MDY3MjI5MTc=", "name": "data-copier", "full_name": "dgadiraju/data-copier", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/data-copier", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/data-copier", "forks_url": "https://api.github.com/repos/dgadiraju/data-copier/forks", "keys_url": "https://api.github.com/repos/dgadiraju/data-copier/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/data-copier/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/data-copier/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/data-copier/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/data-copier/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/data-copier/events", "assignees_url": "https://api.github.com/repos/dgadiraju/data-copier/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/data-copier/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/data-copier/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/data-copier/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/data-copier/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/data-copier/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/data-copier/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/data-copier/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/data-copier/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/data-copier/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/data-copier/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/data-copier/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/data-copier/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/data-copier/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/data-copier/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/data-copier/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/data-copier/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/data-copier/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/data-copier/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/data-copier/merges", "archive_url": "https://api.github.com/repos/dgadiraju/data-copier/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/data-copier/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/data-copier/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/data-copier/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/data-copier/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/data-copier/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/data-copier/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/data-copier/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/data-copier/deployments", "created_at": "2021-09-15T10:51:07Z", "updated_at": "2022-01-05T18:55:29Z", "pushed_at": "2021-11-18T00:56:17Z", "git_url": "git://github.com/dgadiraju/data-copier.git", "ssh_url": "git@github.com:dgadiraju/data-copier.git", "clone_url": "https://github.com/dgadiraju/data-copier.git", "svn_url": "https://github.com/dgadiraju/data-copier", "homepage": null, "size": 7, "stargazers_count": 3, "watchers_count": 3, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 0, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 0, "open_issues": 0, "watchers": 3, "default_branch": "main" }, { "id": 272314562, "node_id": "MDEwOlJlcG9zaXRvcnkyNzIzMTQ1NjI=", "name": "data-copier-live", "full_name": "dgadiraju/data-copier-live", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/data-copier-live", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/data-copier-live", "forks_url": "https://api.github.com/repos/dgadiraju/data-copier-live/forks", "keys_url": "https://api.github.com/repos/dgadiraju/data-copier-live/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/data-copier-live/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/data-copier-live/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/data-copier-live/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/data-copier-live/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/data-copier-live/events", "assignees_url": "https://api.github.com/repos/dgadiraju/data-copier-live/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/data-copier-live/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/data-copier-live/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/data-copier-live/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/data-copier-live/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/data-copier-live/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/data-copier-live/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/data-copier-live/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/data-copier-live/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/data-copier-live/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/data-copier-live/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/data-copier-live/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/data-copier-live/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/data-copier-live/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/data-copier-live/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/data-copier-live/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/data-copier-live/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/data-copier-live/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/data-copier-live/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/data-copier-live/merges", "archive_url": "https://api.github.com/repos/dgadiraju/data-copier-live/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/data-copier-live/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/data-copier-live/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/data-copier-live/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/data-copier-live/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/data-copier-live/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/data-copier-live/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/data-copier-live/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/data-copier-live/deployments", "created_at": "2020-06-15T01:27:10Z", "updated_at": "2021-08-27T22:27:43Z", "pushed_at": "2020-07-01T04:52:25Z", "git_url": "git://github.com/dgadiraju/data-copier-live.git", "ssh_url": "git@github.com:dgadiraju/data-copier-live.git", "clone_url": "https://github.com/dgadiraju/data-copier-live.git", "svn_url": "https://github.com/dgadiraju/data-copier-live", "homepage": null, "size": 12, "stargazers_count": 4, "watchers_count": 4, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 15, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 15, "open_issues": 0, "watchers": 4, "default_branch": "master" }, { "id": 65733785, "node_id": "MDEwOlJlcG9zaXRvcnk2NTczMzc4NQ==", "name": "demomr", "full_name": "dgadiraju/demomr", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/demomr", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/demomr", "forks_url": "https://api.github.com/repos/dgadiraju/demomr/forks", "keys_url": "https://api.github.com/repos/dgadiraju/demomr/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/demomr/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/demomr/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/demomr/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/demomr/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/demomr/events", "assignees_url": "https://api.github.com/repos/dgadiraju/demomr/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/demomr/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/demomr/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/demomr/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/demomr/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/demomr/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/demomr/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/demomr/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/demomr/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/demomr/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/demomr/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/demomr/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/demomr/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/demomr/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/demomr/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/demomr/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/demomr/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/demomr/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/demomr/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/demomr/merges", "archive_url": "https://api.github.com/repos/dgadiraju/demomr/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/demomr/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/demomr/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/demomr/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/demomr/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/demomr/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/demomr/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/demomr/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/demomr/deployments", "created_at": "2016-08-15T13:20:08Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2016-08-15T16:25:07Z", "git_url": "git://github.com/dgadiraju/demomr.git", "ssh_url": "git@github.com:dgadiraju/demomr.git", "clone_url": "https://github.com/dgadiraju/demomr.git", "svn_url": "https://github.com/dgadiraju/demomr", "homepage": null, "size": 51, "stargazers_count": 1, "watchers_count": 1, "language": "Java", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 8, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 8, "open_issues": 0, "watchers": 1, "default_branch": "master" }, { "id": 162808909, "node_id": "MDEwOlJlcG9zaXRvcnkxNjI4MDg5MDk=", "name": "dgadiraju.github.io", "full_name": "dgadiraju/dgadiraju.github.io", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/dgadiraju.github.io", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io", "forks_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/forks", "keys_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/events", "assignees_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/merges", "archive_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/dgadiraju.github.io/deployments", "created_at": "2018-12-22T12:20:20Z", "updated_at": "2020-10-22T04:21:12Z", "pushed_at": "2018-12-23T07:58:37Z", "git_url": "git://github.com/dgadiraju/dgadiraju.github.io.git", "ssh_url": "git@github.com:dgadiraju/dgadiraju.github.io.git", "clone_url": "https://github.com/dgadiraju/dgadiraju.github.io.git", "svn_url": "https://github.com/dgadiraju/dgadiraju.github.io", "homepage": null, "size": 34, "stargazers_count": 2, "watchers_count": 2, "language": "HTML", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": true, "forks_count": 3, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 3, "open_issues": 0, "watchers": 2, "default_branch": "master" }, { "id": 268008175, "node_id": "MDEwOlJlcG9zaXRvcnkyNjgwMDgxNzU=", "name": "dockit", "full_name": "dgadiraju/dockit", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/dockit", "description": "Stream of repositories to learn web application development using Flask to manage Docker Containers", "fork": false, "url": "https://api.github.com/repos/dgadiraju/dockit", "forks_url": "https://api.github.com/repos/dgadiraju/dockit/forks", "keys_url": "https://api.github.com/repos/dgadiraju/dockit/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/dockit/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/dockit/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/dockit/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/dockit/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/dockit/events", "assignees_url": "https://api.github.com/repos/dgadiraju/dockit/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/dockit/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/dockit/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/dockit/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/dockit/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/dockit/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/dockit/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/dockit/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/dockit/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/dockit/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/dockit/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/dockit/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/dockit/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/dockit/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/dockit/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/dockit/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/dockit/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/dockit/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/dockit/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/dockit/merges", "archive_url": "https://api.github.com/repos/dgadiraju/dockit/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/dockit/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/dockit/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/dockit/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/dockit/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/dockit/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/dockit/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/dockit/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/dockit/deployments", "created_at": "2020-05-30T04:21:29Z", "updated_at": "2020-06-05T15:42:13Z", "pushed_at": "2020-06-01T02:52:02Z", "git_url": "git://github.com/dgadiraju/dockit.git", "ssh_url": "git@github.com:dgadiraju/dockit.git", "clone_url": "https://github.com/dgadiraju/dockit.git", "svn_url": "https://github.com/dgadiraju/dockit", "homepage": null, "size": 41, "stargazers_count": 6, "watchers_count": 6, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 6, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 6, "open_issues": 0, "watchers": 6, "default_branch": "master" }, { "id": 268324236, "node_id": "MDEwOlJlcG9zaXRvcnkyNjgzMjQyMzY=", "name": "dockit-core", "full_name": "dgadiraju/dockit-core", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/dockit-core", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/dockit-core", "forks_url": "https://api.github.com/repos/dgadiraju/dockit-core/forks", "keys_url": "https://api.github.com/repos/dgadiraju/dockit-core/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/dockit-core/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/dockit-core/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/dockit-core/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/dockit-core/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/dockit-core/events", "assignees_url": "https://api.github.com/repos/dgadiraju/dockit-core/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/dockit-core/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/dockit-core/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/dockit-core/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/dockit-core/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/dockit-core/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/dockit-core/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/dockit-core/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/dockit-core/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/dockit-core/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/dockit-core/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/dockit-core/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/dockit-core/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/dockit-core/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/dockit-core/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/dockit-core/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/dockit-core/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/dockit-core/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/dockit-core/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/dockit-core/merges", "archive_url": "https://api.github.com/repos/dgadiraju/dockit-core/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/dockit-core/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/dockit-core/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/dockit-core/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/dockit-core/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/dockit-core/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/dockit-core/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/dockit-core/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/dockit-core/deployments", "created_at": "2020-05-31T16:58:09Z", "updated_at": "2020-05-31T17:29:45Z", "pushed_at": "2020-05-31T17:29:42Z", "git_url": "git://github.com/dgadiraju/dockit-core.git", "ssh_url": "git@github.com:dgadiraju/dockit-core.git", "clone_url": "https://github.com/dgadiraju/dockit-core.git", "svn_url": "https://github.com/dgadiraju/dockit-core", "homepage": null, "size": 4, "stargazers_count": 0, "watchers_count": 0, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 275646124, "node_id": "MDEwOlJlcG9zaXRvcnkyNzU2NDYxMjQ=", "name": "etl-demo", "full_name": "dgadiraju/etl-demo", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/etl-demo", "description": "Python and AirFlow - Data Pipeline Orchestration", "fork": false, "url": "https://api.github.com/repos/dgadiraju/etl-demo", "forks_url": "https://api.github.com/repos/dgadiraju/etl-demo/forks", "keys_url": "https://api.github.com/repos/dgadiraju/etl-demo/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/etl-demo/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/etl-demo/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/etl-demo/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/etl-demo/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/etl-demo/events", "assignees_url": "https://api.github.com/repos/dgadiraju/etl-demo/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/etl-demo/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/etl-demo/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/etl-demo/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/etl-demo/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/etl-demo/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/etl-demo/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/etl-demo/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/etl-demo/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/etl-demo/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/etl-demo/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/etl-demo/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/etl-demo/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/etl-demo/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/etl-demo/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/etl-demo/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/etl-demo/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/etl-demo/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/etl-demo/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/etl-demo/merges", "archive_url": "https://api.github.com/repos/dgadiraju/etl-demo/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/etl-demo/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/etl-demo/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/etl-demo/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/etl-demo/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/etl-demo/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/etl-demo/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/etl-demo/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/etl-demo/deployments", "created_at": "2020-06-28T18:37:08Z", "updated_at": "2021-12-26T10:53:17Z", "pushed_at": "2020-07-01T01:37:21Z", "git_url": "git://github.com/dgadiraju/etl-demo.git", "ssh_url": "git@github.com:dgadiraju/etl-demo.git", "clone_url": "https://github.com/dgadiraju/etl-demo.git", "svn_url": "https://github.com/dgadiraju/etl-demo", "homepage": null, "size": 7, "stargazers_count": 8, "watchers_count": 8, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 16, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 16, "open_issues": 0, "watchers": 8, "default_branch": "master" }, { "id": 353881187, "node_id": "MDEwOlJlcG9zaXRvcnkzNTM4ODExODc=", "name": "Fargate-ECSCluster-Cloudformation", "full_name": "dgadiraju/Fargate-ECSCluster-Cloudformation", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation", "description": null, "fork": true, "url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation", "forks_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/forks", "keys_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/events", "assignees_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/merges", "archive_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/deployments", "created_at": "2021-04-02T02:23:01Z", "updated_at": "2021-04-02T03:24:49Z", "pushed_at": "2021-04-02T03:24:47Z", "git_url": "git://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation.git", "ssh_url": "git@github.com:dgadiraju/Fargate-ECSCluster-Cloudformation.git", "clone_url": "https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation.git", "svn_url": "https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation", "homepage": null, "size": 17, "stargazers_count": 0, "watchers_count": 0, "language": "JavaScript", "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 292415110, "node_id": "MDEwOlJlcG9zaXRvcnkyOTI0MTUxMTA=", "name": "flask-biy-profile", "full_name": "dgadiraju/flask-biy-profile", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/flask-biy-profile", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/flask-biy-profile", "forks_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/forks", "keys_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/events", "assignees_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/merges", "archive_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/flask-biy-profile/deployments", "created_at": "2020-09-02T23:18:57Z", "updated_at": "2020-09-26T15:49:50Z", "pushed_at": "2020-09-02T23:19:22Z", "git_url": "git://github.com/dgadiraju/flask-biy-profile.git", "ssh_url": "git@github.com:dgadiraju/flask-biy-profile.git", "clone_url": "https://github.com/dgadiraju/flask-biy-profile.git", "svn_url": "https://github.com/dgadiraju/flask-biy-profile", "homepage": null, "size": 1847, "stargazers_count": 1, "watchers_count": 1, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 1, "default_branch": "master" }, { "id": 212606393, "node_id": "MDEwOlJlcG9zaXRvcnkyMTI2MDYzOTM=", "name": "gen-logs-python3", "full_name": "dgadiraju/gen-logs-python3", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/gen-logs-python3", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/gen-logs-python3", "forks_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/forks", "keys_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/events", "assignees_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/merges", "archive_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/gen-logs-python3/deployments", "created_at": "2019-10-03T14:54:04Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2019-10-28T13:15:10Z", "git_url": "git://github.com/dgadiraju/gen-logs-python3.git", "ssh_url": "git@github.com:dgadiraju/gen-logs-python3.git", "clone_url": "https://github.com/dgadiraju/gen-logs-python3.git", "svn_url": "https://github.com/dgadiraju/gen-logs-python3", "homepage": null, "size": 13, "stargazers_count": 1, "watchers_count": 1, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 6, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 6, "open_issues": 0, "watchers": 1, "default_branch": "master" }, { "id": 147047178, "node_id": "MDEwOlJlcG9zaXRvcnkxNDcwNDcxNzg=", "name": "gen_logs", "full_name": "dgadiraju/gen_logs", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/gen_logs", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/gen_logs", "forks_url": "https://api.github.com/repos/dgadiraju/gen_logs/forks", "keys_url": "https://api.github.com/repos/dgadiraju/gen_logs/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/gen_logs/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/gen_logs/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/gen_logs/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/gen_logs/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/gen_logs/events", "assignees_url": "https://api.github.com/repos/dgadiraju/gen_logs/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/gen_logs/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/gen_logs/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/gen_logs/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/gen_logs/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/gen_logs/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/gen_logs/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/gen_logs/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/gen_logs/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/gen_logs/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/gen_logs/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/gen_logs/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/gen_logs/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/gen_logs/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/gen_logs/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/gen_logs/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/gen_logs/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/gen_logs/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/gen_logs/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/gen_logs/merges", "archive_url": "https://api.github.com/repos/dgadiraju/gen_logs/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/gen_logs/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/gen_logs/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/gen_logs/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/gen_logs/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/gen_logs/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/gen_logs/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/gen_logs/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/gen_logs/deployments", "created_at": "2018-09-02T02:12:03Z", "updated_at": "2021-10-17T14:12:23Z", "pushed_at": "2018-09-19T13:30:23Z", "git_url": "git://github.com/dgadiraju/gen_logs.git", "ssh_url": "git@github.com:dgadiraju/gen_logs.git", "clone_url": "https://github.com/dgadiraju/gen_logs.git", "svn_url": "https://github.com/dgadiraju/gen_logs", "homepage": null, "size": 14, "stargazers_count": 8, "watchers_count": 8, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 16, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 16, "open_issues": 0, "watchers": 8, "default_branch": "master" }, { "id": 270203875, "node_id": "MDEwOlJlcG9zaXRvcnkyNzAyMDM4NzU=", "name": "gmail-puller", "full_name": "dgadiraju/gmail-puller", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/gmail-puller", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/gmail-puller", "forks_url": "https://api.github.com/repos/dgadiraju/gmail-puller/forks", "keys_url": "https://api.github.com/repos/dgadiraju/gmail-puller/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/gmail-puller/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/gmail-puller/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/gmail-puller/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/gmail-puller/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/gmail-puller/events", "assignees_url": "https://api.github.com/repos/dgadiraju/gmail-puller/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/gmail-puller/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/gmail-puller/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/gmail-puller/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/gmail-puller/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/gmail-puller/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/gmail-puller/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/gmail-puller/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/gmail-puller/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/gmail-puller/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/gmail-puller/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/gmail-puller/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/gmail-puller/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/gmail-puller/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/gmail-puller/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/gmail-puller/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/gmail-puller/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/gmail-puller/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/gmail-puller/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/gmail-puller/merges", "archive_url": "https://api.github.com/repos/dgadiraju/gmail-puller/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/gmail-puller/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/gmail-puller/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/gmail-puller/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/gmail-puller/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/gmail-puller/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/gmail-puller/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/gmail-puller/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/gmail-puller/deployments", "created_at": "2020-06-07T05:30:01Z", "updated_at": "2022-03-02T13:30:20Z", "pushed_at": "2022-02-11T03:17:11Z", "git_url": "git://github.com/dgadiraju/gmail-puller.git", "ssh_url": "git@github.com:dgadiraju/gmail-puller.git", "clone_url": "https://github.com/dgadiraju/gmail-puller.git", "svn_url": "https://github.com/dgadiraju/gmail-puller", "homepage": null, "size": 10, "stargazers_count": 3, "watchers_count": 3, "language": "Python", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 3, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 4, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 3, "open_issues": 4, "watchers": 3, "default_branch": "master" }, { "id": 312813752, "node_id": "MDEwOlJlcG9zaXRvcnkzMTI4MTM3NTI=", "name": "hr_db", "full_name": "dgadiraju/hr_db", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/hr_db", "description": "HR data and scripts.", "fork": false, "url": "https://api.github.com/repos/dgadiraju/hr_db", "forks_url": "https://api.github.com/repos/dgadiraju/hr_db/forks", "keys_url": "https://api.github.com/repos/dgadiraju/hr_db/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/hr_db/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/hr_db/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/hr_db/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/hr_db/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/hr_db/events", "assignees_url": "https://api.github.com/repos/dgadiraju/hr_db/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/hr_db/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/hr_db/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/hr_db/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/hr_db/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/hr_db/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/hr_db/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/hr_db/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/hr_db/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/hr_db/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/hr_db/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/hr_db/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/hr_db/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/hr_db/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/hr_db/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/hr_db/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/hr_db/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/hr_db/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/hr_db/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/hr_db/merges", "archive_url": "https://api.github.com/repos/dgadiraju/hr_db/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/hr_db/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/hr_db/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/hr_db/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/hr_db/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/hr_db/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/hr_db/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/hr_db/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/hr_db/deployments", "created_at": "2020-11-14T12:35:20Z", "updated_at": "2022-03-14T13:41:00Z", "pushed_at": "2020-11-14T15:07:06Z", "git_url": "git://github.com/dgadiraju/hr_db.git", "ssh_url": "git@github.com:dgadiraju/hr_db.git", "clone_url": "https://github.com/dgadiraju/hr_db.git", "svn_url": "https://github.com/dgadiraju/hr_db", "homepage": null, "size": 38, "stargazers_count": 3, "watchers_count": 3, "language": null, "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 5, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 5, "open_issues": 0, "watchers": 3, "default_branch": "main" }, { "id": 30879337, "node_id": "MDEwOlJlcG9zaXRvcnkzMDg3OTMzNw==", "name": "itversity", "full_name": "dgadiraju/itversity", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/itversity", "description": "To develop www.itversity.com", "fork": false, "url": "https://api.github.com/repos/dgadiraju/itversity", "forks_url": "https://api.github.com/repos/dgadiraju/itversity/forks", "keys_url": "https://api.github.com/repos/dgadiraju/itversity/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/itversity/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/itversity/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/itversity/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/itversity/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/itversity/events", "assignees_url": "https://api.github.com/repos/dgadiraju/itversity/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/itversity/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/itversity/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/itversity/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/itversity/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/itversity/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/itversity/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/itversity/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/itversity/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/itversity/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/itversity/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/itversity/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/itversity/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/itversity/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/itversity/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/itversity/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/itversity/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/itversity/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/itversity/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/itversity/merges", "archive_url": "https://api.github.com/repos/dgadiraju/itversity/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/itversity/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/itversity/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/itversity/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/itversity/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/itversity/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/itversity/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/itversity/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/itversity/deployments", "created_at": "2015-02-16T17:26:01Z", "updated_at": "2020-10-06T00:38:57Z", "pushed_at": "2015-02-16T17:26:40Z", "git_url": "git://github.com/dgadiraju/itversity.git", "ssh_url": "git@github.com:dgadiraju/itversity.git", "clone_url": "https://github.com/dgadiraju/itversity.git", "svn_url": "https://github.com/dgadiraju/itversity", "homepage": null, "size": 2620, "stargazers_count": 19, "watchers_count": 19, "language": "JavaScript", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 48, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 48, "open_issues": 0, "watchers": 19, "default_branch": "master" }, { "id": 248896311, "node_id": "MDEwOlJlcG9zaXRvcnkyNDg4OTYzMTE=", "name": "itversity-books", "full_name": "dgadiraju/itversity-books", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/itversity-books", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/itversity-books", "forks_url": "https://api.github.com/repos/dgadiraju/itversity-books/forks", "keys_url": "https://api.github.com/repos/dgadiraju/itversity-books/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/itversity-books/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/itversity-books/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/itversity-books/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/itversity-books/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/itversity-books/events", "assignees_url": "https://api.github.com/repos/dgadiraju/itversity-books/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/itversity-books/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/itversity-books/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/itversity-books/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/itversity-books/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/itversity-books/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/itversity-books/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/itversity-books/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/itversity-books/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/itversity-books/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/itversity-books/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/itversity-books/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/itversity-books/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/itversity-books/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/itversity-books/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/itversity-books/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/itversity-books/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/itversity-books/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/itversity-books/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/itversity-books/merges", "archive_url": "https://api.github.com/repos/dgadiraju/itversity-books/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/itversity-books/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/itversity-books/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/itversity-books/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/itversity-books/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/itversity-books/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/itversity-books/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/itversity-books/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/itversity-books/deployments", "created_at": "2020-03-21T03:00:59Z", "updated_at": "2022-02-21T05:10:03Z", "pushed_at": "2020-09-21T04:22:15Z", "git_url": "git://github.com/dgadiraju/itversity-books.git", "ssh_url": "git@github.com:dgadiraju/itversity-books.git", "clone_url": "https://github.com/dgadiraju/itversity-books.git", "svn_url": "https://github.com/dgadiraju/itversity-books", "homepage": null, "size": 3338, "stargazers_count": 100, "watchers_count": 100, "language": "Jupyter Notebook", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 136, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 2, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 136, "open_issues": 2, "watchers": 100, "default_branch": "master" }, { "id": 247371859, "node_id": "MDEwOlJlcG9zaXRvcnkyNDczNzE4NTk=", "name": "itversity-boxes", "full_name": "dgadiraju/itversity-boxes", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/itversity-boxes", "description": "Repository for all ITVersity Vagrant Boxes.", "fork": false, "url": "https://api.github.com/repos/dgadiraju/itversity-boxes", "forks_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/forks", "keys_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/events", "assignees_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/merges", "archive_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/itversity-boxes/deployments", "created_at": "2020-03-14T23:54:14Z", "updated_at": "2021-07-07T10:23:42Z", "pushed_at": "2020-04-23T18:34:00Z", "git_url": "git://github.com/dgadiraju/itversity-boxes.git", "ssh_url": "git@github.com:dgadiraju/itversity-boxes.git", "clone_url": "https://github.com/dgadiraju/itversity-boxes.git", "svn_url": "https://github.com/dgadiraju/itversity-boxes", "homepage": null, "size": 18, "stargazers_count": 29, "watchers_count": 29, "language": "Ruby", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 23, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 23, "open_issues": 0, "watchers": 29, "default_branch": "master" }, { "id": 185532816, "node_id": "MDEwOlJlcG9zaXRvcnkxODU1MzI4MTY=", "name": "java-spark-exercises", "full_name": "dgadiraju/java-spark-exercises", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/java-spark-exercises", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/java-spark-exercises", "forks_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/forks", "keys_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/events", "assignees_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/merges", "archive_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/java-spark-exercises/deployments", "created_at": "2019-05-08T05:15:37Z", "updated_at": "2020-04-19T04:05:17Z", "pushed_at": "2019-05-08T13:30:07Z", "git_url": "git://github.com/dgadiraju/java-spark-exercises.git", "ssh_url": "git@github.com:dgadiraju/java-spark-exercises.git", "clone_url": "https://github.com/dgadiraju/java-spark-exercises.git", "svn_url": "https://github.com/dgadiraju/java-spark-exercises", "homepage": null, "size": 5, "stargazers_count": 2, "watchers_count": 2, "language": "Java", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 5, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 5, "open_issues": 0, "watchers": 2, "default_branch": "master" }, { "id": 310510239, "node_id": "MDEwOlJlcG9zaXRvcnkzMTA1MTAyMzk=", "name": "jupyter-book", "full_name": "dgadiraju/jupyter-book", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/jupyter-book", "description": "Build interactive, publication-quality documents from Jupyter Notebooks", "fork": true, "url": "https://api.github.com/repos/dgadiraju/jupyter-book", "forks_url": "https://api.github.com/repos/dgadiraju/jupyter-book/forks", "keys_url": "https://api.github.com/repos/dgadiraju/jupyter-book/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/jupyter-book/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/jupyter-book/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/jupyter-book/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/jupyter-book/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/jupyter-book/events", "assignees_url": "https://api.github.com/repos/dgadiraju/jupyter-book/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/jupyter-book/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/jupyter-book/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/jupyter-book/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/jupyter-book/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/jupyter-book/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/jupyter-book/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/jupyter-book/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/jupyter-book/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/jupyter-book/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/jupyter-book/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/jupyter-book/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/jupyter-book/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/jupyter-book/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/jupyter-book/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/jupyter-book/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/jupyter-book/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/jupyter-book/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/jupyter-book/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/jupyter-book/merges", "archive_url": "https://api.github.com/repos/dgadiraju/jupyter-book/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/jupyter-book/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/jupyter-book/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/jupyter-book/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/jupyter-book/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/jupyter-book/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/jupyter-book/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/jupyter-book/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/jupyter-book/deployments", "created_at": "2020-11-06T06:22:43Z", "updated_at": "2020-11-06T06:22:45Z", "pushed_at": "2020-11-04T23:39:49Z", "git_url": "git://github.com/dgadiraju/jupyter-book.git", "ssh_url": "git@github.com:dgadiraju/jupyter-book.git", "clone_url": "https://github.com/dgadiraju/jupyter-book.git", "svn_url": "https://github.com/dgadiraju/jupyter-book", "homepage": "http://jupyterbook.org", "size": 65084, "stargazers_count": 0, "watchers_count": 0, "language": null, "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 2, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": { "key": "bsd-3-clause", "name": "BSD 3-Clause \"New\" or \"Revised\" License", "spdx_id": "BSD-3-Clause", "url": "https://api.github.com/licenses/bsd-3-clause", "node_id": "MDc6TGljZW5zZTU=" }, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 2, "open_issues": 0, "watchers": 0, "default_branch": "master" }, { "id": 143341196, "node_id": "MDEwOlJlcG9zaXRvcnkxNDMzNDExOTY=", "name": "jupyter-docker-stacks", "full_name": "dgadiraju/jupyter-docker-stacks", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/jupyter-docker-stacks", "description": "Opinionated stacks of ready-to-run Jupyter applications in Docker. Forked to add GPU capabilities.", "fork": true, "url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks", "forks_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/forks", "keys_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/events", "assignees_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/merges", "archive_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/deployments", "created_at": "2018-08-02T20:19:16Z", "updated_at": "2020-05-20T11:34:54Z", "pushed_at": "2018-02-07T02:43:50Z", "git_url": "git://github.com/dgadiraju/jupyter-docker-stacks.git", "ssh_url": "git@github.com:dgadiraju/jupyter-docker-stacks.git", "clone_url": "https://github.com/dgadiraju/jupyter-docker-stacks.git", "svn_url": "https://github.com/dgadiraju/jupyter-docker-stacks", "homepage": "", "size": 192, "stargazers_count": 3, "watchers_count": 3, "language": "Dockerfile", "has_issues": false, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 5, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": { "key": "other", "name": "Other", "spdx_id": "NOASSERTION", "url": null, "node_id": "MDc6TGljZW5zZTA=" }, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 5, "open_issues": 0, "watchers": 3, "default_branch": "master" }, { "id": 148713075, "node_id": "MDEwOlJlcG9zaXRvcnkxNDg3MTMwNzU=", "name": "kafka-ansible-roles-playbook", "full_name": "dgadiraju/kafka-ansible-roles-playbook", "private": false, "owner": { "login": "dgadiraju", "id": 6260409, "node_id": "MDQ6VXNlcjYyNjA0MDk=", "avatar_url": "https://avatars.githubusercontent.com/u/6260409?v=4", "gravatar_id": "", "url": "https://api.github.com/users/dgadiraju", "html_url": "https://github.com/dgadiraju", "followers_url": "https://api.github.com/users/dgadiraju/followers", "following_url": "https://api.github.com/users/dgadiraju/following{/other_user}", "gists_url": "https://api.github.com/users/dgadiraju/gists{/gist_id}", "starred_url": "https://api.github.com/users/dgadiraju/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dgadiraju/subscriptions", "organizations_url": "https://api.github.com/users/dgadiraju/orgs", "repos_url": "https://api.github.com/users/dgadiraju/repos", "events_url": "https://api.github.com/users/dgadiraju/events{/privacy}", "received_events_url": "https://api.github.com/users/dgadiraju/received_events", "type": "User", "site_admin": false }, "html_url": "https://github.com/dgadiraju/kafka-ansible-roles-playbook", "description": null, "fork": false, "url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook", "forks_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/forks", "keys_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/keys{/key_id}", "collaborators_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/collaborators{/collaborator}", "teams_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/teams", "hooks_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/hooks", "issue_events_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues/events{/number}", "events_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/events", "assignees_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/assignees{/user}", "branches_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/branches{/branch}", "tags_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/tags", "blobs_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/blobs{/sha}", "git_tags_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/tags{/sha}", "git_refs_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/refs{/sha}", "trees_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/trees{/sha}", "statuses_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/statuses/{sha}", "languages_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/languages", "stargazers_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/stargazers", "contributors_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/contributors", "subscribers_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/subscribers", "subscription_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/subscription", "commits_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/commits{/sha}", "git_commits_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/commits{/sha}", "comments_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/comments{/number}", "issue_comment_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues/comments{/number}", "contents_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/contents/{+path}", "compare_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/compare/{base}...{head}", "merges_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/merges", "archive_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/{archive_format}{/ref}", "downloads_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/downloads", "issues_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues{/number}", "pulls_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/pulls{/number}", "milestones_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/milestones{/number}", "notifications_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/notifications{?since,all,participating}", "labels_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/labels{/name}", "releases_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/releases{/id}", "deployments_url": "https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/deployments", "created_at": "2018-09-14T00:17:58Z", "updated_at": "2020-06-14T12:33:40Z", "pushed_at": "2018-09-29T07:25:01Z", "git_url": "git://github.com/dgadiraju/kafka-ansible-roles-playbook.git", "ssh_url": "git@github.com:dgadiraju/kafka-ansible-roles-playbook.git", "clone_url": "https://github.com/dgadiraju/kafka-ansible-roles-playbook.git", "svn_url": "https://github.com/dgadiraju/kafka-ansible-roles-playbook", "homepage": null, "size": 54473, "stargazers_count": 4, "watchers_count": 4, "language": "Shell", "has_issues": true, "has_projects": true, "has_downloads": true, "has_wiki": true, "has_pages": false, "forks_count": 13, "mirror_url": null, "archived": false, "disabled": false, "open_issues_count": 0, "license": null, "allow_forking": true, "is_template": false, "topics": [ ], "visibility": "public", "forks": 13, "open_issues": 0, "watchers": 4, "default_branch": "master" } ]
In [12]:
import requests
In [13]:
url = "https://api.github.com/users/dgadiraju/repos"
In [14]:
type(url)
Out[14]:
str
In [15]:
response = requests.get(url)
In [16]:
type(response)
Out[16]:
requests.models.Response
In [17]:
response.json()
Out[17]:
[{'id': 353113931, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTMxMTM5MzE=', 'name': 'airflow-dags', 'full_name': 'dgadiraju/airflow-dags', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/airflow-dags', 'description': None, 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/airflow-dags', 'forks_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/deployments', 'created_at': '2021-03-30T19:11:04Z', 'updated_at': '2021-03-30T20:51:57Z', 'pushed_at': '2021-03-30T20:51:55Z', 'git_url': 'git://github.com/dgadiraju/airflow-dags.git', 'ssh_url': 'git@github.com:dgadiraju/airflow-dags.git', 'clone_url': 'https://github.com/dgadiraju/airflow-dags.git', 'svn_url': 'https://github.com/dgadiraju/airflow-dags', 'homepage': None, 'size': 4, 'stargazers_count': 0, 'watchers_count': 0, 'language': 'Python', 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 353210198, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTMyMTAxOTg=', 'name': 'airflow-eks-config', 'full_name': 'dgadiraju/airflow-eks-config', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/airflow-eks-config', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config', 'forks_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-config/deployments', 'created_at': '2021-03-31T03:13:27Z', 'updated_at': '2021-03-31T21:06:21Z', 'pushed_at': '2021-04-01T02:38:18Z', 'git_url': 'git://github.com/dgadiraju/airflow-eks-config.git', 'ssh_url': 'git@github.com:dgadiraju/airflow-eks-config.git', 'clone_url': 'https://github.com/dgadiraju/airflow-eks-config.git', 'svn_url': 'https://github.com/dgadiraju/airflow-eks-config', 'homepage': None, 'size': 3, 'stargazers_count': 0, 'watchers_count': 0, 'language': None, 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 353486665, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTM0ODY2NjU=', 'name': 'airflow-eks-docker', 'full_name': 'dgadiraju/airflow-eks-docker', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/airflow-eks-docker', 'description': 'Airflow Docker image used in AWS EKS cluster', 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker', 'forks_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/airflow-eks-docker/deployments', 'created_at': '2021-03-31T20:50:23Z', 'updated_at': '2021-03-31T20:50:24Z', 'pushed_at': '2021-03-29T23:17:36Z', 'git_url': 'git://github.com/dgadiraju/airflow-eks-docker.git', 'ssh_url': 'git@github.com:dgadiraju/airflow-eks-docker.git', 'clone_url': 'https://github.com/dgadiraju/airflow-eks-docker.git', 'svn_url': 'https://github.com/dgadiraju/airflow-eks-docker', 'homepage': None, 'size': 64, 'stargazers_count': 0, 'watchers_count': 0, 'language': None, 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 0, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 0, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 65133088, 'node_id': 'MDEwOlJlcG9zaXRvcnk2NTEzMzA4OA==', 'name': 'bigdatalabs', 'full_name': 'dgadiraju/bigdatalabs', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/bigdatalabs', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/bigdatalabs', 'forks_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/bigdatalabs/deployments', 'created_at': '2016-08-07T12:54:39Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2016-08-07T12:54:39Z', 'git_url': 'git://github.com/dgadiraju/bigdatalabs.git', 'ssh_url': 'git@github.com:dgadiraju/bigdatalabs.git', 'clone_url': 'https://github.com/dgadiraju/bigdatalabs.git', 'svn_url': 'https://github.com/dgadiraju/bigdatalabs', 'homepage': None, 'size': 0, 'stargazers_count': 2, 'watchers_count': 2, 'language': None, 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 0, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 0, 'open_issues': 0, 'watchers': 2, 'default_branch': 'master'}, {'id': 163745250, 'node_id': 'MDEwOlJlcG9zaXRvcnkxNjM3NDUyNTA=', 'name': 'bypr', 'full_name': 'dgadiraju/bypr', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/bypr', 'description': 'Build your profile using react', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/bypr', 'forks_url': 'https://api.github.com/repos/dgadiraju/bypr/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/bypr/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/bypr/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/bypr/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/bypr/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/bypr/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/bypr/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/bypr/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/bypr/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/bypr/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/bypr/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/bypr/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/bypr/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/bypr/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/bypr/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/bypr/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/bypr/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/bypr/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/bypr/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/bypr/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/bypr/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/bypr/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/bypr/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/bypr/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/bypr/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/bypr/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/bypr/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/bypr/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/bypr/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/bypr/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/bypr/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/bypr/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/bypr/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/bypr/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/bypr/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/bypr/deployments', 'created_at': '2019-01-01T15:07:19Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2019-01-01T16:19:02Z', 'git_url': 'git://github.com/dgadiraju/bypr.git', 'ssh_url': 'git@github.com:dgadiraju/bypr.git', 'clone_url': 'https://github.com/dgadiraju/bypr.git', 'svn_url': 'https://github.com/dgadiraju/bypr', 'homepage': None, 'size': 188, 'stargazers_count': 1, 'watchers_count': 1, 'language': 'JavaScript', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 1, 'default_branch': 'master'}, {'id': 136827022, 'node_id': 'MDEwOlJlcG9zaXRvcnkxMzY4MjcwMjI=', 'name': 'ccdemo', 'full_name': 'dgadiraju/ccdemo', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/ccdemo', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/ccdemo', 'forks_url': 'https://api.github.com/repos/dgadiraju/ccdemo/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/ccdemo/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/ccdemo/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/ccdemo/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/ccdemo/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/ccdemo/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/ccdemo/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/ccdemo/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/ccdemo/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/ccdemo/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/ccdemo/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/ccdemo/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/ccdemo/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/ccdemo/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/ccdemo/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/ccdemo/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/ccdemo/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/ccdemo/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/ccdemo/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/ccdemo/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/ccdemo/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/ccdemo/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/ccdemo/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/ccdemo/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/ccdemo/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/ccdemo/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/ccdemo/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/ccdemo/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/ccdemo/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/ccdemo/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/ccdemo/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/ccdemo/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/ccdemo/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/ccdemo/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/ccdemo/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/ccdemo/deployments', 'created_at': '2018-06-10T16:47:26Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2018-06-17T15:34:18Z', 'git_url': 'git://github.com/dgadiraju/ccdemo.git', 'ssh_url': 'git@github.com:dgadiraju/ccdemo.git', 'clone_url': 'https://github.com/dgadiraju/ccdemo.git', 'svn_url': 'https://github.com/dgadiraju/ccdemo', 'homepage': None, 'size': 6, 'stargazers_count': 2, 'watchers_count': 2, 'language': 'Scala', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 9, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 9, 'open_issues': 0, 'watchers': 2, 'default_branch': 'master'}, {'id': 352789911, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTI3ODk5MTE=', 'name': 'charts', 'full_name': 'dgadiraju/charts', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/charts', 'description': 'the home of the stable/airflow Helm chart', 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/charts', 'forks_url': 'https://api.github.com/repos/dgadiraju/charts/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/charts/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/charts/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/charts/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/charts/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/charts/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/charts/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/charts/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/charts/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/charts/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/charts/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/charts/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/charts/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/charts/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/charts/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/charts/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/charts/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/charts/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/charts/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/charts/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/charts/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/charts/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/charts/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/charts/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/charts/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/charts/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/charts/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/charts/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/charts/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/charts/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/charts/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/charts/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/charts/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/charts/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/charts/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/charts/deployments', 'created_at': '2021-03-29T21:30:55Z', 'updated_at': '2021-03-29T21:30:56Z', 'pushed_at': '2021-03-29T15:47:10Z', 'git_url': 'git://github.com/dgadiraju/charts.git', 'ssh_url': 'git@github.com:dgadiraju/charts.git', 'clone_url': 'https://github.com/dgadiraju/charts.git', 'svn_url': 'https://github.com/dgadiraju/charts', 'homepage': '', 'size': 497, 'stargazers_count': 0, 'watchers_count': 0, 'language': None, 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': False, 'has_pages': False, 'forks_count': 1, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': {'key': 'apache-2.0', 'name': 'Apache License 2.0', 'spdx_id': 'Apache-2.0', 'url': 'https://api.github.com/licenses/apache-2.0', 'node_id': 'MDc6TGljZW5zZTI='}, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 1, 'open_issues': 0, 'watchers': 0, 'default_branch': 'main'}, {'id': 251401336, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNTE0MDEzMzY=', 'name': 'clive-demo', 'full_name': 'dgadiraju/clive-demo', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/clive-demo', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/clive-demo', 'forks_url': 'https://api.github.com/repos/dgadiraju/clive-demo/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/clive-demo/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/clive-demo/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/clive-demo/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/clive-demo/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/clive-demo/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/clive-demo/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/clive-demo/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/clive-demo/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/clive-demo/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/clive-demo/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/clive-demo/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/clive-demo/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/clive-demo/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/clive-demo/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/clive-demo/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/clive-demo/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/clive-demo/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/clive-demo/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/clive-demo/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/clive-demo/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/clive-demo/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/clive-demo/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/clive-demo/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/clive-demo/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/clive-demo/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/clive-demo/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/clive-demo/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/clive-demo/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/clive-demo/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/clive-demo/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/clive-demo/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/clive-demo/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/clive-demo/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/clive-demo/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/clive-demo/deployments', 'created_at': '2020-03-30T19:01:02Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2020-03-30T19:04:52Z', 'git_url': 'git://github.com/dgadiraju/clive-demo.git', 'ssh_url': 'git@github.com:dgadiraju/clive-demo.git', 'clone_url': 'https://github.com/dgadiraju/clive-demo.git', 'svn_url': 'https://github.com/dgadiraju/clive-demo', 'homepage': None, 'size': 2, 'stargazers_count': 1, 'watchers_count': 1, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 1, 'default_branch': 'master'}, {'id': 26467119, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNjQ2NzExOQ==', 'name': 'code', 'full_name': 'dgadiraju/code', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/code', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/code', 'forks_url': 'https://api.github.com/repos/dgadiraju/code/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/code/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/code/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/code/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/code/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/code/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/code/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/code/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/code/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/code/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/code/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/code/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/code/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/code/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/code/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/code/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/code/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/code/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/code/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/code/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/code/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/code/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/code/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/code/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/code/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/code/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/code/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/code/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/code/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/code/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/code/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/code/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/code/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/code/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/code/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/code/deployments', 'created_at': '2014-11-11T03:09:42Z', 'updated_at': '2022-02-09T12:16:27Z', 'pushed_at': '2022-02-09T22:31:16Z', 'git_url': 'git://github.com/dgadiraju/code.git', 'ssh_url': 'git@github.com:dgadiraju/code.git', 'clone_url': 'https://github.com/dgadiraju/code.git', 'svn_url': 'https://github.com/dgadiraju/code', 'homepage': None, 'size': 14408, 'stargazers_count': 180, 'watchers_count': 180, 'language': 'Java', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 591, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 14, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 591, 'open_issues': 14, 'watchers': 180, 'default_branch': 'master'}, {'id': 26652510, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNjY1MjUxMA==', 'name': 'data', 'full_name': 'dgadiraju/data', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/data', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/data', 'forks_url': 'https://api.github.com/repos/dgadiraju/data/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/data/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/data/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/data/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/data/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/data/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/data/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/data/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/data/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/data/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/data/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/data/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/data/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/data/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/data/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/data/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/data/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/data/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/data/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/data/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/data/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/data/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/data/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/data/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/data/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/data/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/data/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/data/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/data/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/data/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/data/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/data/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/data/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/data/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/data/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/data/deployments', 'created_at': '2014-11-14T18:49:35Z', 'updated_at': '2022-03-21T18:13:58Z', 'pushed_at': '2021-11-22T06:09:24Z', 'git_url': 'git://github.com/dgadiraju/data.git', 'ssh_url': 'git@github.com:dgadiraju/data.git', 'clone_url': 'https://github.com/dgadiraju/data.git', 'svn_url': 'https://github.com/dgadiraju/data', 'homepage': None, 'size': 287667, 'stargazers_count': 93, 'watchers_count': 93, 'language': None, 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 471, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 3, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 471, 'open_issues': 3, 'watchers': 93, 'default_branch': 'master'}, {'id': 406722917, 'node_id': 'MDEwOlJlcG9zaXRvcnk0MDY3MjI5MTc=', 'name': 'data-copier', 'full_name': 'dgadiraju/data-copier', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/data-copier', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/data-copier', 'forks_url': 'https://api.github.com/repos/dgadiraju/data-copier/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/data-copier/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/data-copier/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/data-copier/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/data-copier/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/data-copier/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/data-copier/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/data-copier/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/data-copier/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/data-copier/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/data-copier/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/data-copier/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/data-copier/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/data-copier/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/data-copier/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/data-copier/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/data-copier/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/data-copier/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/data-copier/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/data-copier/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/data-copier/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/data-copier/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/data-copier/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/data-copier/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/data-copier/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/data-copier/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/data-copier/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/data-copier/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/data-copier/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/data-copier/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/data-copier/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/data-copier/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/data-copier/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/data-copier/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/data-copier/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/data-copier/deployments', 'created_at': '2021-09-15T10:51:07Z', 'updated_at': '2022-01-05T18:55:29Z', 'pushed_at': '2021-11-18T00:56:17Z', 'git_url': 'git://github.com/dgadiraju/data-copier.git', 'ssh_url': 'git@github.com:dgadiraju/data-copier.git', 'clone_url': 'https://github.com/dgadiraju/data-copier.git', 'svn_url': 'https://github.com/dgadiraju/data-copier', 'homepage': None, 'size': 7, 'stargazers_count': 3, 'watchers_count': 3, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 0, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 0, 'open_issues': 0, 'watchers': 3, 'default_branch': 'main'}, {'id': 272314562, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNzIzMTQ1NjI=', 'name': 'data-copier-live', 'full_name': 'dgadiraju/data-copier-live', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/data-copier-live', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/data-copier-live', 'forks_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/data-copier-live/deployments', 'created_at': '2020-06-15T01:27:10Z', 'updated_at': '2021-08-27T22:27:43Z', 'pushed_at': '2020-07-01T04:52:25Z', 'git_url': 'git://github.com/dgadiraju/data-copier-live.git', 'ssh_url': 'git@github.com:dgadiraju/data-copier-live.git', 'clone_url': 'https://github.com/dgadiraju/data-copier-live.git', 'svn_url': 'https://github.com/dgadiraju/data-copier-live', 'homepage': None, 'size': 12, 'stargazers_count': 4, 'watchers_count': 4, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 15, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 15, 'open_issues': 0, 'watchers': 4, 'default_branch': 'master'}, {'id': 65733785, 'node_id': 'MDEwOlJlcG9zaXRvcnk2NTczMzc4NQ==', 'name': 'demomr', 'full_name': 'dgadiraju/demomr', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/demomr', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/demomr', 'forks_url': 'https://api.github.com/repos/dgadiraju/demomr/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/demomr/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/demomr/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/demomr/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/demomr/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/demomr/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/demomr/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/demomr/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/demomr/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/demomr/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/demomr/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/demomr/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/demomr/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/demomr/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/demomr/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/demomr/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/demomr/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/demomr/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/demomr/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/demomr/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/demomr/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/demomr/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/demomr/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/demomr/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/demomr/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/demomr/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/demomr/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/demomr/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/demomr/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/demomr/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/demomr/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/demomr/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/demomr/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/demomr/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/demomr/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/demomr/deployments', 'created_at': '2016-08-15T13:20:08Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2016-08-15T16:25:07Z', 'git_url': 'git://github.com/dgadiraju/demomr.git', 'ssh_url': 'git@github.com:dgadiraju/demomr.git', 'clone_url': 'https://github.com/dgadiraju/demomr.git', 'svn_url': 'https://github.com/dgadiraju/demomr', 'homepage': None, 'size': 51, 'stargazers_count': 1, 'watchers_count': 1, 'language': 'Java', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 8, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 8, 'open_issues': 0, 'watchers': 1, 'default_branch': 'master'}, {'id': 162808909, 'node_id': 'MDEwOlJlcG9zaXRvcnkxNjI4MDg5MDk=', 'name': 'dgadiraju.github.io', 'full_name': 'dgadiraju/dgadiraju.github.io', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/dgadiraju.github.io', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io', 'forks_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io/deployments', 'created_at': '2018-12-22T12:20:20Z', 'updated_at': '2020-10-22T04:21:12Z', 'pushed_at': '2018-12-23T07:58:37Z', 'git_url': 'git://github.com/dgadiraju/dgadiraju.github.io.git', 'ssh_url': 'git@github.com:dgadiraju/dgadiraju.github.io.git', 'clone_url': 'https://github.com/dgadiraju/dgadiraju.github.io.git', 'svn_url': 'https://github.com/dgadiraju/dgadiraju.github.io', 'homepage': None, 'size': 34, 'stargazers_count': 2, 'watchers_count': 2, 'language': 'HTML', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': True, 'forks_count': 3, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 3, 'open_issues': 0, 'watchers': 2, 'default_branch': 'master'}, {'id': 268008175, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNjgwMDgxNzU=', 'name': 'dockit', 'full_name': 'dgadiraju/dockit', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/dockit', 'description': 'Stream of repositories to learn web application development using Flask to manage Docker Containers', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/dockit', 'forks_url': 'https://api.github.com/repos/dgadiraju/dockit/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/dockit/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/dockit/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/dockit/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/dockit/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/dockit/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/dockit/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/dockit/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/dockit/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/dockit/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/dockit/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/dockit/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/dockit/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/dockit/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/dockit/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/dockit/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/dockit/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/dockit/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/dockit/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/dockit/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/dockit/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/dockit/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/dockit/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/dockit/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/dockit/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/dockit/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/dockit/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/dockit/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/dockit/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/dockit/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/dockit/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/dockit/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/dockit/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/dockit/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/dockit/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/dockit/deployments', 'created_at': '2020-05-30T04:21:29Z', 'updated_at': '2020-06-05T15:42:13Z', 'pushed_at': '2020-06-01T02:52:02Z', 'git_url': 'git://github.com/dgadiraju/dockit.git', 'ssh_url': 'git@github.com:dgadiraju/dockit.git', 'clone_url': 'https://github.com/dgadiraju/dockit.git', 'svn_url': 'https://github.com/dgadiraju/dockit', 'homepage': None, 'size': 41, 'stargazers_count': 6, 'watchers_count': 6, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 6, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 6, 'open_issues': 0, 'watchers': 6, 'default_branch': 'master'}, {'id': 268324236, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNjgzMjQyMzY=', 'name': 'dockit-core', 'full_name': 'dgadiraju/dockit-core', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/dockit-core', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/dockit-core', 'forks_url': 'https://api.github.com/repos/dgadiraju/dockit-core/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/dockit-core/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/dockit-core/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/dockit-core/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/dockit-core/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/dockit-core/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/dockit-core/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/dockit-core/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/dockit-core/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/dockit-core/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/dockit-core/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/dockit-core/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/dockit-core/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/dockit-core/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/dockit-core/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/dockit-core/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/dockit-core/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/dockit-core/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/dockit-core/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/dockit-core/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/dockit-core/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/dockit-core/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/dockit-core/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/dockit-core/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/dockit-core/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/dockit-core/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/dockit-core/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/dockit-core/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/dockit-core/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/dockit-core/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/dockit-core/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/dockit-core/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/dockit-core/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/dockit-core/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/dockit-core/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/dockit-core/deployments', 'created_at': '2020-05-31T16:58:09Z', 'updated_at': '2020-05-31T17:29:45Z', 'pushed_at': '2020-05-31T17:29:42Z', 'git_url': 'git://github.com/dgadiraju/dockit-core.git', 'ssh_url': 'git@github.com:dgadiraju/dockit-core.git', 'clone_url': 'https://github.com/dgadiraju/dockit-core.git', 'svn_url': 'https://github.com/dgadiraju/dockit-core', 'homepage': None, 'size': 4, 'stargazers_count': 0, 'watchers_count': 0, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 275646124, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNzU2NDYxMjQ=', 'name': 'etl-demo', 'full_name': 'dgadiraju/etl-demo', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/etl-demo', 'description': 'Python and AirFlow - Data Pipeline Orchestration', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/etl-demo', 'forks_url': 'https://api.github.com/repos/dgadiraju/etl-demo/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/etl-demo/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/etl-demo/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/etl-demo/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/etl-demo/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/etl-demo/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/etl-demo/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/etl-demo/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/etl-demo/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/etl-demo/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/etl-demo/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/etl-demo/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/etl-demo/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/etl-demo/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/etl-demo/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/etl-demo/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/etl-demo/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/etl-demo/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/etl-demo/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/etl-demo/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/etl-demo/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/etl-demo/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/etl-demo/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/etl-demo/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/etl-demo/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/etl-demo/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/etl-demo/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/etl-demo/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/etl-demo/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/etl-demo/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/etl-demo/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/etl-demo/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/etl-demo/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/etl-demo/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/etl-demo/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/etl-demo/deployments', 'created_at': '2020-06-28T18:37:08Z', 'updated_at': '2021-12-26T10:53:17Z', 'pushed_at': '2020-07-01T01:37:21Z', 'git_url': 'git://github.com/dgadiraju/etl-demo.git', 'ssh_url': 'git@github.com:dgadiraju/etl-demo.git', 'clone_url': 'https://github.com/dgadiraju/etl-demo.git', 'svn_url': 'https://github.com/dgadiraju/etl-demo', 'homepage': None, 'size': 7, 'stargazers_count': 8, 'watchers_count': 8, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 16, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 16, 'open_issues': 0, 'watchers': 8, 'default_branch': 'master'}, {'id': 353881187, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTM4ODExODc=', 'name': 'Fargate-ECSCluster-Cloudformation', 'full_name': 'dgadiraju/Fargate-ECSCluster-Cloudformation', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation', 'description': None, 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation', 'forks_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation/deployments', 'created_at': '2021-04-02T02:23:01Z', 'updated_at': '2021-04-02T03:24:49Z', 'pushed_at': '2021-04-02T03:24:47Z', 'git_url': 'git://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation.git', 'ssh_url': 'git@github.com:dgadiraju/Fargate-ECSCluster-Cloudformation.git', 'clone_url': 'https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation.git', 'svn_url': 'https://github.com/dgadiraju/Fargate-ECSCluster-Cloudformation', 'homepage': None, 'size': 17, 'stargazers_count': 0, 'watchers_count': 0, 'language': 'JavaScript', 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 292415110, 'node_id': 'MDEwOlJlcG9zaXRvcnkyOTI0MTUxMTA=', 'name': 'flask-biy-profile', 'full_name': 'dgadiraju/flask-biy-profile', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/flask-biy-profile', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile', 'forks_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/flask-biy-profile/deployments', 'created_at': '2020-09-02T23:18:57Z', 'updated_at': '2020-09-26T15:49:50Z', 'pushed_at': '2020-09-02T23:19:22Z', 'git_url': 'git://github.com/dgadiraju/flask-biy-profile.git', 'ssh_url': 'git@github.com:dgadiraju/flask-biy-profile.git', 'clone_url': 'https://github.com/dgadiraju/flask-biy-profile.git', 'svn_url': 'https://github.com/dgadiraju/flask-biy-profile', 'homepage': None, 'size': 1847, 'stargazers_count': 1, 'watchers_count': 1, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 1, 'default_branch': 'master'}, {'id': 212606393, 'node_id': 'MDEwOlJlcG9zaXRvcnkyMTI2MDYzOTM=', 'name': 'gen-logs-python3', 'full_name': 'dgadiraju/gen-logs-python3', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/gen-logs-python3', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3', 'forks_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/gen-logs-python3/deployments', 'created_at': '2019-10-03T14:54:04Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2019-10-28T13:15:10Z', 'git_url': 'git://github.com/dgadiraju/gen-logs-python3.git', 'ssh_url': 'git@github.com:dgadiraju/gen-logs-python3.git', 'clone_url': 'https://github.com/dgadiraju/gen-logs-python3.git', 'svn_url': 'https://github.com/dgadiraju/gen-logs-python3', 'homepage': None, 'size': 13, 'stargazers_count': 1, 'watchers_count': 1, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 6, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 6, 'open_issues': 0, 'watchers': 1, 'default_branch': 'master'}, {'id': 147047178, 'node_id': 'MDEwOlJlcG9zaXRvcnkxNDcwNDcxNzg=', 'name': 'gen_logs', 'full_name': 'dgadiraju/gen_logs', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/gen_logs', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/gen_logs', 'forks_url': 'https://api.github.com/repos/dgadiraju/gen_logs/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/gen_logs/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/gen_logs/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/gen_logs/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/gen_logs/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/gen_logs/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/gen_logs/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/gen_logs/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/gen_logs/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/gen_logs/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/gen_logs/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/gen_logs/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/gen_logs/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/gen_logs/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/gen_logs/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/gen_logs/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/gen_logs/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/gen_logs/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/gen_logs/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/gen_logs/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/gen_logs/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/gen_logs/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/gen_logs/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/gen_logs/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/gen_logs/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/gen_logs/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/gen_logs/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/gen_logs/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/gen_logs/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/gen_logs/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/gen_logs/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/gen_logs/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/gen_logs/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/gen_logs/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/gen_logs/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/gen_logs/deployments', 'created_at': '2018-09-02T02:12:03Z', 'updated_at': '2021-10-17T14:12:23Z', 'pushed_at': '2018-09-19T13:30:23Z', 'git_url': 'git://github.com/dgadiraju/gen_logs.git', 'ssh_url': 'git@github.com:dgadiraju/gen_logs.git', 'clone_url': 'https://github.com/dgadiraju/gen_logs.git', 'svn_url': 'https://github.com/dgadiraju/gen_logs', 'homepage': None, 'size': 14, 'stargazers_count': 8, 'watchers_count': 8, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 16, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 16, 'open_issues': 0, 'watchers': 8, 'default_branch': 'master'}, {'id': 270203875, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNzAyMDM4NzU=', 'name': 'gmail-puller', 'full_name': 'dgadiraju/gmail-puller', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/gmail-puller', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/gmail-puller', 'forks_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/gmail-puller/deployments', 'created_at': '2020-06-07T05:30:01Z', 'updated_at': '2022-03-02T13:30:20Z', 'pushed_at': '2022-02-11T03:17:11Z', 'git_url': 'git://github.com/dgadiraju/gmail-puller.git', 'ssh_url': 'git@github.com:dgadiraju/gmail-puller.git', 'clone_url': 'https://github.com/dgadiraju/gmail-puller.git', 'svn_url': 'https://github.com/dgadiraju/gmail-puller', 'homepage': None, 'size': 10, 'stargazers_count': 3, 'watchers_count': 3, 'language': 'Python', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 3, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 4, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 3, 'open_issues': 4, 'watchers': 3, 'default_branch': 'master'}, {'id': 312813752, 'node_id': 'MDEwOlJlcG9zaXRvcnkzMTI4MTM3NTI=', 'name': 'hr_db', 'full_name': 'dgadiraju/hr_db', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/hr_db', 'description': 'HR data and scripts.', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/hr_db', 'forks_url': 'https://api.github.com/repos/dgadiraju/hr_db/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/hr_db/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/hr_db/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/hr_db/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/hr_db/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/hr_db/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/hr_db/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/hr_db/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/hr_db/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/hr_db/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/hr_db/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/hr_db/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/hr_db/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/hr_db/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/hr_db/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/hr_db/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/hr_db/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/hr_db/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/hr_db/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/hr_db/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/hr_db/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/hr_db/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/hr_db/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/hr_db/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/hr_db/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/hr_db/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/hr_db/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/hr_db/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/hr_db/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/hr_db/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/hr_db/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/hr_db/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/hr_db/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/hr_db/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/hr_db/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/hr_db/deployments', 'created_at': '2020-11-14T12:35:20Z', 'updated_at': '2022-03-14T13:41:00Z', 'pushed_at': '2020-11-14T15:07:06Z', 'git_url': 'git://github.com/dgadiraju/hr_db.git', 'ssh_url': 'git@github.com:dgadiraju/hr_db.git', 'clone_url': 'https://github.com/dgadiraju/hr_db.git', 'svn_url': 'https://github.com/dgadiraju/hr_db', 'homepage': None, 'size': 38, 'stargazers_count': 3, 'watchers_count': 3, 'language': None, 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 5, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 5, 'open_issues': 0, 'watchers': 3, 'default_branch': 'main'}, {'id': 30879337, 'node_id': 'MDEwOlJlcG9zaXRvcnkzMDg3OTMzNw==', 'name': 'itversity', 'full_name': 'dgadiraju/itversity', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/itversity', 'description': 'To develop www.itversity.com', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/itversity', 'forks_url': 'https://api.github.com/repos/dgadiraju/itversity/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/itversity/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/itversity/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/itversity/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/itversity/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/itversity/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/itversity/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/itversity/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/itversity/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/itversity/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/itversity/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/itversity/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/itversity/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/itversity/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/itversity/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/itversity/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/itversity/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/itversity/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/itversity/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/itversity/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/itversity/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/itversity/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/itversity/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/itversity/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/itversity/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/itversity/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/itversity/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/itversity/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/itversity/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/itversity/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/itversity/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/itversity/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/itversity/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/itversity/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/itversity/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/itversity/deployments', 'created_at': '2015-02-16T17:26:01Z', 'updated_at': '2020-10-06T00:38:57Z', 'pushed_at': '2015-02-16T17:26:40Z', 'git_url': 'git://github.com/dgadiraju/itversity.git', 'ssh_url': 'git@github.com:dgadiraju/itversity.git', 'clone_url': 'https://github.com/dgadiraju/itversity.git', 'svn_url': 'https://github.com/dgadiraju/itversity', 'homepage': None, 'size': 2620, 'stargazers_count': 19, 'watchers_count': 19, 'language': 'JavaScript', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 48, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 48, 'open_issues': 0, 'watchers': 19, 'default_branch': 'master'}, {'id': 248896311, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNDg4OTYzMTE=', 'name': 'itversity-books', 'full_name': 'dgadiraju/itversity-books', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/itversity-books', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/itversity-books', 'forks_url': 'https://api.github.com/repos/dgadiraju/itversity-books/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/itversity-books/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/itversity-books/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/itversity-books/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/itversity-books/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/itversity-books/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/itversity-books/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/itversity-books/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/itversity-books/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/itversity-books/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/itversity-books/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/itversity-books/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/itversity-books/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/itversity-books/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/itversity-books/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/itversity-books/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/itversity-books/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/itversity-books/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/itversity-books/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/itversity-books/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/itversity-books/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/itversity-books/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/itversity-books/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/itversity-books/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/itversity-books/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/itversity-books/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/itversity-books/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/itversity-books/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/itversity-books/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/itversity-books/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/itversity-books/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/itversity-books/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/itversity-books/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/itversity-books/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/itversity-books/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/itversity-books/deployments', 'created_at': '2020-03-21T03:00:59Z', 'updated_at': '2022-02-21T05:10:03Z', 'pushed_at': '2020-09-21T04:22:15Z', 'git_url': 'git://github.com/dgadiraju/itversity-books.git', 'ssh_url': 'git@github.com:dgadiraju/itversity-books.git', 'clone_url': 'https://github.com/dgadiraju/itversity-books.git', 'svn_url': 'https://github.com/dgadiraju/itversity-books', 'homepage': None, 'size': 3338, 'stargazers_count': 100, 'watchers_count': 100, 'language': 'Jupyter Notebook', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 136, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 2, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 136, 'open_issues': 2, 'watchers': 100, 'default_branch': 'master'}, {'id': 247371859, 'node_id': 'MDEwOlJlcG9zaXRvcnkyNDczNzE4NTk=', 'name': 'itversity-boxes', 'full_name': 'dgadiraju/itversity-boxes', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/itversity-boxes', 'description': 'Repository for all ITVersity Vagrant Boxes.', 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/itversity-boxes', 'forks_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/itversity-boxes/deployments', 'created_at': '2020-03-14T23:54:14Z', 'updated_at': '2021-07-07T10:23:42Z', 'pushed_at': '2020-04-23T18:34:00Z', 'git_url': 'git://github.com/dgadiraju/itversity-boxes.git', 'ssh_url': 'git@github.com:dgadiraju/itversity-boxes.git', 'clone_url': 'https://github.com/dgadiraju/itversity-boxes.git', 'svn_url': 'https://github.com/dgadiraju/itversity-boxes', 'homepage': None, 'size': 18, 'stargazers_count': 29, 'watchers_count': 29, 'language': 'Ruby', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 23, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 23, 'open_issues': 0, 'watchers': 29, 'default_branch': 'master'}, {'id': 185532816, 'node_id': 'MDEwOlJlcG9zaXRvcnkxODU1MzI4MTY=', 'name': 'java-spark-exercises', 'full_name': 'dgadiraju/java-spark-exercises', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/java-spark-exercises', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises', 'forks_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/java-spark-exercises/deployments', 'created_at': '2019-05-08T05:15:37Z', 'updated_at': '2020-04-19T04:05:17Z', 'pushed_at': '2019-05-08T13:30:07Z', 'git_url': 'git://github.com/dgadiraju/java-spark-exercises.git', 'ssh_url': 'git@github.com:dgadiraju/java-spark-exercises.git', 'clone_url': 'https://github.com/dgadiraju/java-spark-exercises.git', 'svn_url': 'https://github.com/dgadiraju/java-spark-exercises', 'homepage': None, 'size': 5, 'stargazers_count': 2, 'watchers_count': 2, 'language': 'Java', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 5, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 5, 'open_issues': 0, 'watchers': 2, 'default_branch': 'master'}, {'id': 310510239, 'node_id': 'MDEwOlJlcG9zaXRvcnkzMTA1MTAyMzk=', 'name': 'jupyter-book', 'full_name': 'dgadiraju/jupyter-book', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/jupyter-book', 'description': 'Build interactive, publication-quality documents from Jupyter Notebooks', 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/jupyter-book', 'forks_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/jupyter-book/deployments', 'created_at': '2020-11-06T06:22:43Z', 'updated_at': '2020-11-06T06:22:45Z', 'pushed_at': '2020-11-04T23:39:49Z', 'git_url': 'git://github.com/dgadiraju/jupyter-book.git', 'ssh_url': 'git@github.com:dgadiraju/jupyter-book.git', 'clone_url': 'https://github.com/dgadiraju/jupyter-book.git', 'svn_url': 'https://github.com/dgadiraju/jupyter-book', 'homepage': 'http://jupyterbook.org', 'size': 65084, 'stargazers_count': 0, 'watchers_count': 0, 'language': None, 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': {'key': 'bsd-3-clause', 'name': 'BSD 3-Clause "New" or "Revised" License', 'spdx_id': 'BSD-3-Clause', 'url': 'https://api.github.com/licenses/bsd-3-clause', 'node_id': 'MDc6TGljZW5zZTU='}, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}, {'id': 143341196, 'node_id': 'MDEwOlJlcG9zaXRvcnkxNDMzNDExOTY=', 'name': 'jupyter-docker-stacks', 'full_name': 'dgadiraju/jupyter-docker-stacks', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/jupyter-docker-stacks', 'description': 'Opinionated stacks of ready-to-run Jupyter applications in Docker. Forked to add GPU capabilities.', 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks', 'forks_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks/deployments', 'created_at': '2018-08-02T20:19:16Z', 'updated_at': '2020-05-20T11:34:54Z', 'pushed_at': '2018-02-07T02:43:50Z', 'git_url': 'git://github.com/dgadiraju/jupyter-docker-stacks.git', 'ssh_url': 'git@github.com:dgadiraju/jupyter-docker-stacks.git', 'clone_url': 'https://github.com/dgadiraju/jupyter-docker-stacks.git', 'svn_url': 'https://github.com/dgadiraju/jupyter-docker-stacks', 'homepage': '', 'size': 192, 'stargazers_count': 3, 'watchers_count': 3, 'language': 'Dockerfile', 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 5, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='}, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 5, 'open_issues': 0, 'watchers': 3, 'default_branch': 'master'}, {'id': 148713075, 'node_id': 'MDEwOlJlcG9zaXRvcnkxNDg3MTMwNzU=', 'name': 'kafka-ansible-roles-playbook', 'full_name': 'dgadiraju/kafka-ansible-roles-playbook', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/kafka-ansible-roles-playbook', 'description': None, 'fork': False, 'url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook', 'forks_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook/deployments', 'created_at': '2018-09-14T00:17:58Z', 'updated_at': '2020-06-14T12:33:40Z', 'pushed_at': '2018-09-29T07:25:01Z', 'git_url': 'git://github.com/dgadiraju/kafka-ansible-roles-playbook.git', 'ssh_url': 'git@github.com:dgadiraju/kafka-ansible-roles-playbook.git', 'clone_url': 'https://github.com/dgadiraju/kafka-ansible-roles-playbook.git', 'svn_url': 'https://github.com/dgadiraju/kafka-ansible-roles-playbook', 'homepage': None, 'size': 54473, 'stargazers_count': 4, 'watchers_count': 4, 'language': 'Shell', 'has_issues': True, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 13, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 13, 'open_issues': 0, 'watchers': 4, 'default_branch': 'master'}]
In [18]:
repos = response.json()
In [19]:
type(repos)
Out[19]:
list
In [20]:
len(repos)
Out[20]:
30
In [21]:
repos[0]
Out[21]:
{'id': 353113931, 'node_id': 'MDEwOlJlcG9zaXRvcnkzNTMxMTM5MzE=', 'name': 'airflow-dags', 'full_name': 'dgadiraju/airflow-dags', 'private': False, 'owner': {'login': 'dgadiraju', 'id': 6260409, 'node_id': 'MDQ6VXNlcjYyNjA0MDk=', 'avatar_url': 'https://avatars.githubusercontent.com/u/6260409?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dgadiraju', 'html_url': 'https://github.com/dgadiraju', 'followers_url': 'https://api.github.com/users/dgadiraju/followers', 'following_url': 'https://api.github.com/users/dgadiraju/following{/other_user}', 'gists_url': 'https://api.github.com/users/dgadiraju/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dgadiraju/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dgadiraju/subscriptions', 'organizations_url': 'https://api.github.com/users/dgadiraju/orgs', 'repos_url': 'https://api.github.com/users/dgadiraju/repos', 'events_url': 'https://api.github.com/users/dgadiraju/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dgadiraju/received_events', 'type': 'User', 'site_admin': False}, 'html_url': 'https://github.com/dgadiraju/airflow-dags', 'description': None, 'fork': True, 'url': 'https://api.github.com/repos/dgadiraju/airflow-dags', 'forks_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/forks', 'keys_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/keys{/key_id}', 'collaborators_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/collaborators{/collaborator}', 'teams_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/teams', 'hooks_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/hooks', 'issue_events_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues/events{/number}', 'events_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/events', 'assignees_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/assignees{/user}', 'branches_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/branches{/branch}', 'tags_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/tags', 'blobs_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/blobs{/sha}', 'git_tags_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/tags{/sha}', 'git_refs_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/refs{/sha}', 'trees_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/trees{/sha}', 'statuses_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/statuses/{sha}', 'languages_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/languages', 'stargazers_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/stargazers', 'contributors_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/contributors', 'subscribers_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/subscribers', 'subscription_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/subscription', 'commits_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/commits{/sha}', 'git_commits_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/git/commits{/sha}', 'comments_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/comments{/number}', 'issue_comment_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues/comments{/number}', 'contents_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/contents/{+path}', 'compare_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/compare/{base}...{head}', 'merges_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/merges', 'archive_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/{archive_format}{/ref}', 'downloads_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/downloads', 'issues_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/issues{/number}', 'pulls_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/pulls{/number}', 'milestones_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/milestones{/number}', 'notifications_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/notifications{?since,all,participating}', 'labels_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/labels{/name}', 'releases_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/releases{/id}', 'deployments_url': 'https://api.github.com/repos/dgadiraju/airflow-dags/deployments', 'created_at': '2021-03-30T19:11:04Z', 'updated_at': '2021-03-30T20:51:57Z', 'pushed_at': '2021-03-30T20:51:55Z', 'git_url': 'git://github.com/dgadiraju/airflow-dags.git', 'ssh_url': 'git@github.com:dgadiraju/airflow-dags.git', 'clone_url': 'https://github.com/dgadiraju/airflow-dags.git', 'svn_url': 'https://github.com/dgadiraju/airflow-dags', 'homepage': None, 'size': 4, 'stargazers_count': 0, 'watchers_count': 0, 'language': 'Python', 'has_issues': False, 'has_projects': True, 'has_downloads': True, 'has_wiki': True, 'has_pages': False, 'forks_count': 2, 'mirror_url': None, 'archived': False, 'disabled': False, 'open_issues_count': 0, 'license': None, 'allow_forking': True, 'is_template': False, 'topics': [], 'visibility': 'public', 'forks': 2, 'open_issues': 0, 'watchers': 0, 'default_branch': 'master'}
In [22]:
# Get names of the repos
list(map(lambda repo: repo['name'], repos))
Out[22]:
['airflow-dags', 'airflow-eks-config', 'airflow-eks-docker', 'bigdatalabs', 'bypr', 'ccdemo', 'charts', 'clive-demo', 'code', 'data', 'data-copier', 'data-copier-live', 'demomr', 'dgadiraju.github.io', 'dockit', 'dockit-core', 'etl-demo', 'Fargate-ECSCluster-Cloudformation', 'flask-biy-profile', 'gen-logs-python3', 'gen_logs', 'gmail-puller', 'hr_db', 'itversity', 'itversity-books', 'itversity-boxes', 'java-spark-exercises', 'jupyter-book', 'jupyter-docker-stacks', 'kafka-ansible-roles-playbook']
In [23]:
list(map(lambda repo: (repo['name'], repo['url']), repos))
Out[23]:
[('airflow-dags', 'https://api.github.com/repos/dgadiraju/airflow-dags'), ('airflow-eks-config', 'https://api.github.com/repos/dgadiraju/airflow-eks-config'), ('airflow-eks-docker', 'https://api.github.com/repos/dgadiraju/airflow-eks-docker'), ('bigdatalabs', 'https://api.github.com/repos/dgadiraju/bigdatalabs'), ('bypr', 'https://api.github.com/repos/dgadiraju/bypr'), ('ccdemo', 'https://api.github.com/repos/dgadiraju/ccdemo'), ('charts', 'https://api.github.com/repos/dgadiraju/charts'), ('clive-demo', 'https://api.github.com/repos/dgadiraju/clive-demo'), ('code', 'https://api.github.com/repos/dgadiraju/code'), ('data', 'https://api.github.com/repos/dgadiraju/data'), ('data-copier', 'https://api.github.com/repos/dgadiraju/data-copier'), ('data-copier-live', 'https://api.github.com/repos/dgadiraju/data-copier-live'), ('demomr', 'https://api.github.com/repos/dgadiraju/demomr'), ('dgadiraju.github.io', 'https://api.github.com/repos/dgadiraju/dgadiraju.github.io'), ('dockit', 'https://api.github.com/repos/dgadiraju/dockit'), ('dockit-core', 'https://api.github.com/repos/dgadiraju/dockit-core'), ('etl-demo', 'https://api.github.com/repos/dgadiraju/etl-demo'), ('Fargate-ECSCluster-Cloudformation', 'https://api.github.com/repos/dgadiraju/Fargate-ECSCluster-Cloudformation'), ('flask-biy-profile', 'https://api.github.com/repos/dgadiraju/flask-biy-profile'), ('gen-logs-python3', 'https://api.github.com/repos/dgadiraju/gen-logs-python3'), ('gen_logs', 'https://api.github.com/repos/dgadiraju/gen_logs'), ('gmail-puller', 'https://api.github.com/repos/dgadiraju/gmail-puller'), ('hr_db', 'https://api.github.com/repos/dgadiraju/hr_db'), ('itversity', 'https://api.github.com/repos/dgadiraju/itversity'), ('itversity-books', 'https://api.github.com/repos/dgadiraju/itversity-books'), ('itversity-boxes', 'https://api.github.com/repos/dgadiraju/itversity-boxes'), ('java-spark-exercises', 'https://api.github.com/repos/dgadiraju/java-spark-exercises'), ('jupyter-book', 'https://api.github.com/repos/dgadiraju/jupyter-book'), ('jupyter-docker-stacks', 'https://api.github.com/repos/dgadiraju/jupyter-docker-stacks'), ('kafka-ansible-roles-playbook', 'https://api.github.com/repos/dgadiraju/kafka-ansible-roles-playbook')]
]