How to see count of project downloads on GitHub?

Github

Github Problem Overview


> Possible Duplicate:
> Github: Can I see the number of downloads for a repo?

Can anybody tell where can I found the number of downloads of my project on GitHub?

Github Solutions


Solution 1 - Github

You can find answer on the github support.

> There are technical limitations, we tried this in the past and it had a negative impact on performance. If we find a solution, we'll re-implement it.

https://help.github.com/articles/getting-the-download-count-for-your-releases/

Solution 2 - Github

You can also perform this programmatically by leveraging the GitHub API. There's a whole section dedicated to the Package Download API.

Below the syntax to retrieve the list of downloads

>GET /repos/:user/:repo/downloads

For instance here are the list of downloads of the libgit2 project:

Solution 3 - Github

If you archive your project and post it as a download, you can see how many times that archive has been downloaded (e.g. https://github.com/jhclark/multeval/downloads).

However, I'm not aware of any way of doing this for downloads of the entire source tree.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Question5hrpView Question on Stackoverflow
Solution 1 - GithubXhinkingView Answer on Stackoverflow
Solution 2 - GithubnulltokenView Answer on Stackoverflow
Solution 3 - GithubjhclarkView Answer on Stackoverflow