https://github.com/prosavage/github-contributions-chart-data
Scrapes your github profile's contribution data into JSON.
https://github.com/prosavage/github-contributions-chart-data
contributions-chart contributions-graph github github-contribution-graph golang
Last synced: 18 days ago
JSON representation
Scrapes your github profile's contribution data into JSON.
- Host: GitHub
- URL: https://github.com/prosavage/github-contributions-chart-data
- Owner: prosavage
- Created: 2024-09-26T06:56:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-05T21:54:15.000Z (over 1 year ago)
- Last Synced: 2026-01-14T21:56:45.970Z (6 months ago)
- Topics: contributions-chart, contributions-graph, github, github-contribution-graph, golang
- Language: Go
- Homepage: https://gh-contributions-chart-data.fly.dev/contributions/prosavage
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Contributions Chart Data
This is a simple program that scrapes the Github contributions chart data from the user's profile page and returns it in JSON format.
You are welcome to use my hosted version: `https://gh-contributions-chart-data.fly.dev/contributions/`
Data is cached for 1 hour.
Example: [https://gh-contributions-chart-data.fly.dev/contributions/prosavage](https://gh-contributions-chart-data.fly.dev/contributions/prosavage)
The format is as follows:
```json
{
"contributions": [
"2017": [
{
"date": "2017-01-01",
"level": 0,
"count": 0
},
...
],
...
],
"totals": {
"2017": 3,
"2018": 1341,
...
}
}
```