Analyzing Github Data with JupySQL + DuckDB#

JupySQL and DuckDB have many use cases. Here, let’s query the Github REST API to run some analysis using these tools.

%pip install jupysql duckdb duckdb-engine rich --quiet
Hide code cell output
Note: you may need to restart the kernel to use updated packages.

Pulling from Github API#

First, let’s pull information on repositories relating to ‘Jupyter’ from the Github API. Some operations may require a token, but accessing them is very simple if you have a Github account. More information on authentication can be found here. Our query will pull any repository relating to Jupyter, sorted by most to least stars.

import requests
import json
from pathlib import Path

res = requests.get(
    "https://api.github.com/search/repositories?q=jupyter&sort=stars&order=desc",
)

We then parse the information pulled from the API into a JSON format that we can run analysis on with JupySQL. We also need to save it locally as a .json file. Let’s make it easier by only dumping the ‘items’ array.

parsed = res.json()

_ = Path("jupyterdata.json").write_text(json.dumps(parsed["items"], indent=4))

Querying JSON File#

Let’s get some information on our first result. Load the extension and start a DuckDB in-memory database:

%load_ext sql
%sql duckdb://

Looking at our .json file, we have information on thousands of repositories. To start, let’s load information on our results.

%%sql
SELECT *
FROM read_json_auto('jupyterdata.json')
Hide code cell output
*  duckdb://
Done.
id node_id name full_name private owner html_url description fork url forks_url keys_url collaborators_url teams_url hooks_url issue_events_url events_url assignees_url branches_url tags_url blobs_url git_tags_url git_refs_url trees_url statuses_url languages_url stargazers_url contributors_url subscribers_url subscription_url commits_url git_commits_url comments_url issue_comment_url contents_url compare_url merges_url archive_url downloads_url issues_url pulls_url milestones_url notifications_url labels_url releases_url deployments_url created_at updated_at pushed_at git_url ssh_url clone_url svn_url homepage size stargazers_count watchers_count language has_issues has_projects has_downloads has_wiki has_pages has_discussions forks_count mirror_url archived disabled open_issues_count license allow_forking is_template web_commit_signoff_required topics visibility forks open_issues watchers default_branch score
65388917 MDEwOlJlcG9zaXRvcnk2NTM4ODkxNw== PythonDataScienceHandbook jakevdp/PythonDataScienceHandbook False {'login': 'jakevdp', 'id': 781659, 'node_id': 'MDQ6VXNlcjc4MTY1OQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/781659?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jakevdp', 'html_url': 'https://github.com/jakevdp', 'followers_url': 'https://api.github.com/users/jakevdp/followers', 'following_url': 'https://api.github.com/users/jakevdp/following{/other_user}', 'gists_url': 'https://api.github.com/users/jakevdp/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jakevdp/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jakevdp/subscriptions', 'organizations_url': 'https://api.github.com/users/jakevdp/orgs', 'repos_url': 'https://api.github.com/users/jakevdp/repos', 'events_url': 'https://api.github.com/users/jakevdp/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jakevdp/received_events', 'type': 'User', 'site_admin': False} https://github.com/jakevdp/PythonDataScienceHandbook Python Data Science Handbook: full text in Jupyter Notebooks False https://api.github.com/repos/jakevdp/PythonDataScienceHandbook https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/forks https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/keys{/key_id} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/collaborators{/collaborator} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/teams https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/hooks https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/issues/events{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/events https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/assignees{/user} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/branches{/branch} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/tags https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/git/blobs{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/git/tags{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/git/refs{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/git/trees{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/statuses/{sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/languages https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/stargazers https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/contributors https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/subscribers https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/subscription https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/commits{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/git/commits{/sha} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/comments{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/issues/comments{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/contents/{+path} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/compare/{base}...{head} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/merges https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/{archive_format}{/ref} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/downloads https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/issues{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/pulls{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/milestones{/number} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/notifications{?since,all,participating} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/labels{/name} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/releases{/id} https://api.github.com/repos/jakevdp/PythonDataScienceHandbook/deployments 2016-08-10 14:24:36 2023-04-03 10:38:52 2023-04-01 06:45:30 git://github.com/jakevdp/PythonDataScienceHandbook.git git@github.com:jakevdp/PythonDataScienceHandbook.git https://github.com/jakevdp/PythonDataScienceHandbook.git https://github.com/jakevdp/PythonDataScienceHandbook http://jakevdp.github.io/PythonDataScienceHandbook 34684 37971 37971 Jupyter Notebook True True True True True False 16752 None False False 192 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['jupyter-notebook', 'matplotlib', 'numpy', 'pandas', 'python', 'scikit-learn'] public 16752 192 37971 master 1.0
164554832 MDEwOlJlcG9zaXRvcnkxNjQ1NTQ4MzI= handson-ml2 ageron/handson-ml2 False {'login': 'ageron', 'id': 76661, 'node_id': 'MDQ6VXNlcjc2NjYx', 'avatar_url': 'https://avatars.githubusercontent.com/u/76661?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/ageron', 'html_url': 'https://github.com/ageron', 'followers_url': 'https://api.github.com/users/ageron/followers', 'following_url': 'https://api.github.com/users/ageron/following{/other_user}', 'gists_url': 'https://api.github.com/users/ageron/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/ageron/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/ageron/subscriptions', 'organizations_url': 'https://api.github.com/users/ageron/orgs', 'repos_url': 'https://api.github.com/users/ageron/repos', 'events_url': 'https://api.github.com/users/ageron/events{/privacy}', 'received_events_url': 'https://api.github.com/users/ageron/received_events', 'type': 'User', 'site_admin': False} https://github.com/ageron/handson-ml2 A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2. False https://api.github.com/repos/ageron/handson-ml2 https://api.github.com/repos/ageron/handson-ml2/forks https://api.github.com/repos/ageron/handson-ml2/keys{/key_id} https://api.github.com/repos/ageron/handson-ml2/collaborators{/collaborator} https://api.github.com/repos/ageron/handson-ml2/teams https://api.github.com/repos/ageron/handson-ml2/hooks https://api.github.com/repos/ageron/handson-ml2/issues/events{/number} https://api.github.com/repos/ageron/handson-ml2/events https://api.github.com/repos/ageron/handson-ml2/assignees{/user} https://api.github.com/repos/ageron/handson-ml2/branches{/branch} https://api.github.com/repos/ageron/handson-ml2/tags https://api.github.com/repos/ageron/handson-ml2/git/blobs{/sha} https://api.github.com/repos/ageron/handson-ml2/git/tags{/sha} https://api.github.com/repos/ageron/handson-ml2/git/refs{/sha} https://api.github.com/repos/ageron/handson-ml2/git/trees{/sha} https://api.github.com/repos/ageron/handson-ml2/statuses/{sha} https://api.github.com/repos/ageron/handson-ml2/languages https://api.github.com/repos/ageron/handson-ml2/stargazers https://api.github.com/repos/ageron/handson-ml2/contributors https://api.github.com/repos/ageron/handson-ml2/subscribers https://api.github.com/repos/ageron/handson-ml2/subscription https://api.github.com/repos/ageron/handson-ml2/commits{/sha} https://api.github.com/repos/ageron/handson-ml2/git/commits{/sha} https://api.github.com/repos/ageron/handson-ml2/comments{/number} https://api.github.com/repos/ageron/handson-ml2/issues/comments{/number} https://api.github.com/repos/ageron/handson-ml2/contents/{+path} https://api.github.com/repos/ageron/handson-ml2/compare/{base}...{head} https://api.github.com/repos/ageron/handson-ml2/merges https://api.github.com/repos/ageron/handson-ml2/{archive_format}{/ref} https://api.github.com/repos/ageron/handson-ml2/downloads https://api.github.com/repos/ageron/handson-ml2/issues{/number} https://api.github.com/repos/ageron/handson-ml2/pulls{/number} https://api.github.com/repos/ageron/handson-ml2/milestones{/number} https://api.github.com/repos/ageron/handson-ml2/notifications{?since,all,participating} https://api.github.com/repos/ageron/handson-ml2/labels{/name} https://api.github.com/repos/ageron/handson-ml2/releases{/id} https://api.github.com/repos/ageron/handson-ml2/deployments 2019-01-08 03:49:07 2023-04-03 12:04:55 2023-03-06 01:58:54 git://github.com/ageron/handson-ml2.git git@github.com:ageron/handson-ml2.git https://github.com/ageron/handson-ml2.git https://github.com/ageron/handson-ml2 None 154110 24454 24454 Jupyter Notebook True True True True False False 11778 None False False 194 {'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='} True False False [] public 11778 194 24454 master 1.0
36804486 MDEwOlJlcG9zaXRvcnkzNjgwNDQ4Ng== tqdm tqdm/tqdm False {'login': 'tqdm', 'id': 12731565, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjEyNzMxNTY1', 'avatar_url': 'https://avatars.githubusercontent.com/u/12731565?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/tqdm', 'html_url': 'https://github.com/tqdm', 'followers_url': 'https://api.github.com/users/tqdm/followers', 'following_url': 'https://api.github.com/users/tqdm/following{/other_user}', 'gists_url': 'https://api.github.com/users/tqdm/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/tqdm/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/tqdm/subscriptions', 'organizations_url': 'https://api.github.com/users/tqdm/orgs', 'repos_url': 'https://api.github.com/users/tqdm/repos', 'events_url': 'https://api.github.com/users/tqdm/events{/privacy}', 'received_events_url': 'https://api.github.com/users/tqdm/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/tqdm/tqdm A Fast, Extensible Progress Bar for Python and CLI False https://api.github.com/repos/tqdm/tqdm https://api.github.com/repos/tqdm/tqdm/forks https://api.github.com/repos/tqdm/tqdm/keys{/key_id} https://api.github.com/repos/tqdm/tqdm/collaborators{/collaborator} https://api.github.com/repos/tqdm/tqdm/teams https://api.github.com/repos/tqdm/tqdm/hooks https://api.github.com/repos/tqdm/tqdm/issues/events{/number} https://api.github.com/repos/tqdm/tqdm/events https://api.github.com/repos/tqdm/tqdm/assignees{/user} https://api.github.com/repos/tqdm/tqdm/branches{/branch} https://api.github.com/repos/tqdm/tqdm/tags https://api.github.com/repos/tqdm/tqdm/git/blobs{/sha} https://api.github.com/repos/tqdm/tqdm/git/tags{/sha} https://api.github.com/repos/tqdm/tqdm/git/refs{/sha} https://api.github.com/repos/tqdm/tqdm/git/trees{/sha} https://api.github.com/repos/tqdm/tqdm/statuses/{sha} https://api.github.com/repos/tqdm/tqdm/languages https://api.github.com/repos/tqdm/tqdm/stargazers https://api.github.com/repos/tqdm/tqdm/contributors https://api.github.com/repos/tqdm/tqdm/subscribers https://api.github.com/repos/tqdm/tqdm/subscription https://api.github.com/repos/tqdm/tqdm/commits{/sha} https://api.github.com/repos/tqdm/tqdm/git/commits{/sha} https://api.github.com/repos/tqdm/tqdm/comments{/number} https://api.github.com/repos/tqdm/tqdm/issues/comments{/number} https://api.github.com/repos/tqdm/tqdm/contents/{+path} https://api.github.com/repos/tqdm/tqdm/compare/{base}...{head} https://api.github.com/repos/tqdm/tqdm/merges https://api.github.com/repos/tqdm/tqdm/{archive_format}{/ref} https://api.github.com/repos/tqdm/tqdm/downloads https://api.github.com/repos/tqdm/tqdm/issues{/number} https://api.github.com/repos/tqdm/tqdm/pulls{/number} https://api.github.com/repos/tqdm/tqdm/milestones{/number} https://api.github.com/repos/tqdm/tqdm/notifications{?since,all,participating} https://api.github.com/repos/tqdm/tqdm/labels{/name} https://api.github.com/repos/tqdm/tqdm/releases{/id} https://api.github.com/repos/tqdm/tqdm/deployments 2015-06-03 13:13:14 2023-04-03 13:50:10 2023-04-02 02:23:07 git://github.com/tqdm/tqdm.git git@github.com:tqdm/tqdm.git https://github.com/tqdm/tqdm.git https://github.com/tqdm/tqdm https://tqdm.github.io 5878 24400 24400 Python True True True True True True 1258 None False False 435 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['cli', 'closember', 'console', 'discord', 'gui', 'jupyter', 'keras', 'meter', 'pandas', 'parallel', 'progress', 'progress-bar', 'progressbar', 'progressmeter', 'python', 'rate', 'telegram', 'terminal', 'time', 'utilities'] public 1258 435 24400 master 1.0
155662306 MDEwOlJlcG9zaXRvcnkxNTU2NjIzMDY= homemade-machine-learning trekhleb/homemade-machine-learning False {'login': 'trekhleb', 'id': 3000285, 'node_id': 'MDQ6VXNlcjMwMDAyODU=', 'avatar_url': 'https://avatars.githubusercontent.com/u/3000285?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/trekhleb', 'html_url': 'https://github.com/trekhleb', 'followers_url': 'https://api.github.com/users/trekhleb/followers', 'following_url': 'https://api.github.com/users/trekhleb/following{/other_user}', 'gists_url': 'https://api.github.com/users/trekhleb/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/trekhleb/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/trekhleb/subscriptions', 'organizations_url': 'https://api.github.com/users/trekhleb/orgs', 'repos_url': 'https://api.github.com/users/trekhleb/repos', 'events_url': 'https://api.github.com/users/trekhleb/events{/privacy}', 'received_events_url': 'https://api.github.com/users/trekhleb/received_events', 'type': 'User', 'site_admin': False} https://github.com/trekhleb/homemade-machine-learning 🤖 Python examples of popular machine learning algorithms with interactive Jupyter demos and math being explained False https://api.github.com/repos/trekhleb/homemade-machine-learning https://api.github.com/repos/trekhleb/homemade-machine-learning/forks https://api.github.com/repos/trekhleb/homemade-machine-learning/keys{/key_id} https://api.github.com/repos/trekhleb/homemade-machine-learning/collaborators{/collaborator} https://api.github.com/repos/trekhleb/homemade-machine-learning/teams https://api.github.com/repos/trekhleb/homemade-machine-learning/hooks https://api.github.com/repos/trekhleb/homemade-machine-learning/issues/events{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/events https://api.github.com/repos/trekhleb/homemade-machine-learning/assignees{/user} https://api.github.com/repos/trekhleb/homemade-machine-learning/branches{/branch} https://api.github.com/repos/trekhleb/homemade-machine-learning/tags https://api.github.com/repos/trekhleb/homemade-machine-learning/git/blobs{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/git/tags{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/git/refs{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/git/trees{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/statuses/{sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/languages https://api.github.com/repos/trekhleb/homemade-machine-learning/stargazers https://api.github.com/repos/trekhleb/homemade-machine-learning/contributors https://api.github.com/repos/trekhleb/homemade-machine-learning/subscribers https://api.github.com/repos/trekhleb/homemade-machine-learning/subscription https://api.github.com/repos/trekhleb/homemade-machine-learning/commits{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/git/commits{/sha} https://api.github.com/repos/trekhleb/homemade-machine-learning/comments{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/issues/comments{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/contents/{+path} https://api.github.com/repos/trekhleb/homemade-machine-learning/compare/{base}...{head} https://api.github.com/repos/trekhleb/homemade-machine-learning/merges https://api.github.com/repos/trekhleb/homemade-machine-learning/{archive_format}{/ref} https://api.github.com/repos/trekhleb/homemade-machine-learning/downloads https://api.github.com/repos/trekhleb/homemade-machine-learning/issues{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/pulls{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/milestones{/number} https://api.github.com/repos/trekhleb/homemade-machine-learning/notifications{?since,all,participating} https://api.github.com/repos/trekhleb/homemade-machine-learning/labels{/name} https://api.github.com/repos/trekhleb/homemade-machine-learning/releases{/id} https://api.github.com/repos/trekhleb/homemade-machine-learning/deployments 2018-11-01 04:34:19 2023-04-03 13:14:56 2022-10-21 20:22:13 git://github.com/trekhleb/homemade-machine-learning.git git@github.com:trekhleb/homemade-machine-learning.git https://github.com/trekhleb/homemade-machine-learning.git https://github.com/trekhleb/homemade-machine-learning 14829 21103 21103 Jupyter Notebook True False True False False False 3879 None False False 22 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['algorithm', 'jupyter', 'jupyter-notebook', 'machine-learning', 'machine-learning-algorithms', 'machinelearning', 'python'] public 3879 22 21103 master 1.0
33702544 MDEwOlJlcG9zaXRvcnkzMzcwMjU0NA== dash plotly/dash False {'login': 'plotly', 'id': 5997976, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjU5OTc5NzY=', 'avatar_url': 'https://avatars.githubusercontent.com/u/5997976?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/plotly', 'html_url': 'https://github.com/plotly', 'followers_url': 'https://api.github.com/users/plotly/followers', 'following_url': 'https://api.github.com/users/plotly/following{/other_user}', 'gists_url': 'https://api.github.com/users/plotly/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/plotly/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/plotly/subscriptions', 'organizations_url': 'https://api.github.com/users/plotly/orgs', 'repos_url': 'https://api.github.com/users/plotly/repos', 'events_url': 'https://api.github.com/users/plotly/events{/privacy}', 'received_events_url': 'https://api.github.com/users/plotly/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/plotly/dash Data Apps & Dashboards for Python. No JavaScript Required. False https://api.github.com/repos/plotly/dash https://api.github.com/repos/plotly/dash/forks https://api.github.com/repos/plotly/dash/keys{/key_id} https://api.github.com/repos/plotly/dash/collaborators{/collaborator} https://api.github.com/repos/plotly/dash/teams https://api.github.com/repos/plotly/dash/hooks https://api.github.com/repos/plotly/dash/issues/events{/number} https://api.github.com/repos/plotly/dash/events https://api.github.com/repos/plotly/dash/assignees{/user} https://api.github.com/repos/plotly/dash/branches{/branch} https://api.github.com/repos/plotly/dash/tags https://api.github.com/repos/plotly/dash/git/blobs{/sha} https://api.github.com/repos/plotly/dash/git/tags{/sha} https://api.github.com/repos/plotly/dash/git/refs{/sha} https://api.github.com/repos/plotly/dash/git/trees{/sha} https://api.github.com/repos/plotly/dash/statuses/{sha} https://api.github.com/repos/plotly/dash/languages https://api.github.com/repos/plotly/dash/stargazers https://api.github.com/repos/plotly/dash/contributors https://api.github.com/repos/plotly/dash/subscribers https://api.github.com/repos/plotly/dash/subscription https://api.github.com/repos/plotly/dash/commits{/sha} https://api.github.com/repos/plotly/dash/git/commits{/sha} https://api.github.com/repos/plotly/dash/comments{/number} https://api.github.com/repos/plotly/dash/issues/comments{/number} https://api.github.com/repos/plotly/dash/contents/{+path} https://api.github.com/repos/plotly/dash/compare/{base}...{head} https://api.github.com/repos/plotly/dash/merges https://api.github.com/repos/plotly/dash/{archive_format}{/ref} https://api.github.com/repos/plotly/dash/downloads https://api.github.com/repos/plotly/dash/issues{/number} https://api.github.com/repos/plotly/dash/pulls{/number} https://api.github.com/repos/plotly/dash/milestones{/number} https://api.github.com/repos/plotly/dash/notifications{?since,all,participating} https://api.github.com/repos/plotly/dash/labels{/name} https://api.github.com/repos/plotly/dash/releases{/id} https://api.github.com/repos/plotly/dash/deployments 2015-04-10 01:53:08 2023-04-03 13:31:34 2023-03-31 16:51:11 git://github.com/plotly/dash.git git@github.com:plotly/dash.git https://github.com/plotly/dash.git https://github.com/plotly/dash https://plotly.com/dash 140169 18427 18427 Python True True True False False False 1866 None False False 729 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['bioinformatics', 'charting', 'dash', 'data-science', 'data-visualization', 'finance', 'flask', 'gui-framework', 'julia', 'jupyter', 'modeling', 'plotly', 'plotly-dash', 'productivity', 'python', 'r', 'react', 'rstats', 'technical-computing', 'web-app'] public 1866 729 18427 dev 1.0
243838973 MDEwOlJlcG9zaXRvcnkyNDM4Mzg5NzM= fastbook fastai/fastbook False {'login': 'fastai', 'id': 20547620, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjIwNTQ3NjIw', 'avatar_url': 'https://avatars.githubusercontent.com/u/20547620?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/fastai', 'html_url': 'https://github.com/fastai', 'followers_url': 'https://api.github.com/users/fastai/followers', 'following_url': 'https://api.github.com/users/fastai/following{/other_user}', 'gists_url': 'https://api.github.com/users/fastai/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/fastai/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/fastai/subscriptions', 'organizations_url': 'https://api.github.com/users/fastai/orgs', 'repos_url': 'https://api.github.com/users/fastai/repos', 'events_url': 'https://api.github.com/users/fastai/events{/privacy}', 'received_events_url': 'https://api.github.com/users/fastai/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/fastai/fastbook The fastai book, published as Jupyter Notebooks False https://api.github.com/repos/fastai/fastbook https://api.github.com/repos/fastai/fastbook/forks https://api.github.com/repos/fastai/fastbook/keys{/key_id} https://api.github.com/repos/fastai/fastbook/collaborators{/collaborator} https://api.github.com/repos/fastai/fastbook/teams https://api.github.com/repos/fastai/fastbook/hooks https://api.github.com/repos/fastai/fastbook/issues/events{/number} https://api.github.com/repos/fastai/fastbook/events https://api.github.com/repos/fastai/fastbook/assignees{/user} https://api.github.com/repos/fastai/fastbook/branches{/branch} https://api.github.com/repos/fastai/fastbook/tags https://api.github.com/repos/fastai/fastbook/git/blobs{/sha} https://api.github.com/repos/fastai/fastbook/git/tags{/sha} https://api.github.com/repos/fastai/fastbook/git/refs{/sha} https://api.github.com/repos/fastai/fastbook/git/trees{/sha} https://api.github.com/repos/fastai/fastbook/statuses/{sha} https://api.github.com/repos/fastai/fastbook/languages https://api.github.com/repos/fastai/fastbook/stargazers https://api.github.com/repos/fastai/fastbook/contributors https://api.github.com/repos/fastai/fastbook/subscribers https://api.github.com/repos/fastai/fastbook/subscription https://api.github.com/repos/fastai/fastbook/commits{/sha} https://api.github.com/repos/fastai/fastbook/git/commits{/sha} https://api.github.com/repos/fastai/fastbook/comments{/number} https://api.github.com/repos/fastai/fastbook/issues/comments{/number} https://api.github.com/repos/fastai/fastbook/contents/{+path} https://api.github.com/repos/fastai/fastbook/compare/{base}...{head} https://api.github.com/repos/fastai/fastbook/merges https://api.github.com/repos/fastai/fastbook/{archive_format}{/ref} https://api.github.com/repos/fastai/fastbook/downloads https://api.github.com/repos/fastai/fastbook/issues{/number} https://api.github.com/repos/fastai/fastbook/pulls{/number} https://api.github.com/repos/fastai/fastbook/milestones{/number} https://api.github.com/repos/fastai/fastbook/notifications{?since,all,participating} https://api.github.com/repos/fastai/fastbook/labels{/name} https://api.github.com/repos/fastai/fastbook/releases{/id} https://api.github.com/repos/fastai/fastbook/deployments 2020-02-28 19:26:47 2023-04-03 13:41:20 2023-03-30 05:55:36 git://github.com/fastai/fastbook.git git@github.com:fastai/fastbook.git https://github.com/fastai/fastbook.git https://github.com/fastai/fastbook 80408 17838 17838 Jupyter Notebook True True True True False False 6799 None False False 99 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['book', 'data-science', 'deep-learning', 'fastai', 'machine-learning', 'notebooks', 'python'] public 6799 99 17838 master 1.0
3834332 MDEwOlJlcG9zaXRvcnkzODM0MzMy bokeh bokeh/bokeh False {'login': 'bokeh', 'id': 8440965, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjg0NDA5NjU=', 'avatar_url': 'https://avatars.githubusercontent.com/u/8440965?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/bokeh', 'html_url': 'https://github.com/bokeh', 'followers_url': 'https://api.github.com/users/bokeh/followers', 'following_url': 'https://api.github.com/users/bokeh/following{/other_user}', 'gists_url': 'https://api.github.com/users/bokeh/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/bokeh/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/bokeh/subscriptions', 'organizations_url': 'https://api.github.com/users/bokeh/orgs', 'repos_url': 'https://api.github.com/users/bokeh/repos', 'events_url': 'https://api.github.com/users/bokeh/events{/privacy}', 'received_events_url': 'https://api.github.com/users/bokeh/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/bokeh/bokeh Interactive Data Visualization in the browser, from Python False https://api.github.com/repos/bokeh/bokeh https://api.github.com/repos/bokeh/bokeh/forks https://api.github.com/repos/bokeh/bokeh/keys{/key_id} https://api.github.com/repos/bokeh/bokeh/collaborators{/collaborator} https://api.github.com/repos/bokeh/bokeh/teams https://api.github.com/repos/bokeh/bokeh/hooks https://api.github.com/repos/bokeh/bokeh/issues/events{/number} https://api.github.com/repos/bokeh/bokeh/events https://api.github.com/repos/bokeh/bokeh/assignees{/user} https://api.github.com/repos/bokeh/bokeh/branches{/branch} https://api.github.com/repos/bokeh/bokeh/tags https://api.github.com/repos/bokeh/bokeh/git/blobs{/sha} https://api.github.com/repos/bokeh/bokeh/git/tags{/sha} https://api.github.com/repos/bokeh/bokeh/git/refs{/sha} https://api.github.com/repos/bokeh/bokeh/git/trees{/sha} https://api.github.com/repos/bokeh/bokeh/statuses/{sha} https://api.github.com/repos/bokeh/bokeh/languages https://api.github.com/repos/bokeh/bokeh/stargazers https://api.github.com/repos/bokeh/bokeh/contributors https://api.github.com/repos/bokeh/bokeh/subscribers https://api.github.com/repos/bokeh/bokeh/subscription https://api.github.com/repos/bokeh/bokeh/commits{/sha} https://api.github.com/repos/bokeh/bokeh/git/commits{/sha} https://api.github.com/repos/bokeh/bokeh/comments{/number} https://api.github.com/repos/bokeh/bokeh/issues/comments{/number} https://api.github.com/repos/bokeh/bokeh/contents/{+path} https://api.github.com/repos/bokeh/bokeh/compare/{base}...{head} https://api.github.com/repos/bokeh/bokeh/merges https://api.github.com/repos/bokeh/bokeh/{archive_format}{/ref} https://api.github.com/repos/bokeh/bokeh/downloads https://api.github.com/repos/bokeh/bokeh/issues{/number} https://api.github.com/repos/bokeh/bokeh/pulls{/number} https://api.github.com/repos/bokeh/bokeh/milestones{/number} https://api.github.com/repos/bokeh/bokeh/notifications{?since,all,participating} https://api.github.com/repos/bokeh/bokeh/labels{/name} https://api.github.com/repos/bokeh/bokeh/releases{/id} https://api.github.com/repos/bokeh/bokeh/deployments 2012-03-26 15:40:01 2023-04-03 11:49:46 2023-04-03 13:30:36 git://github.com/bokeh/bokeh.git git@github.com:bokeh/bokeh.git https://github.com/bokeh/bokeh.git https://github.com/bokeh/bokeh https://bokeh.org 306687 17437 17437 Python True True True True False True 4089 None False False 705 {'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='} True False False ['bokeh', 'data-visualisation', 'interactive-plots', 'javascript', 'jupyter', 'notebooks', 'numfocus', 'plots', 'plotting', 'python', 'visualisation', 'visualization'] public 4089 705 17437 branch-3.2 1.0
102523304 MDEwOlJlcG9zaXRvcnkxMDI1MjMzMDQ= deep-learning-with-python-notebooks fchollet/deep-learning-with-python-notebooks False {'login': 'fchollet', 'id': 710255, 'node_id': 'MDQ6VXNlcjcxMDI1NQ==', 'avatar_url': 'https://avatars.githubusercontent.com/u/710255?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/fchollet', 'html_url': 'https://github.com/fchollet', 'followers_url': 'https://api.github.com/users/fchollet/followers', 'following_url': 'https://api.github.com/users/fchollet/following{/other_user}', 'gists_url': 'https://api.github.com/users/fchollet/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/fchollet/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/fchollet/subscriptions', 'organizations_url': 'https://api.github.com/users/fchollet/orgs', 'repos_url': 'https://api.github.com/users/fchollet/repos', 'events_url': 'https://api.github.com/users/fchollet/events{/privacy}', 'received_events_url': 'https://api.github.com/users/fchollet/received_events', 'type': 'User', 'site_admin': False} https://github.com/fchollet/deep-learning-with-python-notebooks Jupyter notebooks for the code samples of the book "Deep Learning with Python" False https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/forks https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/keys{/key_id} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/collaborators{/collaborator} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/teams https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/hooks https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/issues/events{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/events https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/assignees{/user} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/branches{/branch} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/tags https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/git/blobs{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/git/tags{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/git/refs{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/git/trees{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/statuses/{sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/languages https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/stargazers https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/contributors https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/subscribers https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/subscription https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/commits{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/git/commits{/sha} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/comments{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/issues/comments{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/contents/{+path} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/compare/{base}...{head} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/merges https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/{archive_format}{/ref} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/downloads https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/issues{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/pulls{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/milestones{/number} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/notifications{?since,all,participating} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/labels{/name} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/releases{/id} https://api.github.com/repos/fchollet/deep-learning-with-python-notebooks/deployments 2017-09-05 19:47:56 2023-04-03 11:42:54 2023-02-13 00:50:38 git://github.com/fchollet/deep-learning-with-python-notebooks.git git@github.com:fchollet/deep-learning-with-python-notebooks.git https://github.com/fchollet/deep-learning-with-python-notebooks.git https://github.com/fchollet/deep-learning-with-python-notebooks 6990 16606 16606 Jupyter Notebook True True True True False False 8089 None False False 161 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False [] public 8089 161 16606 master 1.0
658518 MDEwOlJlcG9zaXRvcnk2NTg1MTg= ipython ipython/ipython False {'login': 'ipython', 'id': 230453, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjIzMDQ1Mw==', 'avatar_url': 'https://avatars.githubusercontent.com/u/230453?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/ipython', 'html_url': 'https://github.com/ipython', 'followers_url': 'https://api.github.com/users/ipython/followers', 'following_url': 'https://api.github.com/users/ipython/following{/other_user}', 'gists_url': 'https://api.github.com/users/ipython/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/ipython/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/ipython/subscriptions', 'organizations_url': 'https://api.github.com/users/ipython/orgs', 'repos_url': 'https://api.github.com/users/ipython/repos', 'events_url': 'https://api.github.com/users/ipython/events{/privacy}', 'received_events_url': 'https://api.github.com/users/ipython/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/ipython/ipython Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc. False https://api.github.com/repos/ipython/ipython https://api.github.com/repos/ipython/ipython/forks https://api.github.com/repos/ipython/ipython/keys{/key_id} https://api.github.com/repos/ipython/ipython/collaborators{/collaborator} https://api.github.com/repos/ipython/ipython/teams https://api.github.com/repos/ipython/ipython/hooks https://api.github.com/repos/ipython/ipython/issues/events{/number} https://api.github.com/repos/ipython/ipython/events https://api.github.com/repos/ipython/ipython/assignees{/user} https://api.github.com/repos/ipython/ipython/branches{/branch} https://api.github.com/repos/ipython/ipython/tags https://api.github.com/repos/ipython/ipython/git/blobs{/sha} https://api.github.com/repos/ipython/ipython/git/tags{/sha} https://api.github.com/repos/ipython/ipython/git/refs{/sha} https://api.github.com/repos/ipython/ipython/git/trees{/sha} https://api.github.com/repos/ipython/ipython/statuses/{sha} https://api.github.com/repos/ipython/ipython/languages https://api.github.com/repos/ipython/ipython/stargazers https://api.github.com/repos/ipython/ipython/contributors https://api.github.com/repos/ipython/ipython/subscribers https://api.github.com/repos/ipython/ipython/subscription https://api.github.com/repos/ipython/ipython/commits{/sha} https://api.github.com/repos/ipython/ipython/git/commits{/sha} https://api.github.com/repos/ipython/ipython/comments{/number} https://api.github.com/repos/ipython/ipython/issues/comments{/number} https://api.github.com/repos/ipython/ipython/contents/{+path} https://api.github.com/repos/ipython/ipython/compare/{base}...{head} https://api.github.com/repos/ipython/ipython/merges https://api.github.com/repos/ipython/ipython/{archive_format}{/ref} https://api.github.com/repos/ipython/ipython/downloads https://api.github.com/repos/ipython/ipython/issues{/number} https://api.github.com/repos/ipython/ipython/pulls{/number} https://api.github.com/repos/ipython/ipython/milestones{/number} https://api.github.com/repos/ipython/ipython/notifications{?since,all,participating} https://api.github.com/repos/ipython/ipython/labels{/name} https://api.github.com/repos/ipython/ipython/releases{/id} https://api.github.com/repos/ipython/ipython/deployments 2010-05-10 04:46:06 2023-04-03 08:02:10 2023-03-30 11:12:28 git://github.com/ipython/ipython.git git@github.com:ipython/ipython.git https://github.com/ipython/ipython.git https://github.com/ipython/ipython https://ipython.readthedocs.org 77762 15759 15759 Python True True True True False False 4418 None False False 1587 {'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='} True False False ['closember', 'data-science', 'hacktoberfest', 'ipython', 'jupyter', 'notebook', 'python', 'repl'] public 4418 1587 15759 main 1.0
36895421 MDEwOlJlcG9zaXRvcnkzNjg5NTQyMQ== jupyter jupyter/jupyter False {'login': 'jupyter', 'id': 7388996, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjczODg5OTY=', 'avatar_url': 'https://avatars.githubusercontent.com/u/7388996?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jupyter', 'html_url': 'https://github.com/jupyter', 'followers_url': 'https://api.github.com/users/jupyter/followers', 'following_url': 'https://api.github.com/users/jupyter/following{/other_user}', 'gists_url': 'https://api.github.com/users/jupyter/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jupyter/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jupyter/subscriptions', 'organizations_url': 'https://api.github.com/users/jupyter/orgs', 'repos_url': 'https://api.github.com/users/jupyter/repos', 'events_url': 'https://api.github.com/users/jupyter/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jupyter/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/jupyter/jupyter Jupyter metapackage for installation, docs and chat False https://api.github.com/repos/jupyter/jupyter https://api.github.com/repos/jupyter/jupyter/forks https://api.github.com/repos/jupyter/jupyter/keys{/key_id} https://api.github.com/repos/jupyter/jupyter/collaborators{/collaborator} https://api.github.com/repos/jupyter/jupyter/teams https://api.github.com/repos/jupyter/jupyter/hooks https://api.github.com/repos/jupyter/jupyter/issues/events{/number} https://api.github.com/repos/jupyter/jupyter/events https://api.github.com/repos/jupyter/jupyter/assignees{/user} https://api.github.com/repos/jupyter/jupyter/branches{/branch} https://api.github.com/repos/jupyter/jupyter/tags https://api.github.com/repos/jupyter/jupyter/git/blobs{/sha} https://api.github.com/repos/jupyter/jupyter/git/tags{/sha} https://api.github.com/repos/jupyter/jupyter/git/refs{/sha} https://api.github.com/repos/jupyter/jupyter/git/trees{/sha} https://api.github.com/repos/jupyter/jupyter/statuses/{sha} https://api.github.com/repos/jupyter/jupyter/languages https://api.github.com/repos/jupyter/jupyter/stargazers https://api.github.com/repos/jupyter/jupyter/contributors https://api.github.com/repos/jupyter/jupyter/subscribers https://api.github.com/repos/jupyter/jupyter/subscription https://api.github.com/repos/jupyter/jupyter/commits{/sha} https://api.github.com/repos/jupyter/jupyter/git/commits{/sha} https://api.github.com/repos/jupyter/jupyter/comments{/number} https://api.github.com/repos/jupyter/jupyter/issues/comments{/number} https://api.github.com/repos/jupyter/jupyter/contents/{+path} https://api.github.com/repos/jupyter/jupyter/compare/{base}...{head} https://api.github.com/repos/jupyter/jupyter/merges https://api.github.com/repos/jupyter/jupyter/{archive_format}{/ref} https://api.github.com/repos/jupyter/jupyter/downloads https://api.github.com/repos/jupyter/jupyter/issues{/number} https://api.github.com/repos/jupyter/jupyter/pulls{/number} https://api.github.com/repos/jupyter/jupyter/milestones{/number} https://api.github.com/repos/jupyter/jupyter/notifications{?since,all,participating} https://api.github.com/repos/jupyter/jupyter/labels{/name} https://api.github.com/repos/jupyter/jupyter/releases{/id} https://api.github.com/repos/jupyter/jupyter/deployments 2015-06-04 21:05:00 2023-04-03 10:44:05 2023-01-16 19:08:09 git://github.com/jupyter/jupyter.git git@github.com:jupyter/jupyter.git https://github.com/jupyter/jupyter.git https://github.com/jupyter/jupyter https://jupyter.readthedocs.io/ 6726 14210 14210 Python True True True True False False 3657 None False False 201 {'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='} True False False [] public 3657 201 14210 master 1.0
107119649 MDEwOlJlcG9zaXRvcnkxMDcxMTk2NDk= Screenshot-to-code emilwallner/Screenshot-to-code False {'login': 'emilwallner', 'id': 12543699, 'node_id': 'MDQ6VXNlcjEyNTQzNjk5', 'avatar_url': 'https://avatars.githubusercontent.com/u/12543699?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/emilwallner', 'html_url': 'https://github.com/emilwallner', 'followers_url': 'https://api.github.com/users/emilwallner/followers', 'following_url': 'https://api.github.com/users/emilwallner/following{/other_user}', 'gists_url': 'https://api.github.com/users/emilwallner/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/emilwallner/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/emilwallner/subscriptions', 'organizations_url': 'https://api.github.com/users/emilwallner/orgs', 'repos_url': 'https://api.github.com/users/emilwallner/repos', 'events_url': 'https://api.github.com/users/emilwallner/events{/privacy}', 'received_events_url': 'https://api.github.com/users/emilwallner/received_events', 'type': 'User', 'site_admin': False} https://github.com/emilwallner/Screenshot-to-code A neural network that transforms a design mock-up into a static website. False https://api.github.com/repos/emilwallner/Screenshot-to-code https://api.github.com/repos/emilwallner/Screenshot-to-code/forks https://api.github.com/repos/emilwallner/Screenshot-to-code/keys{/key_id} https://api.github.com/repos/emilwallner/Screenshot-to-code/collaborators{/collaborator} https://api.github.com/repos/emilwallner/Screenshot-to-code/teams https://api.github.com/repos/emilwallner/Screenshot-to-code/hooks https://api.github.com/repos/emilwallner/Screenshot-to-code/issues/events{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/events https://api.github.com/repos/emilwallner/Screenshot-to-code/assignees{/user} https://api.github.com/repos/emilwallner/Screenshot-to-code/branches{/branch} https://api.github.com/repos/emilwallner/Screenshot-to-code/tags https://api.github.com/repos/emilwallner/Screenshot-to-code/git/blobs{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/git/tags{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/git/refs{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/git/trees{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/statuses/{sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/languages https://api.github.com/repos/emilwallner/Screenshot-to-code/stargazers https://api.github.com/repos/emilwallner/Screenshot-to-code/contributors https://api.github.com/repos/emilwallner/Screenshot-to-code/subscribers https://api.github.com/repos/emilwallner/Screenshot-to-code/subscription https://api.github.com/repos/emilwallner/Screenshot-to-code/commits{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/git/commits{/sha} https://api.github.com/repos/emilwallner/Screenshot-to-code/comments{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/issues/comments{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/contents/{+path} https://api.github.com/repos/emilwallner/Screenshot-to-code/compare/{base}...{head} https://api.github.com/repos/emilwallner/Screenshot-to-code/merges https://api.github.com/repos/emilwallner/Screenshot-to-code/{archive_format}{/ref} https://api.github.com/repos/emilwallner/Screenshot-to-code/downloads https://api.github.com/repos/emilwallner/Screenshot-to-code/issues{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/pulls{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/milestones{/number} https://api.github.com/repos/emilwallner/Screenshot-to-code/notifications{?since,all,participating} https://api.github.com/repos/emilwallner/Screenshot-to-code/labels{/name} https://api.github.com/repos/emilwallner/Screenshot-to-code/releases{/id} https://api.github.com/repos/emilwallner/Screenshot-to-code/deployments 2017-10-16 11:41:48 2023-04-03 09:21:02 2022-05-24 14:52:26 git://github.com/emilwallner/Screenshot-to-code.git git@github.com:emilwallner/Screenshot-to-code.git https://github.com/emilwallner/Screenshot-to-code.git https://github.com/emilwallner/Screenshot-to-code 51634 13990 13990 HTML True True True True False False 1413 None False False 20 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['cnn', 'cnn-keras', 'deep-learning', 'encoder-decoder', 'floydhub', 'jupyter', 'jupyter-notebook', 'keras', 'lstm', 'machine-learning', 'seq2seq'] public 1413 20 13990 master 1.0
19868085 MDEwOlJlcG9zaXRvcnkxOTg2ODA4NQ== Kalman-and-Bayesian-Filters-in-Python rlabbe/Kalman-and-Bayesian-Filters-in-Python False {'login': 'rlabbe', 'id': 5308143, 'node_id': 'MDQ6VXNlcjUzMDgxNDM=', 'avatar_url': 'https://avatars.githubusercontent.com/u/5308143?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/rlabbe', 'html_url': 'https://github.com/rlabbe', 'followers_url': 'https://api.github.com/users/rlabbe/followers', 'following_url': 'https://api.github.com/users/rlabbe/following{/other_user}', 'gists_url': 'https://api.github.com/users/rlabbe/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/rlabbe/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/rlabbe/subscriptions', 'organizations_url': 'https://api.github.com/users/rlabbe/orgs', 'repos_url': 'https://api.github.com/users/rlabbe/repos', 'events_url': 'https://api.github.com/users/rlabbe/events{/privacy}', 'received_events_url': 'https://api.github.com/users/rlabbe/received_events', 'type': 'User', 'site_admin': False} https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters, and more. All exercises include solutions. False https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/forks https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/keys{/key_id} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/collaborators{/collaborator} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/teams https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/hooks https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/issues/events{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/events https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/assignees{/user} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/branches{/branch} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/tags https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/git/blobs{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/git/tags{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/git/refs{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/git/trees{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/statuses/{sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/languages https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/stargazers https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/contributors https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/subscribers https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/subscription https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/commits{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/git/commits{/sha} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/comments{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/issues/comments{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/contents/{+path} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/compare/{base}...{head} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/merges https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/{archive_format}{/ref} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/downloads https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/issues{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/pulls{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/milestones{/number} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/notifications{?since,all,participating} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/labels{/name} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/releases{/id} https://api.github.com/repos/rlabbe/Kalman-and-Bayesian-Filters-in-Python/deployments 2014-05-16 19:24:36 2023-04-03 12:24:09 2023-04-01 20:24:11 git://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python.git git@github.com:rlabbe/Kalman-and-Bayesian-Filters-in-Python.git https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python.git https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python 601390 13478 13478 Jupyter Notebook True True True True True False 3658 None False False 96 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False [] public 3658 96 13478 master 1.0
60374819 MDEwOlJlcG9zaXRvcnk2MDM3NDgxOQ== jupyterlab jupyterlab/jupyterlab False {'login': 'jupyterlab', 'id': 22800682, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjIyODAwNjgy', 'avatar_url': 'https://avatars.githubusercontent.com/u/22800682?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jupyterlab', 'html_url': 'https://github.com/jupyterlab', 'followers_url': 'https://api.github.com/users/jupyterlab/followers', 'following_url': 'https://api.github.com/users/jupyterlab/following{/other_user}', 'gists_url': 'https://api.github.com/users/jupyterlab/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jupyterlab/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jupyterlab/subscriptions', 'organizations_url': 'https://api.github.com/users/jupyterlab/orgs', 'repos_url': 'https://api.github.com/users/jupyterlab/repos', 'events_url': 'https://api.github.com/users/jupyterlab/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jupyterlab/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/jupyterlab/jupyterlab JupyterLab computational environment. False https://api.github.com/repos/jupyterlab/jupyterlab https://api.github.com/repos/jupyterlab/jupyterlab/forks https://api.github.com/repos/jupyterlab/jupyterlab/keys{/key_id} https://api.github.com/repos/jupyterlab/jupyterlab/collaborators{/collaborator} https://api.github.com/repos/jupyterlab/jupyterlab/teams https://api.github.com/repos/jupyterlab/jupyterlab/hooks https://api.github.com/repos/jupyterlab/jupyterlab/issues/events{/number} https://api.github.com/repos/jupyterlab/jupyterlab/events https://api.github.com/repos/jupyterlab/jupyterlab/assignees{/user} https://api.github.com/repos/jupyterlab/jupyterlab/branches{/branch} https://api.github.com/repos/jupyterlab/jupyterlab/tags https://api.github.com/repos/jupyterlab/jupyterlab/git/blobs{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/git/tags{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/git/refs{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/git/trees{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/statuses/{sha} https://api.github.com/repos/jupyterlab/jupyterlab/languages https://api.github.com/repos/jupyterlab/jupyterlab/stargazers https://api.github.com/repos/jupyterlab/jupyterlab/contributors https://api.github.com/repos/jupyterlab/jupyterlab/subscribers https://api.github.com/repos/jupyterlab/jupyterlab/subscription https://api.github.com/repos/jupyterlab/jupyterlab/commits{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/git/commits{/sha} https://api.github.com/repos/jupyterlab/jupyterlab/comments{/number} https://api.github.com/repos/jupyterlab/jupyterlab/issues/comments{/number} https://api.github.com/repos/jupyterlab/jupyterlab/contents/{+path} https://api.github.com/repos/jupyterlab/jupyterlab/compare/{base}...{head} https://api.github.com/repos/jupyterlab/jupyterlab/merges https://api.github.com/repos/jupyterlab/jupyterlab/{archive_format}{/ref} https://api.github.com/repos/jupyterlab/jupyterlab/downloads https://api.github.com/repos/jupyterlab/jupyterlab/issues{/number} https://api.github.com/repos/jupyterlab/jupyterlab/pulls{/number} https://api.github.com/repos/jupyterlab/jupyterlab/milestones{/number} https://api.github.com/repos/jupyterlab/jupyterlab/notifications{?since,all,participating} https://api.github.com/repos/jupyterlab/jupyterlab/labels{/name} https://api.github.com/repos/jupyterlab/jupyterlab/releases{/id} https://api.github.com/repos/jupyterlab/jupyterlab/deployments 2016-06-03 20:09:17 2023-04-03 14:09:03 2023-04-03 13:54:26 git://github.com/jupyterlab/jupyterlab.git git@github.com:jupyterlab/jupyterlab.git https://github.com/jupyterlab/jupyterlab.git https://github.com/jupyterlab/jupyterlab https://jupyterlab.readthedocs.io/ 220236 12775 12775 TypeScript True True True True True True 2601 None False False 2265 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['jupyter', 'jupyterlab'] public 2601 2265 12775 master 1.0
112647343 MDEwOlJlcG9zaXRvcnkxMTI2NDczNDM= kubeflow kubeflow/kubeflow False {'login': 'kubeflow', 'id': 33164907, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjMzMTY0OTA3', 'avatar_url': 'https://avatars.githubusercontent.com/u/33164907?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/kubeflow', 'html_url': 'https://github.com/kubeflow', 'followers_url': 'https://api.github.com/users/kubeflow/followers', 'following_url': 'https://api.github.com/users/kubeflow/following{/other_user}', 'gists_url': 'https://api.github.com/users/kubeflow/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/kubeflow/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/kubeflow/subscriptions', 'organizations_url': 'https://api.github.com/users/kubeflow/orgs', 'repos_url': 'https://api.github.com/users/kubeflow/repos', 'events_url': 'https://api.github.com/users/kubeflow/events{/privacy}', 'received_events_url': 'https://api.github.com/users/kubeflow/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/kubeflow/kubeflow Machine Learning Toolkit for Kubernetes False https://api.github.com/repos/kubeflow/kubeflow https://api.github.com/repos/kubeflow/kubeflow/forks https://api.github.com/repos/kubeflow/kubeflow/keys{/key_id} https://api.github.com/repos/kubeflow/kubeflow/collaborators{/collaborator} https://api.github.com/repos/kubeflow/kubeflow/teams https://api.github.com/repos/kubeflow/kubeflow/hooks https://api.github.com/repos/kubeflow/kubeflow/issues/events{/number} https://api.github.com/repos/kubeflow/kubeflow/events https://api.github.com/repos/kubeflow/kubeflow/assignees{/user} https://api.github.com/repos/kubeflow/kubeflow/branches{/branch} https://api.github.com/repos/kubeflow/kubeflow/tags https://api.github.com/repos/kubeflow/kubeflow/git/blobs{/sha} https://api.github.com/repos/kubeflow/kubeflow/git/tags{/sha} https://api.github.com/repos/kubeflow/kubeflow/git/refs{/sha} https://api.github.com/repos/kubeflow/kubeflow/git/trees{/sha} https://api.github.com/repos/kubeflow/kubeflow/statuses/{sha} https://api.github.com/repos/kubeflow/kubeflow/languages https://api.github.com/repos/kubeflow/kubeflow/stargazers https://api.github.com/repos/kubeflow/kubeflow/contributors https://api.github.com/repos/kubeflow/kubeflow/subscribers https://api.github.com/repos/kubeflow/kubeflow/subscription https://api.github.com/repos/kubeflow/kubeflow/commits{/sha} https://api.github.com/repos/kubeflow/kubeflow/git/commits{/sha} https://api.github.com/repos/kubeflow/kubeflow/comments{/number} https://api.github.com/repos/kubeflow/kubeflow/issues/comments{/number} https://api.github.com/repos/kubeflow/kubeflow/contents/{+path} https://api.github.com/repos/kubeflow/kubeflow/compare/{base}...{head} https://api.github.com/repos/kubeflow/kubeflow/merges https://api.github.com/repos/kubeflow/kubeflow/{archive_format}{/ref} https://api.github.com/repos/kubeflow/kubeflow/downloads https://api.github.com/repos/kubeflow/kubeflow/issues{/number} https://api.github.com/repos/kubeflow/kubeflow/pulls{/number} https://api.github.com/repos/kubeflow/kubeflow/milestones{/number} https://api.github.com/repos/kubeflow/kubeflow/notifications{?since,all,participating} https://api.github.com/repos/kubeflow/kubeflow/labels{/name} https://api.github.com/repos/kubeflow/kubeflow/releases{/id} https://api.github.com/repos/kubeflow/kubeflow/deployments 2017-11-30 18:44:19 2023-04-03 11:30:31 2023-03-31 19:23:05 git://github.com/kubeflow/kubeflow.git git@github.com:kubeflow/kubeflow.git https://github.com/kubeflow/kubeflow.git https://github.com/kubeflow/kubeflow 322839 12418 12418 TypeScript True True False True False False 2124 None False False 401 {'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='} True False False ['google-kubernetes-engine', 'jupyter', 'kubeflow', 'kubernetes', 'machine-learning', 'minikube', 'ml', 'notebook', 'tensorflow'] public 2124 401 12418 master 1.0
162608338 MDEwOlJlcG9zaXRvcnkxNjI2MDgzMzg= ds-cheatsheets FavioVazquez/ds-cheatsheets False {'login': 'FavioVazquez', 'id': 10162068, 'node_id': 'MDQ6VXNlcjEwMTYyMDY4', 'avatar_url': 'https://avatars.githubusercontent.com/u/10162068?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/FavioVazquez', 'html_url': 'https://github.com/FavioVazquez', 'followers_url': 'https://api.github.com/users/FavioVazquez/followers', 'following_url': 'https://api.github.com/users/FavioVazquez/following{/other_user}', 'gists_url': 'https://api.github.com/users/FavioVazquez/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/FavioVazquez/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/FavioVazquez/subscriptions', 'organizations_url': 'https://api.github.com/users/FavioVazquez/orgs', 'repos_url': 'https://api.github.com/users/FavioVazquez/repos', 'events_url': 'https://api.github.com/users/FavioVazquez/events{/privacy}', 'received_events_url': 'https://api.github.com/users/FavioVazquez/received_events', 'type': 'User', 'site_admin': False} https://github.com/FavioVazquez/ds-cheatsheets List of Data Science Cheatsheets to rule the world False https://api.github.com/repos/FavioVazquez/ds-cheatsheets https://api.github.com/repos/FavioVazquez/ds-cheatsheets/forks https://api.github.com/repos/FavioVazquez/ds-cheatsheets/keys{/key_id} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/collaborators{/collaborator} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/teams https://api.github.com/repos/FavioVazquez/ds-cheatsheets/hooks https://api.github.com/repos/FavioVazquez/ds-cheatsheets/issues/events{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/events https://api.github.com/repos/FavioVazquez/ds-cheatsheets/assignees{/user} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/branches{/branch} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/tags https://api.github.com/repos/FavioVazquez/ds-cheatsheets/git/blobs{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/git/tags{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/git/refs{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/git/trees{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/statuses/{sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/languages https://api.github.com/repos/FavioVazquez/ds-cheatsheets/stargazers https://api.github.com/repos/FavioVazquez/ds-cheatsheets/contributors https://api.github.com/repos/FavioVazquez/ds-cheatsheets/subscribers https://api.github.com/repos/FavioVazquez/ds-cheatsheets/subscription https://api.github.com/repos/FavioVazquez/ds-cheatsheets/commits{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/git/commits{/sha} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/comments{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/issues/comments{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/contents/{+path} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/compare/{base}...{head} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/merges https://api.github.com/repos/FavioVazquez/ds-cheatsheets/{archive_format}{/ref} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/downloads https://api.github.com/repos/FavioVazquez/ds-cheatsheets/issues{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/pulls{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/milestones{/number} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/notifications{?since,all,participating} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/labels{/name} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/releases{/id} https://api.github.com/repos/FavioVazquez/ds-cheatsheets/deployments 2018-12-20 17:02:46 2023-04-03 13:19:17 2022-11-19 08:16:34 git://github.com/FavioVazquez/ds-cheatsheets.git git@github.com:FavioVazquez/ds-cheatsheets.git https://github.com/FavioVazquez/ds-cheatsheets.git https://github.com/FavioVazquez/ds-cheatsheets 122325 12056 12056 None True True True True False False 3424 None False False 7 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['cheatsheet', 'datascience', 'jupyter', 'programming', 'python', 'r', 'spark'] public 3424 7 12056 master 1.0
31186658 MDEwOlJlcG9zaXRvcnkzMTE4NjY1OA== dive-into-machine-learning dive-into-machine-learning/dive-into-machine-learning False {'login': 'dive-into-machine-learning', 'id': 113268860, 'node_id': 'O_kgDOBsBYfA', 'avatar_url': 'https://avatars.githubusercontent.com/u/113268860?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dive-into-machine-learning', 'html_url': 'https://github.com/dive-into-machine-learning', 'followers_url': 'https://api.github.com/users/dive-into-machine-learning/followers', 'following_url': 'https://api.github.com/users/dive-into-machine-learning/following{/other_user}', 'gists_url': 'https://api.github.com/users/dive-into-machine-learning/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dive-into-machine-learning/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dive-into-machine-learning/subscriptions', 'organizations_url': 'https://api.github.com/users/dive-into-machine-learning/orgs', 'repos_url': 'https://api.github.com/users/dive-into-machine-learning/repos', 'events_url': 'https://api.github.com/users/dive-into-machine-learning/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dive-into-machine-learning/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/dive-into-machine-learning/dive-into-machine-learning Free ways to dive into machine learning with Python and Jupyter Notebook. Notebooks, courses, and other links. (First posted in 2016.) False https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/forks https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/keys{/key_id} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/collaborators{/collaborator} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/teams https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/hooks https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/issues/events{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/events https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/assignees{/user} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/branches{/branch} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/tags https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/git/blobs{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/git/tags{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/git/refs{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/git/trees{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/statuses/{sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/languages https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/stargazers https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/contributors https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/subscribers https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/subscription https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/commits{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/git/commits{/sha} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/comments{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/issues/comments{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/contents/{+path} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/compare/{base}...{head} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/merges https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/{archive_format}{/ref} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/downloads https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/issues{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/pulls{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/milestones{/number} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/notifications{?since,all,participating} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/labels{/name} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/releases{/id} https://api.github.com/repos/dive-into-machine-learning/dive-into-machine-learning/deployments 2015-02-22 23:48:16 2023-04-03 10:12:02 2022-06-17 23:22:08 git://github.com/dive-into-machine-learning/dive-into-machine-learning.git git@github.com:dive-into-machine-learning/dive-into-machine-learning.git https://github.com/dive-into-machine-learning/dive-into-machine-learning.git https://github.com/dive-into-machine-learning/dive-into-machine-learning http://hangtwenty.github.io/dive-into-machine-learning/ 385 11127 11127 None True False True False True False 1956 None True False 0 {'key': 'cc-by-4.0', 'name': 'Creative Commons Attribution 4.0 International', 'spdx_id': 'CC-BY-4.0', 'url': 'https://api.github.com/licenses/cc-by-4.0', 'node_id': 'MDc6TGljZW5zZTI1'} True False False [] public 1956 0 11127 master 1.0
80990040 MDEwOlJlcG9zaXRvcnk4MDk5MDA0MA== PRML ctgk/PRML False {'login': 'ctgk', 'id': 25563881, 'node_id': 'MDQ6VXNlcjI1NTYzODgx', 'avatar_url': 'https://avatars.githubusercontent.com/u/25563881?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/ctgk', 'html_url': 'https://github.com/ctgk', 'followers_url': 'https://api.github.com/users/ctgk/followers', 'following_url': 'https://api.github.com/users/ctgk/following{/other_user}', 'gists_url': 'https://api.github.com/users/ctgk/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/ctgk/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/ctgk/subscriptions', 'organizations_url': 'https://api.github.com/users/ctgk/orgs', 'repos_url': 'https://api.github.com/users/ctgk/repos', 'events_url': 'https://api.github.com/users/ctgk/events{/privacy}', 'received_events_url': 'https://api.github.com/users/ctgk/received_events', 'type': 'User', 'site_admin': False} https://github.com/ctgk/PRML PRML algorithms implemented in Python False https://api.github.com/repos/ctgk/PRML https://api.github.com/repos/ctgk/PRML/forks https://api.github.com/repos/ctgk/PRML/keys{/key_id} https://api.github.com/repos/ctgk/PRML/collaborators{/collaborator} https://api.github.com/repos/ctgk/PRML/teams https://api.github.com/repos/ctgk/PRML/hooks https://api.github.com/repos/ctgk/PRML/issues/events{/number} https://api.github.com/repos/ctgk/PRML/events https://api.github.com/repos/ctgk/PRML/assignees{/user} https://api.github.com/repos/ctgk/PRML/branches{/branch} https://api.github.com/repos/ctgk/PRML/tags https://api.github.com/repos/ctgk/PRML/git/blobs{/sha} https://api.github.com/repos/ctgk/PRML/git/tags{/sha} https://api.github.com/repos/ctgk/PRML/git/refs{/sha} https://api.github.com/repos/ctgk/PRML/git/trees{/sha} https://api.github.com/repos/ctgk/PRML/statuses/{sha} https://api.github.com/repos/ctgk/PRML/languages https://api.github.com/repos/ctgk/PRML/stargazers https://api.github.com/repos/ctgk/PRML/contributors https://api.github.com/repos/ctgk/PRML/subscribers https://api.github.com/repos/ctgk/PRML/subscription https://api.github.com/repos/ctgk/PRML/commits{/sha} https://api.github.com/repos/ctgk/PRML/git/commits{/sha} https://api.github.com/repos/ctgk/PRML/comments{/number} https://api.github.com/repos/ctgk/PRML/issues/comments{/number} https://api.github.com/repos/ctgk/PRML/contents/{+path} https://api.github.com/repos/ctgk/PRML/compare/{base}...{head} https://api.github.com/repos/ctgk/PRML/merges https://api.github.com/repos/ctgk/PRML/{archive_format}{/ref} https://api.github.com/repos/ctgk/PRML/downloads https://api.github.com/repos/ctgk/PRML/issues{/number} https://api.github.com/repos/ctgk/PRML/pulls{/number} https://api.github.com/repos/ctgk/PRML/milestones{/number} https://api.github.com/repos/ctgk/PRML/notifications{?since,all,participating} https://api.github.com/repos/ctgk/PRML/labels{/name} https://api.github.com/repos/ctgk/PRML/releases{/id} https://api.github.com/repos/ctgk/PRML/deployments 2017-02-05 12:02:58 2023-04-03 04:52:28 2022-05-14 05:52:10 git://github.com/ctgk/PRML.git git@github.com:ctgk/PRML.git https://github.com/ctgk/PRML.git https://github.com/ctgk/PRML 25899 10934 10934 Jupyter Notebook True True True True False False 3220 None False False 16 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['jupyter', 'notebook', 'prml', 'python'] public 3220 16 10934 main 1.0
49346299 MDEwOlJlcG9zaXRvcnk0OTM0NjI5OQ== ydata-profiling ydataai/ydata-profiling False {'login': 'ydataai', 'id': 57689451, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjU3Njg5NDUx', 'avatar_url': 'https://avatars.githubusercontent.com/u/57689451?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/ydataai', 'html_url': 'https://github.com/ydataai', 'followers_url': 'https://api.github.com/users/ydataai/followers', 'following_url': 'https://api.github.com/users/ydataai/following{/other_user}', 'gists_url': 'https://api.github.com/users/ydataai/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/ydataai/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/ydataai/subscriptions', 'organizations_url': 'https://api.github.com/users/ydataai/orgs', 'repos_url': 'https://api.github.com/users/ydataai/repos', 'events_url': 'https://api.github.com/users/ydataai/events{/privacy}', 'received_events_url': 'https://api.github.com/users/ydataai/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/ydataai/ydata-profiling Create HTML profiling reports from pandas DataFrame objects False https://api.github.com/repos/ydataai/ydata-profiling https://api.github.com/repos/ydataai/ydata-profiling/forks https://api.github.com/repos/ydataai/ydata-profiling/keys{/key_id} https://api.github.com/repos/ydataai/ydata-profiling/collaborators{/collaborator} https://api.github.com/repos/ydataai/ydata-profiling/teams https://api.github.com/repos/ydataai/ydata-profiling/hooks https://api.github.com/repos/ydataai/ydata-profiling/issues/events{/number} https://api.github.com/repos/ydataai/ydata-profiling/events https://api.github.com/repos/ydataai/ydata-profiling/assignees{/user} https://api.github.com/repos/ydataai/ydata-profiling/branches{/branch} https://api.github.com/repos/ydataai/ydata-profiling/tags https://api.github.com/repos/ydataai/ydata-profiling/git/blobs{/sha} https://api.github.com/repos/ydataai/ydata-profiling/git/tags{/sha} https://api.github.com/repos/ydataai/ydata-profiling/git/refs{/sha} https://api.github.com/repos/ydataai/ydata-profiling/git/trees{/sha} https://api.github.com/repos/ydataai/ydata-profiling/statuses/{sha} https://api.github.com/repos/ydataai/ydata-profiling/languages https://api.github.com/repos/ydataai/ydata-profiling/stargazers https://api.github.com/repos/ydataai/ydata-profiling/contributors https://api.github.com/repos/ydataai/ydata-profiling/subscribers https://api.github.com/repos/ydataai/ydata-profiling/subscription https://api.github.com/repos/ydataai/ydata-profiling/commits{/sha} https://api.github.com/repos/ydataai/ydata-profiling/git/commits{/sha} https://api.github.com/repos/ydataai/ydata-profiling/comments{/number} https://api.github.com/repos/ydataai/ydata-profiling/issues/comments{/number} https://api.github.com/repos/ydataai/ydata-profiling/contents/{+path} https://api.github.com/repos/ydataai/ydata-profiling/compare/{base}...{head} https://api.github.com/repos/ydataai/ydata-profiling/merges https://api.github.com/repos/ydataai/ydata-profiling/{archive_format}{/ref} https://api.github.com/repos/ydataai/ydata-profiling/downloads https://api.github.com/repos/ydataai/ydata-profiling/issues{/number} https://api.github.com/repos/ydataai/ydata-profiling/pulls{/number} https://api.github.com/repos/ydataai/ydata-profiling/milestones{/number} https://api.github.com/repos/ydataai/ydata-profiling/notifications{?since,all,participating} https://api.github.com/repos/ydataai/ydata-profiling/labels{/name} https://api.github.com/repos/ydataai/ydata-profiling/releases{/id} https://api.github.com/repos/ydataai/ydata-profiling/deployments 2016-01-09 23:47:55 2023-04-03 07:57:45 2023-04-03 05:37:21 git://github.com/ydataai/ydata-profiling.git git@github.com:ydataai/ydata-profiling.git https://github.com/ydataai/ydata-profiling.git https://github.com/ydataai/ydata-profiling https://ydata-profiling.ydata.ai 271199 10429 10429 Python True True True True True True 1460 None False False 155 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['big-data-analytics', 'data-analysis', 'data-exploration', 'data-profiling', 'data-quality', 'data-science', 'deep-learning', 'eda', 'exploration', 'exploratory-data-analysis', 'hacktoberfest', 'html-report', 'jupyter', 'jupyter-notebook', 'machine-learning', 'pandas', 'pandas-dataframe', 'pandas-profiling', 'python', 'statistics'] public 1460 155 10429 master 1.0
33653601 MDEwOlJlcG9zaXRvcnkzMzY1MzYwMQ== notebook jupyter/notebook False {'login': 'jupyter', 'id': 7388996, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjczODg5OTY=', 'avatar_url': 'https://avatars.githubusercontent.com/u/7388996?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jupyter', 'html_url': 'https://github.com/jupyter', 'followers_url': 'https://api.github.com/users/jupyter/followers', 'following_url': 'https://api.github.com/users/jupyter/following{/other_user}', 'gists_url': 'https://api.github.com/users/jupyter/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jupyter/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jupyter/subscriptions', 'organizations_url': 'https://api.github.com/users/jupyter/orgs', 'repos_url': 'https://api.github.com/users/jupyter/repos', 'events_url': 'https://api.github.com/users/jupyter/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jupyter/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/jupyter/notebook Jupyter Interactive Notebook False https://api.github.com/repos/jupyter/notebook https://api.github.com/repos/jupyter/notebook/forks https://api.github.com/repos/jupyter/notebook/keys{/key_id} https://api.github.com/repos/jupyter/notebook/collaborators{/collaborator} https://api.github.com/repos/jupyter/notebook/teams https://api.github.com/repos/jupyter/notebook/hooks https://api.github.com/repos/jupyter/notebook/issues/events{/number} https://api.github.com/repos/jupyter/notebook/events https://api.github.com/repos/jupyter/notebook/assignees{/user} https://api.github.com/repos/jupyter/notebook/branches{/branch} https://api.github.com/repos/jupyter/notebook/tags https://api.github.com/repos/jupyter/notebook/git/blobs{/sha} https://api.github.com/repos/jupyter/notebook/git/tags{/sha} https://api.github.com/repos/jupyter/notebook/git/refs{/sha} https://api.github.com/repos/jupyter/notebook/git/trees{/sha} https://api.github.com/repos/jupyter/notebook/statuses/{sha} https://api.github.com/repos/jupyter/notebook/languages https://api.github.com/repos/jupyter/notebook/stargazers https://api.github.com/repos/jupyter/notebook/contributors https://api.github.com/repos/jupyter/notebook/subscribers https://api.github.com/repos/jupyter/notebook/subscription https://api.github.com/repos/jupyter/notebook/commits{/sha} https://api.github.com/repos/jupyter/notebook/git/commits{/sha} https://api.github.com/repos/jupyter/notebook/comments{/number} https://api.github.com/repos/jupyter/notebook/issues/comments{/number} https://api.github.com/repos/jupyter/notebook/contents/{+path} https://api.github.com/repos/jupyter/notebook/compare/{base}...{head} https://api.github.com/repos/jupyter/notebook/merges https://api.github.com/repos/jupyter/notebook/{archive_format}{/ref} https://api.github.com/repos/jupyter/notebook/downloads https://api.github.com/repos/jupyter/notebook/issues{/number} https://api.github.com/repos/jupyter/notebook/pulls{/number} https://api.github.com/repos/jupyter/notebook/milestones{/number} https://api.github.com/repos/jupyter/notebook/notifications{?since,all,participating} https://api.github.com/repos/jupyter/notebook/labels{/name} https://api.github.com/repos/jupyter/notebook/releases{/id} https://api.github.com/repos/jupyter/notebook/deployments 2015-04-09 06:58:03 2023-04-03 08:03:42 2023-04-03 11:37:17 git://github.com/jupyter/notebook.git git@github.com:jupyter/notebook.git https://github.com/jupyter/notebook.git https://github.com/jupyter/notebook https://jupyter-notebook.readthedocs.io/ 36583 9920 9920 Jupyter Notebook True True True False False True 4052 None False False 2054 {'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='} True False False ['closember', 'jupyter', 'jupyter-notebook', 'notebook'] public 4052 2054 9920 main 1.0
27844645 MDEwOlJlcG9zaXRvcnkyNzg0NDY0NQ== jupyter-themes dunovank/jupyter-themes False {'login': 'dunovank', 'id': 3844814, 'node_id': 'MDQ6VXNlcjM4NDQ4MTQ=', 'avatar_url': 'https://avatars.githubusercontent.com/u/3844814?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dunovank', 'html_url': 'https://github.com/dunovank', 'followers_url': 'https://api.github.com/users/dunovank/followers', 'following_url': 'https://api.github.com/users/dunovank/following{/other_user}', 'gists_url': 'https://api.github.com/users/dunovank/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dunovank/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dunovank/subscriptions', 'organizations_url': 'https://api.github.com/users/dunovank/orgs', 'repos_url': 'https://api.github.com/users/dunovank/repos', 'events_url': 'https://api.github.com/users/dunovank/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dunovank/received_events', 'type': 'User', 'site_admin': False} https://github.com/dunovank/jupyter-themes Custom Jupyter Notebook Themes False https://api.github.com/repos/dunovank/jupyter-themes https://api.github.com/repos/dunovank/jupyter-themes/forks https://api.github.com/repos/dunovank/jupyter-themes/keys{/key_id} https://api.github.com/repos/dunovank/jupyter-themes/collaborators{/collaborator} https://api.github.com/repos/dunovank/jupyter-themes/teams https://api.github.com/repos/dunovank/jupyter-themes/hooks https://api.github.com/repos/dunovank/jupyter-themes/issues/events{/number} https://api.github.com/repos/dunovank/jupyter-themes/events https://api.github.com/repos/dunovank/jupyter-themes/assignees{/user} https://api.github.com/repos/dunovank/jupyter-themes/branches{/branch} https://api.github.com/repos/dunovank/jupyter-themes/tags https://api.github.com/repos/dunovank/jupyter-themes/git/blobs{/sha} https://api.github.com/repos/dunovank/jupyter-themes/git/tags{/sha} https://api.github.com/repos/dunovank/jupyter-themes/git/refs{/sha} https://api.github.com/repos/dunovank/jupyter-themes/git/trees{/sha} https://api.github.com/repos/dunovank/jupyter-themes/statuses/{sha} https://api.github.com/repos/dunovank/jupyter-themes/languages https://api.github.com/repos/dunovank/jupyter-themes/stargazers https://api.github.com/repos/dunovank/jupyter-themes/contributors https://api.github.com/repos/dunovank/jupyter-themes/subscribers https://api.github.com/repos/dunovank/jupyter-themes/subscription https://api.github.com/repos/dunovank/jupyter-themes/commits{/sha} https://api.github.com/repos/dunovank/jupyter-themes/git/commits{/sha} https://api.github.com/repos/dunovank/jupyter-themes/comments{/number} https://api.github.com/repos/dunovank/jupyter-themes/issues/comments{/number} https://api.github.com/repos/dunovank/jupyter-themes/contents/{+path} https://api.github.com/repos/dunovank/jupyter-themes/compare/{base}...{head} https://api.github.com/repos/dunovank/jupyter-themes/merges https://api.github.com/repos/dunovank/jupyter-themes/{archive_format}{/ref} https://api.github.com/repos/dunovank/jupyter-themes/downloads https://api.github.com/repos/dunovank/jupyter-themes/issues{/number} https://api.github.com/repos/dunovank/jupyter-themes/pulls{/number} https://api.github.com/repos/dunovank/jupyter-themes/milestones{/number} https://api.github.com/repos/dunovank/jupyter-themes/notifications{?since,all,participating} https://api.github.com/repos/dunovank/jupyter-themes/labels{/name} https://api.github.com/repos/dunovank/jupyter-themes/releases{/id} https://api.github.com/repos/dunovank/jupyter-themes/deployments 2014-12-10 23:22:23 2023-04-03 03:54:43 2022-10-17 19:47:53 git://github.com/dunovank/jupyter-themes.git git@github.com:dunovank/jupyter-themes.git https://github.com/dunovank/jupyter-themes.git https://github.com/dunovank/jupyter-themes 46387 9489 9489 CSS True True True True False False 1059 None False False 199 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['css', 'jupyter', 'jupyter-notebook', 'jupyter-themes', 'syntax-highlighting', 'theme'] public 1059 199 9489 master 1.0
91485880 MDEwOlJlcG9zaXRvcnk5MTQ4NTg4MA== numerical-linear-algebra fastai/numerical-linear-algebra False {'login': 'fastai', 'id': 20547620, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjIwNTQ3NjIw', 'avatar_url': 'https://avatars.githubusercontent.com/u/20547620?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/fastai', 'html_url': 'https://github.com/fastai', 'followers_url': 'https://api.github.com/users/fastai/followers', 'following_url': 'https://api.github.com/users/fastai/following{/other_user}', 'gists_url': 'https://api.github.com/users/fastai/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/fastai/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/fastai/subscriptions', 'organizations_url': 'https://api.github.com/users/fastai/orgs', 'repos_url': 'https://api.github.com/users/fastai/repos', 'events_url': 'https://api.github.com/users/fastai/events{/privacy}', 'received_events_url': 'https://api.github.com/users/fastai/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/fastai/numerical-linear-algebra Free online textbook of Jupyter notebooks for fast.ai Computational Linear Algebra course False https://api.github.com/repos/fastai/numerical-linear-algebra https://api.github.com/repos/fastai/numerical-linear-algebra/forks https://api.github.com/repos/fastai/numerical-linear-algebra/keys{/key_id} https://api.github.com/repos/fastai/numerical-linear-algebra/collaborators{/collaborator} https://api.github.com/repos/fastai/numerical-linear-algebra/teams https://api.github.com/repos/fastai/numerical-linear-algebra/hooks https://api.github.com/repos/fastai/numerical-linear-algebra/issues/events{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/events https://api.github.com/repos/fastai/numerical-linear-algebra/assignees{/user} https://api.github.com/repos/fastai/numerical-linear-algebra/branches{/branch} https://api.github.com/repos/fastai/numerical-linear-algebra/tags https://api.github.com/repos/fastai/numerical-linear-algebra/git/blobs{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/git/tags{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/git/refs{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/git/trees{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/statuses/{sha} https://api.github.com/repos/fastai/numerical-linear-algebra/languages https://api.github.com/repos/fastai/numerical-linear-algebra/stargazers https://api.github.com/repos/fastai/numerical-linear-algebra/contributors https://api.github.com/repos/fastai/numerical-linear-algebra/subscribers https://api.github.com/repos/fastai/numerical-linear-algebra/subscription https://api.github.com/repos/fastai/numerical-linear-algebra/commits{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/git/commits{/sha} https://api.github.com/repos/fastai/numerical-linear-algebra/comments{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/issues/comments{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/contents/{+path} https://api.github.com/repos/fastai/numerical-linear-algebra/compare/{base}...{head} https://api.github.com/repos/fastai/numerical-linear-algebra/merges https://api.github.com/repos/fastai/numerical-linear-algebra/{archive_format}{/ref} https://api.github.com/repos/fastai/numerical-linear-algebra/downloads https://api.github.com/repos/fastai/numerical-linear-algebra/issues{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/pulls{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/milestones{/number} https://api.github.com/repos/fastai/numerical-linear-algebra/notifications{?since,all,participating} https://api.github.com/repos/fastai/numerical-linear-algebra/labels{/name} https://api.github.com/repos/fastai/numerical-linear-algebra/releases{/id} https://api.github.com/repos/fastai/numerical-linear-algebra/deployments 2017-05-16 17:28:12 2023-04-03 10:50:04 2023-03-25 12:56:30 git://github.com/fastai/numerical-linear-algebra.git git@github.com:fastai/numerical-linear-algebra.git https://github.com/fastai/numerical-linear-algebra.git https://github.com/fastai/numerical-linear-algebra http://www.fast.ai/2017/07/17/num-lin-alg/ 64028 9346 9346 Jupyter Notebook True True True True False False 2380 None False False 11 {'key': None, 'name': None, 'spdx_id': None, 'url': None, 'node_id': None} True False False ['algorithms', 'data-science', 'deep-learning', 'linear-algebra', 'machine-learning', 'numpy', 'python'] public 2380 11 9346 master 1.0
107937815 MDEwOlJlcG9zaXRvcnkxMDc5Mzc4MTU= amazon-sagemaker-examples aws/amazon-sagemaker-examples False {'login': 'aws', 'id': 2232217, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjIyMzIyMTc=', 'avatar_url': 'https://avatars.githubusercontent.com/u/2232217?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/aws', 'html_url': 'https://github.com/aws', 'followers_url': 'https://api.github.com/users/aws/followers', 'following_url': 'https://api.github.com/users/aws/following{/other_user}', 'gists_url': 'https://api.github.com/users/aws/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/aws/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/aws/subscriptions', 'organizations_url': 'https://api.github.com/users/aws/orgs', 'repos_url': 'https://api.github.com/users/aws/repos', 'events_url': 'https://api.github.com/users/aws/events{/privacy}', 'received_events_url': 'https://api.github.com/users/aws/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/aws/amazon-sagemaker-examples Example 📓 Jupyter notebooks that demonstrate how to build, train, and deploy machine learning models using 🧠 Amazon SageMaker. False https://api.github.com/repos/aws/amazon-sagemaker-examples https://api.github.com/repos/aws/amazon-sagemaker-examples/forks https://api.github.com/repos/aws/amazon-sagemaker-examples/keys{/key_id} https://api.github.com/repos/aws/amazon-sagemaker-examples/collaborators{/collaborator} https://api.github.com/repos/aws/amazon-sagemaker-examples/teams https://api.github.com/repos/aws/amazon-sagemaker-examples/hooks https://api.github.com/repos/aws/amazon-sagemaker-examples/issues/events{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/events https://api.github.com/repos/aws/amazon-sagemaker-examples/assignees{/user} https://api.github.com/repos/aws/amazon-sagemaker-examples/branches{/branch} https://api.github.com/repos/aws/amazon-sagemaker-examples/tags https://api.github.com/repos/aws/amazon-sagemaker-examples/git/blobs{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/git/tags{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/git/refs{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/git/trees{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/statuses/{sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/languages https://api.github.com/repos/aws/amazon-sagemaker-examples/stargazers https://api.github.com/repos/aws/amazon-sagemaker-examples/contributors https://api.github.com/repos/aws/amazon-sagemaker-examples/subscribers https://api.github.com/repos/aws/amazon-sagemaker-examples/subscription https://api.github.com/repos/aws/amazon-sagemaker-examples/commits{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/git/commits{/sha} https://api.github.com/repos/aws/amazon-sagemaker-examples/comments{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/issues/comments{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/contents/{+path} https://api.github.com/repos/aws/amazon-sagemaker-examples/compare/{base}...{head} https://api.github.com/repos/aws/amazon-sagemaker-examples/merges https://api.github.com/repos/aws/amazon-sagemaker-examples/{archive_format}{/ref} https://api.github.com/repos/aws/amazon-sagemaker-examples/downloads https://api.github.com/repos/aws/amazon-sagemaker-examples/issues{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/pulls{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/milestones{/number} https://api.github.com/repos/aws/amazon-sagemaker-examples/notifications{?since,all,participating} https://api.github.com/repos/aws/amazon-sagemaker-examples/labels{/name} https://api.github.com/repos/aws/amazon-sagemaker-examples/releases{/id} https://api.github.com/repos/aws/amazon-sagemaker-examples/deployments 2017-10-23 05:55:22 2023-04-03 09:52:06 2023-04-03 13:40:44 git://github.com/aws/amazon-sagemaker-examples.git git@github.com:aws/amazon-sagemaker-examples.git https://github.com/aws/amazon-sagemaker-examples.git https://github.com/aws/amazon-sagemaker-examples https://sagemaker-examples.readthedocs.io 560013 8112 8112 Jupyter Notebook True True True False False True 6041 None False False 743 {'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='} True False False ['aws', 'data-science', 'deep-learning', 'examples', 'inference', 'jupyter-notebook', 'machine-learning', 'mlops', 'reinforcement-learning', 'sagemaker', 'training'] public 6041 743 8112 main 1.0
39144867 MDEwOlJlcG9zaXRvcnkzOTE0NDg2Nw== docker-stacks jupyter/docker-stacks False {'login': 'jupyter', 'id': 7388996, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjczODg5OTY=', 'avatar_url': 'https://avatars.githubusercontent.com/u/7388996?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jupyter', 'html_url': 'https://github.com/jupyter', 'followers_url': 'https://api.github.com/users/jupyter/followers', 'following_url': 'https://api.github.com/users/jupyter/following{/other_user}', 'gists_url': 'https://api.github.com/users/jupyter/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jupyter/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jupyter/subscriptions', 'organizations_url': 'https://api.github.com/users/jupyter/orgs', 'repos_url': 'https://api.github.com/users/jupyter/repos', 'events_url': 'https://api.github.com/users/jupyter/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jupyter/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/jupyter/docker-stacks Ready-to-run Docker images containing Jupyter applications False https://api.github.com/repos/jupyter/docker-stacks https://api.github.com/repos/jupyter/docker-stacks/forks https://api.github.com/repos/jupyter/docker-stacks/keys{/key_id} https://api.github.com/repos/jupyter/docker-stacks/collaborators{/collaborator} https://api.github.com/repos/jupyter/docker-stacks/teams https://api.github.com/repos/jupyter/docker-stacks/hooks https://api.github.com/repos/jupyter/docker-stacks/issues/events{/number} https://api.github.com/repos/jupyter/docker-stacks/events https://api.github.com/repos/jupyter/docker-stacks/assignees{/user} https://api.github.com/repos/jupyter/docker-stacks/branches{/branch} https://api.github.com/repos/jupyter/docker-stacks/tags https://api.github.com/repos/jupyter/docker-stacks/git/blobs{/sha} https://api.github.com/repos/jupyter/docker-stacks/git/tags{/sha} https://api.github.com/repos/jupyter/docker-stacks/git/refs{/sha} https://api.github.com/repos/jupyter/docker-stacks/git/trees{/sha} https://api.github.com/repos/jupyter/docker-stacks/statuses/{sha} https://api.github.com/repos/jupyter/docker-stacks/languages https://api.github.com/repos/jupyter/docker-stacks/stargazers https://api.github.com/repos/jupyter/docker-stacks/contributors https://api.github.com/repos/jupyter/docker-stacks/subscribers https://api.github.com/repos/jupyter/docker-stacks/subscription https://api.github.com/repos/jupyter/docker-stacks/commits{/sha} https://api.github.com/repos/jupyter/docker-stacks/git/commits{/sha} https://api.github.com/repos/jupyter/docker-stacks/comments{/number} https://api.github.com/repos/jupyter/docker-stacks/issues/comments{/number} https://api.github.com/repos/jupyter/docker-stacks/contents/{+path} https://api.github.com/repos/jupyter/docker-stacks/compare/{base}...{head} https://api.github.com/repos/jupyter/docker-stacks/merges https://api.github.com/repos/jupyter/docker-stacks/{archive_format}{/ref} https://api.github.com/repos/jupyter/docker-stacks/downloads https://api.github.com/repos/jupyter/docker-stacks/issues{/number} https://api.github.com/repos/jupyter/docker-stacks/pulls{/number} https://api.github.com/repos/jupyter/docker-stacks/milestones{/number} https://api.github.com/repos/jupyter/docker-stacks/notifications{?since,all,participating} https://api.github.com/repos/jupyter/docker-stacks/labels{/name} https://api.github.com/repos/jupyter/docker-stacks/releases{/id} https://api.github.com/repos/jupyter/docker-stacks/deployments 2015-07-15 15:30:00 2023-04-03 06:41:13 2023-04-03 06:35:40 git://github.com/jupyter/docker-stacks.git git@github.com:jupyter/docker-stacks.git https://github.com/jupyter/docker-stacks.git https://github.com/jupyter/docker-stacks https://jupyter-docker-stacks.readthedocs.io 4940 7193 7193 Python True False True True False False 2876 None False False 22 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['docker', 'ipython', 'ipython-notebook', 'jupyter', 'jupyter-notebook', 'jupyter-notebooks', 'jupyterhub', 'jupyterlab', 'notebook', 'python'] public 2876 22 7193 main 1.0
20785986 MDEwOlJlcG9zaXRvcnkyMDc4NTk4Ng== jupyterhub jupyterhub/jupyterhub False {'login': 'jupyterhub', 'id': 17927519, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjE3OTI3NTE5', 'avatar_url': 'https://avatars.githubusercontent.com/u/17927519?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/jupyterhub', 'html_url': 'https://github.com/jupyterhub', 'followers_url': 'https://api.github.com/users/jupyterhub/followers', 'following_url': 'https://api.github.com/users/jupyterhub/following{/other_user}', 'gists_url': 'https://api.github.com/users/jupyterhub/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/jupyterhub/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/jupyterhub/subscriptions', 'organizations_url': 'https://api.github.com/users/jupyterhub/orgs', 'repos_url': 'https://api.github.com/users/jupyterhub/repos', 'events_url': 'https://api.github.com/users/jupyterhub/events{/privacy}', 'received_events_url': 'https://api.github.com/users/jupyterhub/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/jupyterhub/jupyterhub Multi-user server for Jupyter notebooks False https://api.github.com/repos/jupyterhub/jupyterhub https://api.github.com/repos/jupyterhub/jupyterhub/forks https://api.github.com/repos/jupyterhub/jupyterhub/keys{/key_id} https://api.github.com/repos/jupyterhub/jupyterhub/collaborators{/collaborator} https://api.github.com/repos/jupyterhub/jupyterhub/teams https://api.github.com/repos/jupyterhub/jupyterhub/hooks https://api.github.com/repos/jupyterhub/jupyterhub/issues/events{/number} https://api.github.com/repos/jupyterhub/jupyterhub/events https://api.github.com/repos/jupyterhub/jupyterhub/assignees{/user} https://api.github.com/repos/jupyterhub/jupyterhub/branches{/branch} https://api.github.com/repos/jupyterhub/jupyterhub/tags https://api.github.com/repos/jupyterhub/jupyterhub/git/blobs{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/git/tags{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/git/refs{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/git/trees{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/statuses/{sha} https://api.github.com/repos/jupyterhub/jupyterhub/languages https://api.github.com/repos/jupyterhub/jupyterhub/stargazers https://api.github.com/repos/jupyterhub/jupyterhub/contributors https://api.github.com/repos/jupyterhub/jupyterhub/subscribers https://api.github.com/repos/jupyterhub/jupyterhub/subscription https://api.github.com/repos/jupyterhub/jupyterhub/commits{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/git/commits{/sha} https://api.github.com/repos/jupyterhub/jupyterhub/comments{/number} https://api.github.com/repos/jupyterhub/jupyterhub/issues/comments{/number} https://api.github.com/repos/jupyterhub/jupyterhub/contents/{+path} https://api.github.com/repos/jupyterhub/jupyterhub/compare/{base}...{head} https://api.github.com/repos/jupyterhub/jupyterhub/merges https://api.github.com/repos/jupyterhub/jupyterhub/{archive_format}{/ref} https://api.github.com/repos/jupyterhub/jupyterhub/downloads https://api.github.com/repos/jupyterhub/jupyterhub/issues{/number} https://api.github.com/repos/jupyterhub/jupyterhub/pulls{/number} https://api.github.com/repos/jupyterhub/jupyterhub/milestones{/number} https://api.github.com/repos/jupyterhub/jupyterhub/notifications{?since,all,participating} https://api.github.com/repos/jupyterhub/jupyterhub/labels{/name} https://api.github.com/repos/jupyterhub/jupyterhub/releases{/id} https://api.github.com/repos/jupyterhub/jupyterhub/deployments 2014-06-12 23:22:10 2023-04-03 10:13:45 2023-04-01 10:00:45 git://github.com/jupyterhub/jupyterhub.git git@github.com:jupyterhub/jupyterhub.git https://github.com/jupyterhub/jupyterhub.git https://github.com/jupyterhub/jupyterhub https://jupyterhub.readthedocs.io 30454 7126 7126 Python True True True True False False 1888 None False False 182 {'key': 'other', 'name': 'Other', 'spdx_id': 'NOASSERTION', 'url': None, 'node_id': 'MDc6TGljZW5zZTA='} True False False ['ipython', 'jupyter-notebook', 'jupyterhub', 'multi-user', 'python'] public 1888 182 7126 main 1.0
57165232 MDEwOlJlcG9zaXRvcnk1NzE2NTIzMg== wowchemy-hugo-themes wowchemy/wowchemy-hugo-themes False {'login': 'wowchemy', 'id': 28016820, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjI4MDE2ODIw', 'avatar_url': 'https://avatars.githubusercontent.com/u/28016820?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/wowchemy', 'html_url': 'https://github.com/wowchemy', 'followers_url': 'https://api.github.com/users/wowchemy/followers', 'following_url': 'https://api.github.com/users/wowchemy/following{/other_user}', 'gists_url': 'https://api.github.com/users/wowchemy/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/wowchemy/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/wowchemy/subscriptions', 'organizations_url': 'https://api.github.com/users/wowchemy/orgs', 'repos_url': 'https://api.github.com/users/wowchemy/repos', 'events_url': 'https://api.github.com/users/wowchemy/events{/privacy}', 'received_events_url': 'https://api.github.com/users/wowchemy/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/wowchemy/wowchemy-hugo-themes 🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience False https://api.github.com/repos/wowchemy/wowchemy-hugo-themes https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/forks https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/keys{/key_id} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/collaborators{/collaborator} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/teams https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/hooks https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/issues/events{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/events https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/assignees{/user} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/branches{/branch} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/tags https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/git/blobs{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/git/tags{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/git/refs{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/git/trees{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/statuses/{sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/languages https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/stargazers https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/contributors https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/subscribers https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/subscription https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/commits{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/git/commits{/sha} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/comments{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/issues/comments{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/contents/{+path} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/compare/{base}...{head} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/merges https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/{archive_format}{/ref} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/downloads https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/issues{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/pulls{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/milestones{/number} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/notifications{?since,all,participating} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/labels{/name} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/releases{/id} https://api.github.com/repos/wowchemy/wowchemy-hugo-themes/deployments 2016-04-26 22:09:15 2023-04-03 10:53:24 2023-03-23 17:50:00 git://github.com/wowchemy/wowchemy-hugo-themes.git git@github.com:wowchemy/wowchemy-hugo-themes.git https://github.com/wowchemy/wowchemy-hugo-themes.git https://github.com/wowchemy/wowchemy-hugo-themes https://wowchemy.com/templates/ 50410 7102 7102 SCSS True True True False False True 2794 None False False 18 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['academic', 'blog-engine', 'cms', 'data-science', 'documentation-tool', 'github-pages', 'hugo', 'hugo-site', 'hugo-theme', 'jupyter', 'netlify', 'open-science', 'page-builder', 'r', 'rmarkdown', 'rstudio', 'static-site-generator', 'theme', 'themes', 'website-builder'] public 2794 18 7102 main 1.0
108539084 MDEwOlJlcG9zaXRvcnkxMDg1MzkwODQ= deepo ufoym/deepo False {'login': 'ufoym', 'id': 2270240, 'node_id': 'MDQ6VXNlcjIyNzAyNDA=', 'avatar_url': 'https://avatars.githubusercontent.com/u/2270240?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/ufoym', 'html_url': 'https://github.com/ufoym', 'followers_url': 'https://api.github.com/users/ufoym/followers', 'following_url': 'https://api.github.com/users/ufoym/following{/other_user}', 'gists_url': 'https://api.github.com/users/ufoym/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/ufoym/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/ufoym/subscriptions', 'organizations_url': 'https://api.github.com/users/ufoym/orgs', 'repos_url': 'https://api.github.com/users/ufoym/repos', 'events_url': 'https://api.github.com/users/ufoym/events{/privacy}', 'received_events_url': 'https://api.github.com/users/ufoym/received_events', 'type': 'User', 'site_admin': False} https://github.com/ufoym/deepo Setup and customize deep learning environment in seconds. False https://api.github.com/repos/ufoym/deepo https://api.github.com/repos/ufoym/deepo/forks https://api.github.com/repos/ufoym/deepo/keys{/key_id} https://api.github.com/repos/ufoym/deepo/collaborators{/collaborator} https://api.github.com/repos/ufoym/deepo/teams https://api.github.com/repos/ufoym/deepo/hooks https://api.github.com/repos/ufoym/deepo/issues/events{/number} https://api.github.com/repos/ufoym/deepo/events https://api.github.com/repos/ufoym/deepo/assignees{/user} https://api.github.com/repos/ufoym/deepo/branches{/branch} https://api.github.com/repos/ufoym/deepo/tags https://api.github.com/repos/ufoym/deepo/git/blobs{/sha} https://api.github.com/repos/ufoym/deepo/git/tags{/sha} https://api.github.com/repos/ufoym/deepo/git/refs{/sha} https://api.github.com/repos/ufoym/deepo/git/trees{/sha} https://api.github.com/repos/ufoym/deepo/statuses/{sha} https://api.github.com/repos/ufoym/deepo/languages https://api.github.com/repos/ufoym/deepo/stargazers https://api.github.com/repos/ufoym/deepo/contributors https://api.github.com/repos/ufoym/deepo/subscribers https://api.github.com/repos/ufoym/deepo/subscription https://api.github.com/repos/ufoym/deepo/commits{/sha} https://api.github.com/repos/ufoym/deepo/git/commits{/sha} https://api.github.com/repos/ufoym/deepo/comments{/number} https://api.github.com/repos/ufoym/deepo/issues/comments{/number} https://api.github.com/repos/ufoym/deepo/contents/{+path} https://api.github.com/repos/ufoym/deepo/compare/{base}...{head} https://api.github.com/repos/ufoym/deepo/merges https://api.github.com/repos/ufoym/deepo/{archive_format}{/ref} https://api.github.com/repos/ufoym/deepo/downloads https://api.github.com/repos/ufoym/deepo/issues{/number} https://api.github.com/repos/ufoym/deepo/pulls{/number} https://api.github.com/repos/ufoym/deepo/milestones{/number} https://api.github.com/repos/ufoym/deepo/notifications{?since,all,participating} https://api.github.com/repos/ufoym/deepo/labels{/name} https://api.github.com/repos/ufoym/deepo/releases{/id} https://api.github.com/repos/ufoym/deepo/deployments 2017-10-27 11:41:49 2023-04-03 06:03:04 2023-01-29 05:49:54 git://github.com/ufoym/deepo.git git@github.com:ufoym/deepo.git https://github.com/ufoym/deepo.git https://github.com/ufoym/deepo http://ufoym.com/deepo 375 6318 6318 Python True True True True True False 776 None True False 1 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['caffe', 'caffe2', 'chainer', 'cntk', 'deep-learning', 'docker-image', 'dockerfile-generator', 'jupyter', 'keras', 'lasagne', 'mxnet', 'onnx', 'pytorch', 'sonnet', 'tensorflow', 'theano', 'torch'] public 776 1 6318 master 1.0
47042287 MDEwOlJlcG9zaXRvcnk0NzA0MjI4Nw== py codebasics/py False {'login': 'codebasics', 'id': 16063416, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjE2MDYzNDE2', 'avatar_url': 'https://avatars.githubusercontent.com/u/16063416?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/codebasics', 'html_url': 'https://github.com/codebasics', 'followers_url': 'https://api.github.com/users/codebasics/followers', 'following_url': 'https://api.github.com/users/codebasics/following{/other_user}', 'gists_url': 'https://api.github.com/users/codebasics/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/codebasics/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/codebasics/subscriptions', 'organizations_url': 'https://api.github.com/users/codebasics/orgs', 'repos_url': 'https://api.github.com/users/codebasics/repos', 'events_url': 'https://api.github.com/users/codebasics/events{/privacy}', 'received_events_url': 'https://api.github.com/users/codebasics/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/codebasics/py Repository to store sample python programs for python learning False https://api.github.com/repos/codebasics/py https://api.github.com/repos/codebasics/py/forks https://api.github.com/repos/codebasics/py/keys{/key_id} https://api.github.com/repos/codebasics/py/collaborators{/collaborator} https://api.github.com/repos/codebasics/py/teams https://api.github.com/repos/codebasics/py/hooks https://api.github.com/repos/codebasics/py/issues/events{/number} https://api.github.com/repos/codebasics/py/events https://api.github.com/repos/codebasics/py/assignees{/user} https://api.github.com/repos/codebasics/py/branches{/branch} https://api.github.com/repos/codebasics/py/tags https://api.github.com/repos/codebasics/py/git/blobs{/sha} https://api.github.com/repos/codebasics/py/git/tags{/sha} https://api.github.com/repos/codebasics/py/git/refs{/sha} https://api.github.com/repos/codebasics/py/git/trees{/sha} https://api.github.com/repos/codebasics/py/statuses/{sha} https://api.github.com/repos/codebasics/py/languages https://api.github.com/repos/codebasics/py/stargazers https://api.github.com/repos/codebasics/py/contributors https://api.github.com/repos/codebasics/py/subscribers https://api.github.com/repos/codebasics/py/subscription https://api.github.com/repos/codebasics/py/commits{/sha} https://api.github.com/repos/codebasics/py/git/commits{/sha} https://api.github.com/repos/codebasics/py/comments{/number} https://api.github.com/repos/codebasics/py/issues/comments{/number} https://api.github.com/repos/codebasics/py/contents/{+path} https://api.github.com/repos/codebasics/py/compare/{base}...{head} https://api.github.com/repos/codebasics/py/merges https://api.github.com/repos/codebasics/py/{archive_format}{/ref} https://api.github.com/repos/codebasics/py/downloads https://api.github.com/repos/codebasics/py/issues{/number} https://api.github.com/repos/codebasics/py/pulls{/number} https://api.github.com/repos/codebasics/py/milestones{/number} https://api.github.com/repos/codebasics/py/notifications{?since,all,participating} https://api.github.com/repos/codebasics/py/labels{/name} https://api.github.com/repos/codebasics/py/releases{/id} https://api.github.com/repos/codebasics/py/deployments 2015-11-28 22:47:16 2023-04-03 09:08:37 2023-03-31 16:53:12 git://github.com/codebasics/py.git git@github.com:codebasics/py.git https://github.com/codebasics/py.git https://github.com/codebasics/py None 201379 6068 6068 Jupyter Notebook True True True True False False 16098 None False False 123 {'key': None, 'name': None, 'spdx_id': None, 'url': None, 'node_id': None} True False False ['jupyter', 'jupyter-notebook', 'jupyter-notebooks', 'jupyter-tutorial', 'numpy', 'numpy-arrays', 'numpy-tutorial', 'pandas', 'pandas-dataframe', 'pandas-tutorial', 'python', 'python-pandas', 'python-tutorial', 'python-tutorials'] public 16098 123 6068 master 1.0
37496521 MDEwOlJlcG9zaXRvcnkzNzQ5NjUyMQ== nteract nteract/nteract False {'login': 'nteract', 'id': 12401040, 'node_id': 'MDEyOk9yZ2FuaXphdGlvbjEyNDAxMDQw', 'avatar_url': 'https://avatars.githubusercontent.com/u/12401040?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/nteract', 'html_url': 'https://github.com/nteract', 'followers_url': 'https://api.github.com/users/nteract/followers', 'following_url': 'https://api.github.com/users/nteract/following{/other_user}', 'gists_url': 'https://api.github.com/users/nteract/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/nteract/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/nteract/subscriptions', 'organizations_url': 'https://api.github.com/users/nteract/orgs', 'repos_url': 'https://api.github.com/users/nteract/repos', 'events_url': 'https://api.github.com/users/nteract/events{/privacy}', 'received_events_url': 'https://api.github.com/users/nteract/received_events', 'type': 'Organization', 'site_admin': False} https://github.com/nteract/nteract 📘 The interactive computing suite for you! ✨ False https://api.github.com/repos/nteract/nteract https://api.github.com/repos/nteract/nteract/forks https://api.github.com/repos/nteract/nteract/keys{/key_id} https://api.github.com/repos/nteract/nteract/collaborators{/collaborator} https://api.github.com/repos/nteract/nteract/teams https://api.github.com/repos/nteract/nteract/hooks https://api.github.com/repos/nteract/nteract/issues/events{/number} https://api.github.com/repos/nteract/nteract/events https://api.github.com/repos/nteract/nteract/assignees{/user} https://api.github.com/repos/nteract/nteract/branches{/branch} https://api.github.com/repos/nteract/nteract/tags https://api.github.com/repos/nteract/nteract/git/blobs{/sha} https://api.github.com/repos/nteract/nteract/git/tags{/sha} https://api.github.com/repos/nteract/nteract/git/refs{/sha} https://api.github.com/repos/nteract/nteract/git/trees{/sha} https://api.github.com/repos/nteract/nteract/statuses/{sha} https://api.github.com/repos/nteract/nteract/languages https://api.github.com/repos/nteract/nteract/stargazers https://api.github.com/repos/nteract/nteract/contributors https://api.github.com/repos/nteract/nteract/subscribers https://api.github.com/repos/nteract/nteract/subscription https://api.github.com/repos/nteract/nteract/commits{/sha} https://api.github.com/repos/nteract/nteract/git/commits{/sha} https://api.github.com/repos/nteract/nteract/comments{/number} https://api.github.com/repos/nteract/nteract/issues/comments{/number} https://api.github.com/repos/nteract/nteract/contents/{+path} https://api.github.com/repos/nteract/nteract/compare/{base}...{head} https://api.github.com/repos/nteract/nteract/merges https://api.github.com/repos/nteract/nteract/{archive_format}{/ref} https://api.github.com/repos/nteract/nteract/downloads https://api.github.com/repos/nteract/nteract/issues{/number} https://api.github.com/repos/nteract/nteract/pulls{/number} https://api.github.com/repos/nteract/nteract/milestones{/number} https://api.github.com/repos/nteract/nteract/notifications{?since,all,participating} https://api.github.com/repos/nteract/nteract/labels{/name} https://api.github.com/repos/nteract/nteract/releases{/id} https://api.github.com/repos/nteract/nteract/deployments 2015-06-15 23:21:49 2023-04-02 22:07:30 2023-03-26 09:07:10 git://github.com/nteract/nteract.git git@github.com:nteract/nteract.git https://github.com/nteract/nteract.git https://github.com/nteract/nteract https://nteract.io 41011 5993 5993 TypeScript True True True True False True 576 None False False 185 {'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='} True False False ['data-science', 'desktop-application', 'ipython', 'jupyter', 'jupyter-notebook', 'monorepo', 'notebook', 'nteract', 'react', 'react-components', 'repl', 'zeromq'] public 576 185 5993 main 1.0
137444487 MDEwOlJlcG9zaXRvcnkxMzc0NDQ0ODc= jupytext mwouts/jupytext False {'login': 'mwouts', 'id': 29915202, 'node_id': 'MDQ6VXNlcjI5OTE1MjAy', 'avatar_url': 'https://avatars.githubusercontent.com/u/29915202?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/mwouts', 'html_url': 'https://github.com/mwouts', 'followers_url': 'https://api.github.com/users/mwouts/followers', 'following_url': 'https://api.github.com/users/mwouts/following{/other_user}', 'gists_url': 'https://api.github.com/users/mwouts/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/mwouts/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/mwouts/subscriptions', 'organizations_url': 'https://api.github.com/users/mwouts/orgs', 'repos_url': 'https://api.github.com/users/mwouts/repos', 'events_url': 'https://api.github.com/users/mwouts/events{/privacy}', 'received_events_url': 'https://api.github.com/users/mwouts/received_events', 'type': 'User', 'site_admin': False} https://github.com/mwouts/jupytext Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts False https://api.github.com/repos/mwouts/jupytext https://api.github.com/repos/mwouts/jupytext/forks https://api.github.com/repos/mwouts/jupytext/keys{/key_id} https://api.github.com/repos/mwouts/jupytext/collaborators{/collaborator} https://api.github.com/repos/mwouts/jupytext/teams https://api.github.com/repos/mwouts/jupytext/hooks https://api.github.com/repos/mwouts/jupytext/issues/events{/number} https://api.github.com/repos/mwouts/jupytext/events https://api.github.com/repos/mwouts/jupytext/assignees{/user} https://api.github.com/repos/mwouts/jupytext/branches{/branch} https://api.github.com/repos/mwouts/jupytext/tags https://api.github.com/repos/mwouts/jupytext/git/blobs{/sha} https://api.github.com/repos/mwouts/jupytext/git/tags{/sha} https://api.github.com/repos/mwouts/jupytext/git/refs{/sha} https://api.github.com/repos/mwouts/jupytext/git/trees{/sha} https://api.github.com/repos/mwouts/jupytext/statuses/{sha} https://api.github.com/repos/mwouts/jupytext/languages https://api.github.com/repos/mwouts/jupytext/stargazers https://api.github.com/repos/mwouts/jupytext/contributors https://api.github.com/repos/mwouts/jupytext/subscribers https://api.github.com/repos/mwouts/jupytext/subscription https://api.github.com/repos/mwouts/jupytext/commits{/sha} https://api.github.com/repos/mwouts/jupytext/git/commits{/sha} https://api.github.com/repos/mwouts/jupytext/comments{/number} https://api.github.com/repos/mwouts/jupytext/issues/comments{/number} https://api.github.com/repos/mwouts/jupytext/contents/{+path} https://api.github.com/repos/mwouts/jupytext/compare/{base}...{head} https://api.github.com/repos/mwouts/jupytext/merges https://api.github.com/repos/mwouts/jupytext/{archive_format}{/ref} https://api.github.com/repos/mwouts/jupytext/downloads https://api.github.com/repos/mwouts/jupytext/issues{/number} https://api.github.com/repos/mwouts/jupytext/pulls{/number} https://api.github.com/repos/mwouts/jupytext/milestones{/number} https://api.github.com/repos/mwouts/jupytext/notifications{?since,all,participating} https://api.github.com/repos/mwouts/jupytext/labels{/name} https://api.github.com/repos/mwouts/jupytext/releases{/id} https://api.github.com/repos/mwouts/jupytext/deployments 2018-06-15 05:25:36 2023-04-03 08:36:14 2023-03-27 00:14:46 git://github.com/mwouts/jupytext.git git@github.com:mwouts/jupytext.git https://github.com/mwouts/jupytext.git https://github.com/mwouts/jupytext https://jupytext.readthedocs.io 24282 5904 5904 Python True True True True False False 382 None False False 97 {'key': 'mit', 'name': 'MIT License', 'spdx_id': 'MIT', 'url': 'https://api.github.com/licenses/mit', 'node_id': 'MDc6TGljZW5zZTEz'} True False False ['hydrogen', 'jupyter-notebook', 'jupyterlab', 'jupyterlab-extension', 'knitr', 'markdown', 'notebooks', 'python', 'rmarkdown', 'rstudio', 'version-control'] public 382 97 5904 main 1.0
99881209 MDEwOlJlcG9zaXRvcnk5OTg4MTIwOQ== machine-learning-mindmap dformoso/machine-learning-mindmap False {'login': 'dformoso', 'id': 2955131, 'node_id': 'MDQ6VXNlcjI5NTUxMzE=', 'avatar_url': 'https://avatars.githubusercontent.com/u/2955131?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dformoso', 'html_url': 'https://github.com/dformoso', 'followers_url': 'https://api.github.com/users/dformoso/followers', 'following_url': 'https://api.github.com/users/dformoso/following{/other_user}', 'gists_url': 'https://api.github.com/users/dformoso/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dformoso/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dformoso/subscriptions', 'organizations_url': 'https://api.github.com/users/dformoso/orgs', 'repos_url': 'https://api.github.com/users/dformoso/repos', 'events_url': 'https://api.github.com/users/dformoso/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dformoso/received_events', 'type': 'User', 'site_admin': False} https://github.com/dformoso/machine-learning-mindmap A mindmap summarising Machine Learning concepts, from Data Analysis to Deep Learning. False https://api.github.com/repos/dformoso/machine-learning-mindmap https://api.github.com/repos/dformoso/machine-learning-mindmap/forks https://api.github.com/repos/dformoso/machine-learning-mindmap/keys{/key_id} https://api.github.com/repos/dformoso/machine-learning-mindmap/collaborators{/collaborator} https://api.github.com/repos/dformoso/machine-learning-mindmap/teams https://api.github.com/repos/dformoso/machine-learning-mindmap/hooks https://api.github.com/repos/dformoso/machine-learning-mindmap/issues/events{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/events https://api.github.com/repos/dformoso/machine-learning-mindmap/assignees{/user} https://api.github.com/repos/dformoso/machine-learning-mindmap/branches{/branch} https://api.github.com/repos/dformoso/machine-learning-mindmap/tags https://api.github.com/repos/dformoso/machine-learning-mindmap/git/blobs{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/git/tags{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/git/refs{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/git/trees{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/statuses/{sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/languages https://api.github.com/repos/dformoso/machine-learning-mindmap/stargazers https://api.github.com/repos/dformoso/machine-learning-mindmap/contributors https://api.github.com/repos/dformoso/machine-learning-mindmap/subscribers https://api.github.com/repos/dformoso/machine-learning-mindmap/subscription https://api.github.com/repos/dformoso/machine-learning-mindmap/commits{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/git/commits{/sha} https://api.github.com/repos/dformoso/machine-learning-mindmap/comments{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/issues/comments{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/contents/{+path} https://api.github.com/repos/dformoso/machine-learning-mindmap/compare/{base}...{head} https://api.github.com/repos/dformoso/machine-learning-mindmap/merges https://api.github.com/repos/dformoso/machine-learning-mindmap/{archive_format}{/ref} https://api.github.com/repos/dformoso/machine-learning-mindmap/downloads https://api.github.com/repos/dformoso/machine-learning-mindmap/issues{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/pulls{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/milestones{/number} https://api.github.com/repos/dformoso/machine-learning-mindmap/notifications{?since,all,participating} https://api.github.com/repos/dformoso/machine-learning-mindmap/labels{/name} https://api.github.com/repos/dformoso/machine-learning-mindmap/releases{/id} https://api.github.com/repos/dformoso/machine-learning-mindmap/deployments 2017-08-10 04:29:24 2023-04-03 10:04:44 2020-05-30 07:34:20 git://github.com/dformoso/machine-learning-mindmap.git git@github.com:dformoso/machine-learning-mindmap.git https://github.com/dformoso/machine-learning-mindmap.git https://github.com/dformoso/machine-learning-mindmap None 15538 5766 5766 None True True True True False False 1001 None False False 4 {'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='} True False False ['cheatsheet', 'data', 'jupyter', 'learning', 'machine', 'machine-learning', 'mindmap', 'python', 'science'] public 1001 4 5766 master 1.0

However, this is a lot of information. After seeing what we’re working with, let’s pull the name of the repository, the author, the description, and the URL to make things cleaner. Let’s also limit our results to the top 5 starred repos.

%%sql
SELECT 
    name AS name,
    owner.login AS user,
    description AS description,
    html_url AS URL,
    stargazers_count AS stars
FROM read_json_auto('jupyterdata.json')
LIMIT 5
*  duckdb://
Done.
name user description URL stars
PythonDataScienceHandbook jakevdp Python Data Science Handbook: full text in Jupyter Notebooks https://github.com/jakevdp/PythonDataScienceHandbook 37971
handson-ml2 ageron A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2. https://github.com/ageron/handson-ml2 24454
tqdm tqdm A Fast, Extensible Progress Bar for Python and CLI https://github.com/tqdm/tqdm 24400
homemade-machine-learning trekhleb 🤖 Python examples of popular machine learning algorithms with interactive Jupyter demos and math being explained https://github.com/trekhleb/homemade-machine-learning 21103
dash plotly Data Apps & Dashboards for Python. No JavaScript Required. https://github.com/plotly/dash 18427

We can also load all of the pulled repositories that, say, have a certain range of stars:

%%sql
SELECT 
    name AS name,
    owner.login AS user,
    description AS description,
    html_url AS URL,
    stargazers_count AS stars
FROM read_json_auto('jupyterdata.json')
WHERE stargazers_count < 15000 AND stargazers_count > 10000 
*  duckdb://
Done.
name user description URL stars
jupyter jupyter Jupyter metapackage for installation, docs and chat https://github.com/jupyter/jupyter 14210
Screenshot-to-code emilwallner A neural network that transforms a design mock-up into a static website. https://github.com/emilwallner/Screenshot-to-code 13990
Kalman-and-Bayesian-Filters-in-Python rlabbe Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters, and more. All exercises include solutions. https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python 13478
jupyterlab jupyterlab JupyterLab computational environment. https://github.com/jupyterlab/jupyterlab 12775
kubeflow kubeflow Machine Learning Toolkit for Kubernetes https://github.com/kubeflow/kubeflow 12418
ds-cheatsheets FavioVazquez List of Data Science Cheatsheets to rule the world https://github.com/FavioVazquez/ds-cheatsheets 12056
dive-into-machine-learning dive-into-machine-learning Free ways to dive into machine learning with Python and Jupyter Notebook. Notebooks, courses, and other links. (First posted in 2016.) https://github.com/dive-into-machine-learning/dive-into-machine-learning 11127
PRML ctgk PRML algorithms implemented in Python https://github.com/ctgk/PRML 10934
ydata-profiling ydataai Create HTML profiling reports from pandas DataFrame objects https://github.com/ydataai/ydata-profiling 10429

And save it to a .csv file:

%%sql
COPY (
    SELECT
    name AS name,
    owner.login AS user,
    description AS description,
    html_url AS URL,
    stargazers_count AS stars
    FROM read_json_auto('jupyterdata.json')
    WHERE stargazers_count < 15000 AND stargazers_count > 10000 
)

TO 'jupyterdata.csv' (HEADER, DELIMITER ',');
*  duckdb://
Done.
Count
9
%%sql
SELECT * FROM 'jupyterdata.csv'
*  duckdb://
Done.
name user description URL stars
jupyter jupyter Jupyter metapackage for installation, docs and chat https://github.com/jupyter/jupyter 14210
Screenshot-to-code emilwallner A neural network that transforms a design mock-up into a static website. https://github.com/emilwallner/Screenshot-to-code 13990
Kalman-and-Bayesian-Filters-in-Python rlabbe Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters, and more. All exercises include solutions. https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python 13478
jupyterlab jupyterlab JupyterLab computational environment. https://github.com/jupyterlab/jupyterlab 12775
kubeflow kubeflow Machine Learning Toolkit for Kubernetes https://github.com/kubeflow/kubeflow 12418
ds-cheatsheets FavioVazquez List of Data Science Cheatsheets to rule the world https://github.com/FavioVazquez/ds-cheatsheets 12056
dive-into-machine-learning dive-into-machine-learning Free ways to dive into machine learning with Python and Jupyter Notebook. Notebooks, courses, and other links. (First posted in 2016.) https://github.com/dive-into-machine-learning/dive-into-machine-learning 11127
PRML ctgk PRML algorithms implemented in Python https://github.com/ctgk/PRML 10934
ydata-profiling ydataai Create HTML profiling reports from pandas DataFrame objects https://github.com/ydataai/ydata-profiling 10429

There’s no shortage of information that we can pull from this API, so this is just one example. Feel free to give it a try yourself— or explore using JupySQL with another API or .json file!