A web application to visualize GitHub repository commit history, written by cursor AI
Project description
Git Commit Chart
A web application that visualizes commit history for GitHub repositories using interactive charts. The application shows commit patterns over the last 30 days of any public GitHub repository, with both overall commit trends and per-user contribution breakdowns.
Features
- View total commits per day with a line chart
- Analyze commits by user with a stacked bar chart
- Interactive GitHub-styled legend with user filtering
- Responsive design that works on all devices
- Easy navigation between different views
- URL sharing support for specific repositories
Installation
pipx install git-commit-chart
Run:
git-commit-chart --host 0.0.0.0 --port 8000 --production
Screenshots
Total commits view
Commits by user view
Local Installation (Current Method)
- Clone the repository:
git clone https://github.com/yourusername/git-commit-chart.git
cd git-commit-chart
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the package:
pip install -e .
Development Installation
For development, install with additional development dependencies:
pip install -e ".[dev]"
Usage
Command Line Interface
After installation, you can run the application using the git-commit-chart command:
# Run in development mode (default)
git-commit-chart
# Run in production mode
git-commit-chart --production
# Specify host and port
git-commit-chart --host 0.0.0.0 --port 8000
Options
--port: Port to run the application on (default: 5000)--host: Host to run the application on (default: 127.0.0.1)--production/--development: Run in production mode with Waitress server (default: development)
Using the Web Interface
- Start the application using one of the methods above
- Open your web browser and navigate to the displayed URL (default: http://127.0.0.1:5000)
- Enter a GitHub repository owner and name (e.g., "facebook" and "react")
- Click "Generate Chart" to view the commit history
- Use the navigation links to switch between total commits and per-user views
URL Parameters
You can share specific repository visualizations by including the owner and repo in the URL:
http://localhost:5000/?owner=facebook&repo=react
http://localhost:5000/by-user?owner=facebook&repo=react
Development
Requirements
- Python 3.9 or higher
- pip (Python package installer)
Development Tools
The development installation includes:
- pytest: For running tests
- black: For code formatting
- flake8: For code linting
- build: For building distribution packages
- twine: For publishing to PyPI
Running Tests
The package includes comprehensive tests for all major components. To run the tests:
# Install development dependencies first
pip install -e ".[dev]"
# Run all tests
pytest
# Run tests with coverage report
pytest --cov=git_commit_chart
# Run specific test files
pytest tests/test_api.py
pytest tests/test_routes.py
pytest tests/test_cli.py
The tests cover:
- API Functions: Testing GitHub API integration
- Routes: Testing Flask endpoints and responses
- CLI: Testing command-line interface options
- Error Handling: Testing invalid inputs and error cases
Building the Package
To build the package for distribution:
python -m build
This will create both wheel and source distribution in the dist/ directory.
Docker Support
Build and run using Docker:
# Build the image
docker build -t git-commit-chart .
# Run the container
docker run -p 5000:5000 git-commit-chart
Kubernetes Deployment
Kubernetes manifests are provided in the k8s directory. Deploy using:
kubectl apply -f k8s/deployment.yaml
License
This project is licensed under the MIT License - see the LICENSE file for details.
Notes
- The application only shows commits from the last 30 days
- Only public repositories are supported
- GitHub API has rate limiting for unauthenticated requests # git-commit-chart
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file git_commit_chart-0.1.3.tar.gz.
File metadata
- Download URL: git_commit_chart-0.1.3.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e2cea17f6b6db99b96fc8444cb4604661fa253a4e38d62577d1c201ef0fdd0b
|
|
| MD5 |
a4d7bbad34bc4833fe6a74ef35a40e85
|
|
| BLAKE2b-256 |
ecc7ffb73835fb2ce04f6ae1089d5ded888176ddf8510b3f6d79867c6d2a8e13
|
File details
Details for the file git_commit_chart-0.1.3-py3-none-any.whl.
File metadata
- Download URL: git_commit_chart-0.1.3-py3-none-any.whl
- Upload date:
- Size: 15.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ee92e385153a518f96a1224092de7e4acbe860d48ef5b019cb4fdf4ba045bde
|
|
| MD5 |
9fa6f8545eb886ea9658842251f42e2e
|
|
| BLAKE2b-256 |
0181180efd23c3cd99d1a06e1444354daa791e882c2790645de34e5437b077f7
|