hpi-epic / repositoryguide

Guiding you in exploring your team's Git(Hub) repository
MIT License
1 stars 1 forks source link

Improve commit amounts using the repository stats #46

Closed SanJSp closed 3 years ago

SanJSp commented 3 years ago

The metric commit amounts is very slow. We should increase its speed by using following call: https://docs.github.com/en/rest/reference/repos#get-all-contributor-commit-activity

SanJSp commented 3 years ago

The given call only supplies us with the commit numbers (f.e. 51 commits) but not the commit amounts. I will look for other calls, but am also open for hints 😁

Edit: Found the call GET /repos/:owner/:repo/stats/contributors

SanJSp commented 3 years ago

Working with GET /repos/:owner/:repo/stats/contributors I receive a list of contributors with each having an array, that displays the additions/deletions in weeks. The problem here is that GitHub calculates these weeks starting on Sundays. This makes it not possible to display the metric with custom sprint durations. Therefore, the path via the detailed commits is as far as I know the only possible. I will look for further solutions.

Here the contributors object. The time is in seconds since the unix epoch ```json [ { "total": 110, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 0, "d": 0, "c": 0 }, { "w": 1607212800, "a": 205, "d": 6, "c": 8 }, { "w": 1607817600, "a": 305, "d": 120, "c": 4 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 175, "d": 128, "c": 13 }, { "w": 1610236800, "a": 389, "d": 379, "c": 28 }, { "w": 1610841600, "a": 293, "d": 182, "c": 16 }, { "w": 1611446400, "a": 267, "d": 190, "c": 12 }, { "w": 1612051200, "a": 283, "d": 375, "c": 25 }, { "w": 1612656000, "a": 23, "d": 9, "c": 4 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "Alexander-Dubrawski", "id": 32880898, "node_id": "MDQ6VXNlcjMyODgwODk4", "avatar_url": "https://avatars.githubusercontent.com/u/32880898?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Alexander-Dubrawski", "html_url": "https://github.com/Alexander-Dubrawski", "followers_url": "https://api.github.com/users/Alexander-Dubrawski/followers", "following_url": "https://api.github.com/users/Alexander-Dubrawski/following{/other_user}", "gists_url": "https://api.github.com/users/Alexander-Dubrawski/gists{/gist_id}", "starred_url": "https://api.github.com/users/Alexander-Dubrawski/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Alexander-Dubrawski/subscriptions", "organizations_url": "https://api.github.com/users/Alexander-Dubrawski/orgs", "repos_url": "https://api.github.com/users/Alexander-Dubrawski/repos", "events_url": "https://api.github.com/users/Alexander-Dubrawski/events{/privacy}", "received_events_url": "https://api.github.com/users/Alexander-Dubrawski/received_events", "type": "User", "site_admin": false } }, { "total": 2, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 19, "d": 2, "c": 2 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 0, "d": 0, "c": 0 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 0, "d": 0, "c": 0 }, { "w": 1611446400, "a": 0, "d": 0, "c": 0 }, { "w": 1612051200, "a": 0, "d": 0, "c": 0 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "florian-papsdorf", "id": 49521681, "node_id": "MDQ6VXNlcjQ5NTIxNjgx", "avatar_url": "https://avatars.githubusercontent.com/u/49521681?v=4", "gravatar_id": "", "url": "https://api.github.com/users/florian-papsdorf", "html_url": "https://github.com/florian-papsdorf", "followers_url": "https://api.github.com/users/florian-papsdorf/followers", "following_url": "https://api.github.com/users/florian-papsdorf/following{/other_user}", "gists_url": "https://api.github.com/users/florian-papsdorf/gists{/gist_id}", "starred_url": "https://api.github.com/users/florian-papsdorf/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/florian-papsdorf/subscriptions", "organizations_url": "https://api.github.com/users/florian-papsdorf/orgs", "repos_url": "https://api.github.com/users/florian-papsdorf/repos", "events_url": "https://api.github.com/users/florian-papsdorf/events{/privacy}", "received_events_url": "https://api.github.com/users/florian-papsdorf/received_events", "type": "User", "site_admin": false } }, { "total": 27, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 2, "d": 0, "c": 2 }, { "w": 1607212800, "a": 72, "d": 16, "c": 2 }, { "w": 1607817600, "a": 0, "d": 42, "c": 1 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 83, "d": 217, "c": 4 }, { "w": 1610236800, "a": 595, "d": 501, "c": 13 }, { "w": 1610841600, "a": 0, "d": 0, "c": 0 }, { "w": 1611446400, "a": 17, "d": 0, "c": 1 }, { "w": 1612051200, "a": 112, "d": 47, "c": 4 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "Jostafarr", "id": 35836237, "node_id": "MDQ6VXNlcjM1ODM2MjM3", "avatar_url": "https://avatars.githubusercontent.com/u/35836237?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Jostafarr", "html_url": "https://github.com/Jostafarr", "followers_url": "https://api.github.com/users/Jostafarr/followers", "following_url": "https://api.github.com/users/Jostafarr/following{/other_user}", "gists_url": "https://api.github.com/users/Jostafarr/gists{/gist_id}", "starred_url": "https://api.github.com/users/Jostafarr/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Jostafarr/subscriptions", "organizations_url": "https://api.github.com/users/Jostafarr/orgs", "repos_url": "https://api.github.com/users/Jostafarr/repos", "events_url": "https://api.github.com/users/Jostafarr/events{/privacy}", "received_events_url": "https://api.github.com/users/Jostafarr/received_events", "type": "User", "site_admin": false } }, { "total": 11, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 528, "d": 40, "c": 10 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 10815, "d": 16, "c": 1 }, { "w": 1606608000, "a": 0, "d": 0, "c": 0 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 0, "d": 0, "c": 0 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 0, "d": 0, "c": 0 }, { "w": 1611446400, "a": 0, "d": 0, "c": 0 }, { "w": 1612051200, "a": 0, "d": 0, "c": 0 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "LucPrestin", "id": 40767277, "node_id": "MDQ6VXNlcjQwNzY3Mjc3", "avatar_url": "https://avatars.githubusercontent.com/u/40767277?v=4", "gravatar_id": "", "url": "https://api.github.com/users/LucPrestin", "html_url": "https://github.com/LucPrestin", "followers_url": "https://api.github.com/users/LucPrestin/followers", "following_url": "https://api.github.com/users/LucPrestin/following{/other_user}", "gists_url": "https://api.github.com/users/LucPrestin/gists{/gist_id}", "starred_url": "https://api.github.com/users/LucPrestin/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/LucPrestin/subscriptions", "organizations_url": "https://api.github.com/users/LucPrestin/orgs", "repos_url": "https://api.github.com/users/LucPrestin/repos", "events_url": "https://api.github.com/users/LucPrestin/events{/privacy}", "received_events_url": "https://api.github.com/users/LucPrestin/received_events", "type": "User", "site_admin": false } }, { "total": 46, "weeks": [ { "w": 1602374400, "a": 79, "d": 0, "c": 1 }, { "w": 1602979200, "a": 11, "d": 3, "c": 5 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 396, "d": 304, "c": 32 }, { "w": 1606608000, "a": 40, "d": 29, "c": 5 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 2, "d": 3, "c": 1 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 31, "d": 24, "c": 2 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 0, "d": 0, "c": 0 }, { "w": 1611446400, "a": 0, "d": 0, "c": 0 }, { "w": 1612051200, "a": 0, "d": 0, "c": 0 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "chrisma", "id": 1652117, "node_id": "MDQ6VXNlcjE2NTIxMTc=", "avatar_url": "https://avatars.githubusercontent.com/u/1652117?v=4", "gravatar_id": "", "url": "https://api.github.com/users/chrisma", "html_url": "https://github.com/chrisma", "followers_url": "https://api.github.com/users/chrisma/followers", "following_url": "https://api.github.com/users/chrisma/following{/other_user}", "gists_url": "https://api.github.com/users/chrisma/gists{/gist_id}", "starred_url": "https://api.github.com/users/chrisma/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/chrisma/subscriptions", "organizations_url": "https://api.github.com/users/chrisma/orgs", "repos_url": "https://api.github.com/users/chrisma/repos", "events_url": "https://api.github.com/users/chrisma/events{/privacy}", "received_events_url": "https://api.github.com/users/chrisma/received_events", "type": "User", "site_admin": false } }, { "total": 41, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 291, "d": 192, "c": 16 }, { "w": 1607212800, "a": 91, "d": 16, "c": 4 }, { "w": 1607817600, "a": 41, "d": 15, "c": 1 }, { "w": 1608422400, "a": 182, "d": 64, "c": 2 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 0, "d": 0, "c": 0 }, { "w": 1610236800, "a": 8, "d": 8, "c": 2 }, { "w": 1610841600, "a": 47, "d": 49, "c": 3 }, { "w": 1611446400, "a": 60, "d": 5, "c": 3 }, { "w": 1612051200, "a": 105, "d": 73, "c": 10 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "SanJSp", "id": 38314662, "node_id": "MDQ6VXNlcjM4MzE0NjYy", "avatar_url": "https://avatars.githubusercontent.com/u/38314662?v=4", "gravatar_id": "", "url": "https://api.github.com/users/SanJSp", "html_url": "https://github.com/SanJSp", "followers_url": "https://api.github.com/users/SanJSp/followers", "following_url": "https://api.github.com/users/SanJSp/following{/other_user}", "gists_url": "https://api.github.com/users/SanJSp/gists{/gist_id}", "starred_url": "https://api.github.com/users/SanJSp/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SanJSp/subscriptions", "organizations_url": "https://api.github.com/users/SanJSp/orgs", "repos_url": "https://api.github.com/users/SanJSp/repos", "events_url": "https://api.github.com/users/SanJSp/events{/privacy}", "received_events_url": "https://api.github.com/users/SanJSp/received_events", "type": "User", "site_admin": false } }, { "total": 9, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 21, "d": 0, "c": 2 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 101, "d": 9, "c": 2 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 0, "d": 0, "c": 0 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 2, "d": 2, "c": 1 }, { "w": 1611446400, "a": 0, "d": 0, "c": 0 }, { "w": 1612051200, "a": 70, "d": 29, "c": 4 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "PatriciaSowa", "id": 49534831, "node_id": "MDQ6VXNlcjQ5NTM0ODMx", "avatar_url": "https://avatars.githubusercontent.com/u/49534831?v=4", "gravatar_id": "", "url": "https://api.github.com/users/PatriciaSowa", "html_url": "https://github.com/PatriciaSowa", "followers_url": "https://api.github.com/users/PatriciaSowa/followers", "following_url": "https://api.github.com/users/PatriciaSowa/following{/other_user}", "gists_url": "https://api.github.com/users/PatriciaSowa/gists{/gist_id}", "starred_url": "https://api.github.com/users/PatriciaSowa/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/PatriciaSowa/subscriptions", "organizations_url": "https://api.github.com/users/PatriciaSowa/orgs", "repos_url": "https://api.github.com/users/PatriciaSowa/repos", "events_url": "https://api.github.com/users/PatriciaSowa/events{/privacy}", "received_events_url": "https://api.github.com/users/PatriciaSowa/received_events", "type": "User", "site_admin": false } }, { "total": 40, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 164, "d": 47, "c": 6 }, { "w": 1607212800, "a": 97, "d": 7, "c": 4 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 4, "d": 3, "c": 1 }, { "w": 1609632000, "a": 19, "d": 11, "c": 4 }, { "w": 1610236800, "a": 60, "d": 8, "c": 1 }, { "w": 1610841600, "a": 31, "d": 10, "c": 3 }, { "w": 1611446400, "a": 61, "d": 53, "c": 4 }, { "w": 1612051200, "a": 75, "d": 65, "c": 12 }, { "w": 1612656000, "a": 31, "d": 19, "c": 5 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "Paula-Kli", "id": 49535291, "node_id": "MDQ6VXNlcjQ5NTM1Mjkx", "avatar_url": "https://avatars.githubusercontent.com/u/49535291?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Paula-Kli", "html_url": "https://github.com/Paula-Kli", "followers_url": "https://api.github.com/users/Paula-Kli/followers", "following_url": "https://api.github.com/users/Paula-Kli/following{/other_user}", "gists_url": "https://api.github.com/users/Paula-Kli/gists{/gist_id}", "starred_url": "https://api.github.com/users/Paula-Kli/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Paula-Kli/subscriptions", "organizations_url": "https://api.github.com/users/Paula-Kli/orgs", "repos_url": "https://api.github.com/users/Paula-Kli/repos", "events_url": "https://api.github.com/users/Paula-Kli/events{/privacy}", "received_events_url": "https://api.github.com/users/Paula-Kli/received_events", "type": "User", "site_admin": false } }, { "total": 4, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 0, "d": 0, "c": 0 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 21, "d": 5, "c": 1 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 0, "d": 0, "c": 0 }, { "w": 1611446400, "a": 33, "d": 3, "c": 3 }, { "w": 1612051200, "a": 0, "d": 0, "c": 0 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "antoniusnaumann", "id": 11618684, "node_id": "MDQ6VXNlcjExNjE4Njg0", "avatar_url": "https://avatars.githubusercontent.com/u/11618684?v=4", "gravatar_id": "", "url": "https://api.github.com/users/antoniusnaumann", "html_url": "https://github.com/antoniusnaumann", "followers_url": "https://api.github.com/users/antoniusnaumann/followers", "following_url": "https://api.github.com/users/antoniusnaumann/following{/other_user}", "gists_url": "https://api.github.com/users/antoniusnaumann/gists{/gist_id}", "starred_url": "https://api.github.com/users/antoniusnaumann/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/antoniusnaumann/subscriptions", "organizations_url": "https://api.github.com/users/antoniusnaumann/orgs", "repos_url": "https://api.github.com/users/antoniusnaumann/repos", "events_url": "https://api.github.com/users/antoniusnaumann/events{/privacy}", "received_events_url": "https://api.github.com/users/antoniusnaumann/received_events", "type": "User", "site_admin": false } }, { "total": 62, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 38, "d": 2, "c": 2 }, { "w": 1607212800, "a": 22, "d": 13, "c": 3 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 86, "d": 51, "c": 2 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 10, "d": 7, "c": 3 }, { "w": 1611446400, "a": 337, "d": 58, "c": 12 }, { "w": 1612051200, "a": 375, "d": 154, "c": 24 }, { "w": 1612656000, "a": 81, "d": 75, "c": 16 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "frcroth", "id": 6863832, "node_id": "MDQ6VXNlcjY4NjM4MzI=", "avatar_url": "https://avatars.githubusercontent.com/u/6863832?v=4", "gravatar_id": "", "url": "https://api.github.com/users/frcroth", "html_url": "https://github.com/frcroth", "followers_url": "https://api.github.com/users/frcroth/followers", "following_url": "https://api.github.com/users/frcroth/following{/other_user}", "gists_url": "https://api.github.com/users/frcroth/gists{/gist_id}", "starred_url": "https://api.github.com/users/frcroth/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/frcroth/subscriptions", "organizations_url": "https://api.github.com/users/frcroth/orgs", "repos_url": "https://api.github.com/users/frcroth/repos", "events_url": "https://api.github.com/users/frcroth/events{/privacy}", "received_events_url": "https://api.github.com/users/frcroth/received_events", "type": "User", "site_admin": false } }, { "total": 60, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 134, "d": 1, "c": 3 }, { "w": 1607212800, "a": 254, "d": 51, "c": 2 }, { "w": 1607817600, "a": 308, "d": 227, "c": 4 }, { "w": 1608422400, "a": 83, "d": 76, "c": 1 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 196, "d": 838, "c": 4 }, { "w": 1610236800, "a": 365, "d": 419, "c": 6 }, { "w": 1610841600, "a": 240, "d": 61, "c": 3 }, { "w": 1611446400, "a": 176, "d": 28, "c": 3 }, { "w": 1612051200, "a": 209, "d": 72, "c": 16 }, { "w": 1612656000, "a": 362, "d": 223, "c": 18 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "felixauringer", "id": 48409110, "node_id": "MDQ6VXNlcjQ4NDA5MTEw", "avatar_url": "https://avatars.githubusercontent.com/u/48409110?v=4", "gravatar_id": "", "url": "https://api.github.com/users/felixauringer", "html_url": "https://github.com/felixauringer", "followers_url": "https://api.github.com/users/felixauringer/followers", "following_url": "https://api.github.com/users/felixauringer/following{/other_user}", "gists_url": "https://api.github.com/users/felixauringer/gists{/gist_id}", "starred_url": "https://api.github.com/users/felixauringer/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/felixauringer/subscriptions", "organizations_url": "https://api.github.com/users/felixauringer/orgs", "repos_url": "https://api.github.com/users/felixauringer/repos", "events_url": "https://api.github.com/users/felixauringer/events{/privacy}", "received_events_url": "https://api.github.com/users/felixauringer/received_events", "type": "User", "site_admin": false } }, { "total": 6, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 0, "d": 0, "c": 0 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 0, "d": 0, "c": 0 }, { "w": 1610236800, "a": 0, "d": 0, "c": 0 }, { "w": 1610841600, "a": 236, "d": 97, "c": 5 }, { "w": 1611446400, "a": 693, "d": 115, "c": 1 }, { "w": 1612051200, "a": 0, "d": 0, "c": 0 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "rheaSPK", "id": 28736098, "node_id": "MDQ6VXNlcjI4NzM2MDk4", "avatar_url": "https://avatars.githubusercontent.com/u/28736098?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rheaSPK", "html_url": "https://github.com/rheaSPK", "followers_url": "https://api.github.com/users/rheaSPK/followers", "following_url": "https://api.github.com/users/rheaSPK/following{/other_user}", "gists_url": "https://api.github.com/users/rheaSPK/gists{/gist_id}", "starred_url": "https://api.github.com/users/rheaSPK/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rheaSPK/subscriptions", "organizations_url": "https://api.github.com/users/rheaSPK/orgs", "repos_url": "https://api.github.com/users/rheaSPK/repos", "events_url": "https://api.github.com/users/rheaSPK/events{/privacy}", "received_events_url": "https://api.github.com/users/rheaSPK/received_events", "type": "User", "site_admin": false } }, { "total": 62, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 0, "d": 0, "c": 0 }, { "w": 1606608000, "a": 2, "d": 1, "c": 1 }, { "w": 1607212800, "a": 0, "d": 0, "c": 0 }, { "w": 1607817600, "a": 0, "d": 0, "c": 0 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 921, "d": 123, "c": 11 }, { "w": 1610236800, "a": 301, "d": 147, "c": 30 }, { "w": 1610841600, "a": 25, "d": 38, "c": 10 }, { "w": 1611446400, "a": 283, "d": 811, "c": 5 }, { "w": 1612051200, "a": 14, "d": 13, "c": 5 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "LinqLover", "id": 38782922, "node_id": "MDQ6VXNlcjM4NzgyOTIy", "avatar_url": "https://avatars.githubusercontent.com/u/38782922?v=4", "gravatar_id": "", "url": "https://api.github.com/users/LinqLover", "html_url": "https://github.com/LinqLover", "followers_url": "https://api.github.com/users/LinqLover/followers", "following_url": "https://api.github.com/users/LinqLover/following{/other_user}", "gists_url": "https://api.github.com/users/LinqLover/gists{/gist_id}", "starred_url": "https://api.github.com/users/LinqLover/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/LinqLover/subscriptions", "organizations_url": "https://api.github.com/users/LinqLover/orgs", "repos_url": "https://api.github.com/users/LinqLover/repos", "events_url": "https://api.github.com/users/LinqLover/events{/privacy}", "received_events_url": "https://api.github.com/users/LinqLover/received_events", "type": "User", "site_admin": false } }, { "total": 42, "weeks": [ { "w": 1602374400, "a": 0, "d": 0, "c": 0 }, { "w": 1602979200, "a": 0, "d": 0, "c": 0 }, { "w": 1603584000, "a": 0, "d": 0, "c": 0 }, { "w": 1604188800, "a": 0, "d": 0, "c": 0 }, { "w": 1604793600, "a": 0, "d": 0, "c": 0 }, { "w": 1605398400, "a": 0, "d": 0, "c": 0 }, { "w": 1606003200, "a": 71, "d": 0, "c": 1 }, { "w": 1606608000, "a": 83, "d": 20, "c": 2 }, { "w": 1607212800, "a": 14, "d": 6, "c": 1 }, { "w": 1607817600, "a": 208, "d": 15, "c": 2 }, { "w": 1608422400, "a": 0, "d": 0, "c": 0 }, { "w": 1609027200, "a": 0, "d": 0, "c": 0 }, { "w": 1609632000, "a": 903, "d": 529, "c": 14 }, { "w": 1610236800, "a": 95, "d": 145, "c": 3 }, { "w": 1610841600, "a": 94, "d": 131, "c": 13 }, { "w": 1611446400, "a": 80, "d": 19, "c": 5 }, { "w": 1612051200, "a": 5, "d": 5, "c": 1 }, { "w": 1612656000, "a": 0, "d": 0, "c": 0 }, { "w": 1613260800, "a": 0, "d": 0, "c": 0 }, { "w": 1613865600, "a": 0, "d": 0, "c": 0 }, { "w": 1614470400, "a": 0, "d": 0, "c": 0 }, { "w": 1615075200, "a": 0, "d": 0, "c": 0 }, { "w": 1615680000, "a": 0, "d": 0, "c": 0 }, { "w": 1616284800, "a": 0, "d": 0, "c": 0 }, { "w": 1616889600, "a": 0, "d": 0, "c": 0 }, { "w": 1617494400, "a": 0, "d": 0, "c": 0 }, { "w": 1618099200, "a": 0, "d": 0, "c": 0 }, { "w": 1618704000, "a": 0, "d": 0, "c": 0 }, { "w": 1619308800, "a": 0, "d": 0, "c": 0 }, { "w": 1619913600, "a": 0, "d": 0, "c": 0 }, { "w": 1620518400, "a": 0, "d": 0, "c": 0 }, { "w": 1621123200, "a": 0, "d": 0, "c": 0 }, { "w": 1621728000, "a": 0, "d": 0, "c": 0 }, { "w": 1622332800, "a": 0, "d": 0, "c": 0 }, { "w": 1622937600, "a": 0, "d": 0, "c": 0 }, { "w": 1623542400, "a": 0, "d": 0, "c": 0 }, { "w": 1624147200, "a": 0, "d": 0, "c": 0 }, { "w": 1624752000, "a": 0, "d": 0, "c": 0 }, { "w": 1625356800, "a": 0, "d": 0, "c": 0 }, { "w": 1625961600, "a": 0, "d": 0, "c": 0 }, { "w": 1626566400, "a": 0, "d": 0, "c": 0 }, { "w": 1627171200, "a": 0, "d": 0, "c": 0 }, { "w": 1627776000, "a": 0, "d": 0, "c": 0 }, { "w": 1628380800, "a": 0, "d": 0, "c": 0 }, { "w": 1628985600, "a": 0, "d": 0, "c": 0 }, { "w": 1629590400, "a": 0, "d": 0, "c": 0 } ], "author": { "login": "sirkrypt0", "id": 22522058, "node_id": "MDQ6VXNlcjIyNTIyMDU4", "avatar_url": "https://avatars.githubusercontent.com/u/22522058?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sirkrypt0", "html_url": "https://github.com/sirkrypt0", "followers_url": "https://api.github.com/users/sirkrypt0/followers", "following_url": "https://api.github.com/users/sirkrypt0/following{/other_user}", "gists_url": "https://api.github.com/users/sirkrypt0/gists{/gist_id}", "starred_url": "https://api.github.com/users/sirkrypt0/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sirkrypt0/subscriptions", "organizations_url": "https://api.github.com/users/sirkrypt0/orgs", "repos_url": "https://api.github.com/users/sirkrypt0/repos", "events_url": "https://api.github.com/users/sirkrypt0/events{/privacy}", "received_events_url": "https://api.github.com/users/sirkrypt0/received_events", "type": "User", "site_admin": false } } ] ```
SanJSp commented 3 years ago

A possible solution could be using the GraphQL API https://stackoverflow.com/a/47822439

Current Query:

query {
  repository(owner: "hpi-swt2", name: "connections-portal") {
    defaultBranchRef {
      name
      target {
        ... on Commit {
          history(first: 100, after: ""){
            nodes {
              id
              author {
                user {
                  databaseId
                }
                email
                name
              }
              committedDate
              additions
              deletions
            }
            pageInfo { 
            hasNextPage
            }
          }
        }
      }
    }
  }
}