Most Popular GitHub Users (Accounts)
A list contains 150k+ top Github accounts by followers
@kaggle.donbarbos_github_users
A list contains 150k+ top Github accounts by followers
@kaggle.donbarbos_github_users
This dataset lists over 150k top github users with over 69 followers. Contains a lot of useful information (attributes).
The Github API Terms of Service apply.
You may not use this dataset for spamming purposes, including for the purposes of selling GitHub users' personal information, such as to recruiters, headhunters, and job boards.
| Column name | Description |
|---|---|
| login | GitHub username or login name of the user, which is a unique identifier for each user on the platform |
| avatar_url | URL of the user's profile picture or avatar |
| type | type of GitHub account. It can be "User" or "Organization," distinguishing between individual users and groups or companies |
| site_admin | boolean value that denotes whether the user is a site administrator for a GitHub organization |
| name | user's full name, if provided on their GitHub profile |
| company | user's current or past employer or company affiliation |
| blog | URL of a personal or professional blog associated with the user |
| location | user's geographical location, which they may have specified in their GitHub profile |
| user's email address, if they have chosen to make it publicly available on their GitHub profile | |
| hireable | boolean value that indicates whether the user is open to being hired or is currently seeking employment |
| bio | short biography or description provided by the user on their GitHub profile, highlighting their interests or expertise |
| twitter_username | user's Twitter handle, if they have linked it to their GitHub profile |
| public_repos | number of public repositories created by the user |
| public_gists | number of public gists (code snippets) created by the user |
| followers | number of GitHub users who are following this user's activity on the platform |
| following | number of GitHub users that this user is following on the platform |
| created_at | date and time when the user's GitHub account was created |
| updated_at | date and time when the user's GitHub profile was last updated or modified |
CREATE TABLE github_users (
"login" VARCHAR,
"avatar_url" VARCHAR,
"type" VARCHAR,
"site_admin" BOOLEAN,
"name" VARCHAR,
"company" VARCHAR,
"blog" VARCHAR,
"location" VARCHAR,
"email" VARCHAR,
"hireable" VARCHAR,
"bio" VARCHAR,
"twitter_username" VARCHAR,
"public_repos" DOUBLE,
"public_gists" DOUBLE,
"followers" DOUBLE,
"following" DOUBLE,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);Anyone who has the link will be able to view this.