Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/analyticsinmotion/github-stats
Capture and store data related to user activity (views, unique visitors, clones, forks, stars, etc.) for GitHub repositories.
https://github.com/analyticsinmotion/github-stats
github-actions github-api github-clone github-insights github-metrics github-statistics github-views
Last synced: 9 days ago
JSON representation
Capture and store data related to user activity (views, unique visitors, clones, forks, stars, etc.) for GitHub repositories.
- Host: GitHub
- URL: https://github.com/analyticsinmotion/github-stats
- Owner: analyticsinmotion
- License: mit
- Created: 2023-06-18T05:43:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-30T02:09:20.000Z (16 days ago)
- Last Synced: 2024-10-30T04:58:13.994Z (16 days ago)
- Topics: github-actions, github-api, github-clone, github-insights, github-metrics, github-statistics, github-views
- Language: Python
- Homepage: https://www.analyticsinmotion.com
- Size: 37.2 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
:chart_with_upwards_trend: GitHub Stats
[![Python Version](https://img.shields.io/badge/python-3.10-blue?logo=python&logoColor=ffdd54)](https://www.python.org/downloads/)
[![MIT license](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/analyticsinmotion/github-stats/blob/main/LICENSE)
[![GitHub Metrics](https://github.com/analyticsinmotion/github-stats/actions/workflows/traffic.yml/badge.svg)](https://github.com/analyticsinmotion/github-stats/actions/workflows/traffic.yml)
[![GitHub Activity Metrics](https://github.com/analyticsinmotion/github-stats/actions/workflows/activity.yml/badge.svg)](https://github.com/analyticsinmotion/github-stats/actions/workflows/activity.yml)
[![Analytics in Motion](https://raw.githubusercontent.com/analyticsinmotion/.github/main/assets/images/analytics-in-motion-github-badge-rounded.svg)](https://www.analyticsinmotion.com)
## Description
This project is designed to capture and store data related to user activity (views, unique visitors, clones, forks, stars, etc.) for Analytics in Motion's public repositories on GitHub. The primary purpose of this project is for us to collect more data on user interactions on our Github repositories beyond the current limitations (such as the ability to only see 14 days worth of traffic data).## Data Overview
The following table provides an overview of the data that will be extracted and stored.| Metric | Description |
| ------------- | ------------- |
| views | A view refers to the number of times a specific page or resource within the repository has been accessed or loaded. It represents the number of times the repository's main page or any of its subpages (such as code files, issues, or pull requests) have been viewed. |
| unique visitors | Unique visitors represent the number of distinct individuals who have visited the repository during a specific time period. If the same user visits your repository multiple times within a specified period (typically 24 hours), they are counted as a single unique visitor. |
| clones | Clones refer to the number of times the repository has been copied. When someone clones your repository, they make an exact replica of the repository, including all its files, branches, commit history, and other associated data. |
| unique cloners | Unique cloners represent the number of distinct users who have performed at least one clone of the repository during a specific time period. Similar to unique visitors, unique cloners are counted only once, regardless of the number of clones they perform. |
| watch | Watching a repository means you opt to receive notifications about its activity. This includes new issues, pull requests, and other updates. Watching is more proactive than starring, as it means you want to stay up-to-date with what's happening in the repository. This is particularly useful when you want to keep track of developments or participate in discussions related to the project. |
| fork | Forking a repository creates a copy of the original repository under your GitHub account. This action allows you to freely experiment with the code without affecting the original project. Forking is often the first step in contributing to an open-source project. After forking, you can make changes to the code in your forked repository, commit those changes, and then submit a "Pull Request" to the original repository, suggesting the changes you made. The maintainers of the original repository can then review your changes and decide whether to merge them into the main project. |
| star | When you Star a repository, you are essentially bookmarking it. This action indicates that you have an interest in the repository and want to keep track of it. Starred repositories can be easily accessed from your profile, allowing you to find them quickly. It's a way of showing appreciation or support for a project without necessarily contributing to it directly. |
## Data Dictionary
User Traffic
The traffic.csv file contains time series information relating to views, unique visitors, clones and unique cloners to each repository.
**File Details**
*Filename:* traffic
*Extension:* .csv
*Delimiter:* Comma (,)
*Header:* True**Structure**
| Column Name | Data Type | Description |
| ------------- | ------------- | ------------- |
| date | Date (yyyy-mm-dd) | The date when the data was recorded |
| repository | Text | The name of the repository |
| views | Numeric | The number of repository views |
| unique_visitors | Numeric | The number of unique visitors to the repository |
| clones | Numeric | The number of times a repository is cloned |
| unique_cloners | Numeric | The number of unique cloners of the repository |
User Activity
The activity.csv file contains cumulative time series information relating to stars, watchers and forks for each repository.
**File Details**
*Filename:* activity
*Extension:* .csv
*Delimiter:* Comma (,)
*Header:* True**Structure**
| Column Name | Data Type | Description |
| ------------- | ------------- | ------------- |
| date | Date (yyyy-mm-dd) | The date when the data was recorded |
| repository | Text | The name of the repository |
| stars | Numeric | The number of times a repository has been starred |
| watchers | Numeric | The number of users watching a repository |
| forks | Numeric | The number of times a repository has been forked |
## Directory Structure
github-stats
├── .github
│ ├── workflows
│ │ └── activity.yml
│ │ └── traffic.yml
│ └── assets
│ └── images
├── data
│ ├── activity.csv
│ └── traffic.csv
├── src
│ ├── activity.py
│ └── traffic.py
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── README.md
└── requirements.txt
## Visualizations
Once the relevant data has been collected, further analysis can be conducted to look for any underlying trends. Visualizations can also be created to help identify and monitor these trends.
### Example - User Views by Day of the Week
As an example, one of the metrics we are interested in understanding at is the when people are viewing our repositories. Utilizing a 12 month subset of the data we have collected, we are able to create a static bar chart (updated daily), plotting the average repository views for each day of the week. Initial analysis clearly indicates that weekend days have lower average views. Saturday and Sunday have significantly lower average views compared to the weekdays. This indicates that our repositories are less frequently viewed on weekends.