git-clone-stats


Namegit-clone-stats JSON
Version 1.0.6 PyPI version JSON
download
home_pageNone
SummaryGitHub repository clone statistics tracker with web dashboard
upload_time2025-08-03 17:24:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords analytics clone-tracking dashboard github statistics
VCS
bugtrack_url
requirements requests google-cloud-firestore Flask gunicorn
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# git-stats - GitHub Repo Clone Stats & Analytics <img src="https://github.com/user-attachments/assets/dd25bc31-87e2-43ea-88de-e3de2222d066" width="80" align="right" />

[![PyPI](https://img.shields.io/pypi/v/git-clone-stats)](https://pypi.org/project/git-clone-stats/)
[![Python versions](https://img.shields.io/pypi/pyversions/git-clone-stats)](https://pypi.org/project/git-clone-stats/)
[![License](https://img.shields.io/github/license/taylorwilsdon/git-clone-stats)](LICENSE)

</div>

git-stats is the missing piece of GitHub analytics - even if you pay, they will only give you 14 days of history. Bizarre gap for a company built on data... 

But I digress. This repo is an agressively simple Python application for tracking and storing GitHub repository clone statistics. It has an extremely minimal HTML & JS frontend that requires no building, compiling or transpiling. 

The tool fetches clone data and view/traffic statistics from the GitHub API and maintains historical records in a SQLite or Firestore database. It runs as an always on service and periodically fetches clone stats (total and unique) plus view data and displays them in an easy to use dashboard with shields.io badges available for use.


<div align="center">
<video width=832 src="https://github.com/user-attachments/assets/c8704ac1-fd99-4bb7-8763-421eebc7c487"></video>
</div>

---

## Features

- **Complete GitHub Analytics**: Fetches repository clone statistics, view/traffic data (total views and unique viewers), and star counts from the GitHub API
- **Historical Data Storage**: Maintains unlimited historical records in SQLite (local) or Firestore (cloud) databases with robust querying capabilities
- **Smart Data Management**: Avoids duplicate entries by only recording new data points
- **Web Dashboard**: Modern, responsive UI with automatic background synchronization and dark/light theme support
- **Interactive Visualizations**: Time-series charts with customizable date ranges and repository filtering
- **Shields.io Badge Integration**: Generates embeddable badges for README files and documentation
- **Cloud-Ready Deployment**: One-command deployment to Google App Engine with auto-scaling and Firestore database support
- **Repository Management**: Add/remove tracked repositories through the web interface
- **Data Export/Import**: Backup and migration functionality for database portability
- **Flexible Sync Intervals**: Configurable automatic synchronization (daily, weekly, biweekly)
- **Modern CLI Interface**: Subcommands for sync and server operations with comprehensive help
- **PyPI-Ready Packaging**: Modern Python tooling support with uv compatibility for fast installation

### Quickstart with uv

Run directly without installation:

```bash
uv run git-clone-stats sync
uv run git-clone-stats server
```

## Installation

### From PyPI (recommended)

```bash
pip install git-clone-stats
```

### With uv (fastest)

```bash
uv tool install git-clone-stats
# or run directly without installing
uv run git-clone-stats --help
```

### From source

```bash
git clone https://github.com/taylorwilsdon/git-clone-stats.git
cd git-clone-stats
pip install -e .
```

### Docker (recommended for production)

Run git-stats in a production-ready Docker container:

```bash
# Using Docker Compose (easiest)
docker-compose up -d

# Or build and run manually
docker build -t git-stats .
docker run -d \
  -p 8080:8080 \
  -e GITHUB_TOKEN=your_token \
  -e GITHUB_USERNAME=your_username \
  -e GITHUB_ORG=your_organization \
  -v $(pwd)/data:/app/data \
  git-stats
```

The Docker image includes:
- Multi-stage build for minimal size (~150MB)
- Non-root user execution for security
- Health checks for container orchestration
- Automatic restart on failure
- Volume mounting for persistent SQLite storage

## Configuration

Set up your GitHub Personal Access Token and Username. This requires a GitHub Personal Access Token with the `repo` scope to access repository traffic data.

1. Create a token in your [GitHub Developer settings](https://github.com/settings/tokens)
2. Set the required environment variables:

```bash
export GITHUB_TOKEN='your_github_personal_access_token'
export GITHUB_USERNAME='your_github_username'
export GITHUB_ORG='your_organization_name'  # Optional: for tracking organization repositories
```

### Organization Repository Support

Git-Stats provides intelligent support for tracking repositories from both personal accounts and organizations with individual control over each repository's owner type:

#### Features:
- **Smart Repository Resolution**: Automatically determines the correct GitHub API path based on repository owner type
- **Mixed Repository Support**: Track both personal and organization repositories simultaneously  
- **Intelligent UI**: Owner type selection appears automatically when `GITHUB_ORG` is configured
- **Flexible Repository Specification**: Support for explicit `owner/repo` format

#### Configuration Options:

1. **Personal repositories only** (default)
   - Set only `GITHUB_USERNAME`
   - All repositories use personal account

2. **Organization repositories with choice**
   - Set both `GITHUB_USERNAME` and `GITHUB_ORG`
   - Web UI shows owner type selection for each repository
   - Choose "Personal" or "Organization" when adding repositories

3. **Explicit path format**
   - Add repositories as `owner/repo` (e.g., `myorg/project` or `someuser/repo`)
   - Bypasses automatic owner resolution

#### Examples:

**Personal only:**
```bash
GITHUB_USERNAME=johndoe
# Add "myproject" → uses johndoe/myproject
```

**Mixed personal and organization:**
```bash
GITHUB_USERNAME=johndoe
GITHUB_ORG=mycompany
# Add "myproject" as Personal → uses johndoe/myproject
# Add "web-app" as Organization → uses mycompany/web-app
```

**Explicit paths:**
```bash
# Add "otherorg/special-project" → uses otherorg/special-project
# Add "contributor/fork" → uses contributor/fork
```

## Usage

### Command Line Interface

The application provides a modern CLI with subcommands:

```bash
git-clone-stats --help
```

#### Sync clone data

To fetch the latest clone statistics from GitHub and update the database:

```bash
git-clone-stats sync
```

#### Start web server

To start the web dashboard server:

```bash
git-clone-stats server --port 8000
```

### Retrieving Stored Data

You can query the `github_stats.db` SQLite database directly to retrieve historical data.

Here are some example queries you can run from your terminal:

**1. Open the database:**
```bash
sqlite3 github_stats.db
```

**2. View all clone records for a specific repository:**
```sql
SELECT * FROM clone_history WHERE repo = 'reclaimed';
```

**3. View all view/traffic records for a specific repository:**
```sql
SELECT * FROM view_history WHERE repo = 'reclaimed';
```

**4. Get the total clone count for a repository:**
```sql
SELECT SUM(count) FROM clone_history WHERE repo = 'reclaimed';
```

**5. Get the total unique cloners for a repository:**
```sql
SELECT SUM(uniques) FROM clone_history WHERE repo = 'reclaimed';
```

**6. View all data, ordered by repository and date:**
```sql
SELECT * FROM clone_history ORDER BY repo, timestamp;
SELECT * FROM view_history ORDER BY repo, timestamp;
```

## Web Server & User Interface

The application includes a web server that provides a user interface for viewing repository statistics, a JSON API, and automatic background synchronization.

### Running the Server

To start the server:
```bash
git-clone-stats server --port 8000
```

The server will be available at `http://localhost:8000`.

### Automatic Background Sync

By default, the server will automatically sync with GitHub every 24 hours. You can configure the sync interval by setting the `SYNC_INTERVAL` environment variable before running the server.

Supported values are:
- `daily` (default)
- `weekly`
- `biweekly`

**Example:**
```bash
export SYNC_INTERVAL='weekly'
git-clone-stats server
```

### User Interface

Navigate to `http://localhost:8000` in your web browser to access the user interface. The dashboard provides two viewing modes:

<div align="center">
<img width="70%" height="70%" alt="image" src="https://github.com/user-attachments/assets/f16b879d-f629-49a0-9fec-c17e827156b2" />
</div>

#### Card View (Default)
Displays a card for each repository with:
- The repository name and star count
- Total clone and unique cloner counts
- Collection date range (first/last sync)
- A shields.io badge preview
- A button to copy the badge's Markdown code

#### Chart View
Interactive time-series visualization showing:
- **Line charts** for each repository displaying clone trends over time
- **Dual metrics**: Both total clones (blue) and unique clones (green) on the same chart
- **Time period filters**: View data for the last 7 days, 30 days, 3 months, or all time
- **Repository filtering**: Focus on specific repositories or view all
- **Responsive design**: Charts adapt to screen size and respect dark/light themes
- **Interactive tooltips**: Hover over data points for detailed daily statistics

<div align="center">
<img width="70%" height="70%" alt="image" src="https://github.com/user-attachments/assets/4d6248ee-292b-41a6-b79d-179c53c8baf7"  />
</div>

#### Additional Features
- **Dark/Light theme toggle** in the top-right corner
- **Search and sorting** functionality for repositories (card view)
- **Repository management** modal for adding/removing tracked repositories
- **Data export/import** functionality for backup and migration
- **"Sync with GitHub"** button that triggers a fresh data pull from the GitHub API

### API Endpoints

- **`GET /api/stats`**

  Returns a JSON array of all clone statistics from the database.

  **Example Response:**
  ```json
  [
      {
          "repo": "google_workspace_mcp",
          "timestamp": "2024-07-05T00:00:00Z",
          "count": 1,
          "uniques": 1
      },
      {
          "repo": "google_workspace_mcp",
          "timestamp": "2024-07-06T00:00:00Z",
          "count": 1,
          "uniques": 1
      }
  ]
  ```

- **`GET /api/chart-data?days=<number>&repo=<repo-name>`**

  Returns time-series data formatted for chart visualization.

  **Query Parameters:**
  - `days` (optional): Number of days to include (7, 30, 90, or 0 for all time). Default: 30
  - `repo` (optional): Filter by specific repository name

  **Example:**
  `http://localhost:8000/api/chart-data?days=30&repo=my-repo`

  **Example Response:**
  ```json
  {
      "chart_data": {
          "my-repo": {
              "labels": ["2024-07-01", "2024-07-02", "2024-07-03"],
              "clones": [5, 3, 8],
              "uniques": [4, 2, 6]
          }
      },
      "days_requested": 30,
      "repo_filter": "my-repo"
  }
  ```

- **`GET /api/badge/<repo-name>`**

  Returns a shields.io-style SVG badge displaying the total clone count for the specified repository.

  **Example:**
  `http://localhost:8000/api/badge/reclaimed` returns an SVG badge showing the clone count

## Deployment Options

### Docker Deployment

For production deployments, Docker provides the most flexible and portable solution:

```bash
# Quick start with docker-compose
docker-compose up -d

# Access the dashboard at http://localhost:8080
```

Configure environment variables in a `.env` file:
```bash
GITHUB_TOKEN=your_github_token
GITHUB_USERNAME=your_username
GITHUB_ORG=your_organization_name  # Optional: for organization repositories
USE_FIRESTORE=false
PORT=8080
```

### Google Cloud App Engine

Deploy to Google Cloud App Engine in minutes. See the complete deployment guide: [gcloud_deploy.md](gcloud_deploy.md)

## Development

### Building from source

```bash
pip install build
python -m build
```

### Installing in development mode

```bash
pip install -e ".[dev]"
```

This installs the package in development mode with additional tools for linting, formatting, and testing.

## License

MIT License - see [LICENSE](LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "git-clone-stats",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "analytics, clone-tracking, dashboard, github, statistics",
    "author": null,
    "author_email": "Taylor Wilsdon <taylor@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/8e/f1/c92862d54bfa2138af80ce512c1ddf0f80e228bf24ef6af24339a3f1114f/git_clone_stats-1.0.6.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# git-stats - GitHub Repo Clone Stats & Analytics <img src=\"https://github.com/user-attachments/assets/dd25bc31-87e2-43ea-88de-e3de2222d066\" width=\"80\" align=\"right\" />\n\n[![PyPI](https://img.shields.io/pypi/v/git-clone-stats)](https://pypi.org/project/git-clone-stats/)\n[![Python versions](https://img.shields.io/pypi/pyversions/git-clone-stats)](https://pypi.org/project/git-clone-stats/)\n[![License](https://img.shields.io/github/license/taylorwilsdon/git-clone-stats)](LICENSE)\n\n</div>\n\ngit-stats is the missing piece of GitHub analytics - even if you pay, they will only give you 14 days of history. Bizarre gap for a company built on data... \n\nBut I digress. This repo is an agressively simple Python application for tracking and storing GitHub repository clone statistics. It has an extremely minimal HTML & JS frontend that requires no building, compiling or transpiling. \n\nThe tool fetches clone data and view/traffic statistics from the GitHub API and maintains historical records in a SQLite or Firestore database. It runs as an always on service and periodically fetches clone stats (total and unique) plus view data and displays them in an easy to use dashboard with shields.io badges available for use.\n\n\n<div align=\"center\">\n<video width=832 src=\"https://github.com/user-attachments/assets/c8704ac1-fd99-4bb7-8763-421eebc7c487\"></video>\n</div>\n\n---\n\n## Features\n\n- **Complete GitHub Analytics**: Fetches repository clone statistics, view/traffic data (total views and unique viewers), and star counts from the GitHub API\n- **Historical Data Storage**: Maintains unlimited historical records in SQLite (local) or Firestore (cloud) databases with robust querying capabilities\n- **Smart Data Management**: Avoids duplicate entries by only recording new data points\n- **Web Dashboard**: Modern, responsive UI with automatic background synchronization and dark/light theme support\n- **Interactive Visualizations**: Time-series charts with customizable date ranges and repository filtering\n- **Shields.io Badge Integration**: Generates embeddable badges for README files and documentation\n- **Cloud-Ready Deployment**: One-command deployment to Google App Engine with auto-scaling and Firestore database support\n- **Repository Management**: Add/remove tracked repositories through the web interface\n- **Data Export/Import**: Backup and migration functionality for database portability\n- **Flexible Sync Intervals**: Configurable automatic synchronization (daily, weekly, biweekly)\n- **Modern CLI Interface**: Subcommands for sync and server operations with comprehensive help\n- **PyPI-Ready Packaging**: Modern Python tooling support with uv compatibility for fast installation\n\n### Quickstart with uv\n\nRun directly without installation:\n\n```bash\nuv run git-clone-stats sync\nuv run git-clone-stats server\n```\n\n## Installation\n\n### From PyPI (recommended)\n\n```bash\npip install git-clone-stats\n```\n\n### With uv (fastest)\n\n```bash\nuv tool install git-clone-stats\n# or run directly without installing\nuv run git-clone-stats --help\n```\n\n### From source\n\n```bash\ngit clone https://github.com/taylorwilsdon/git-clone-stats.git\ncd git-clone-stats\npip install -e .\n```\n\n### Docker (recommended for production)\n\nRun git-stats in a production-ready Docker container:\n\n```bash\n# Using Docker Compose (easiest)\ndocker-compose up -d\n\n# Or build and run manually\ndocker build -t git-stats .\ndocker run -d \\\n  -p 8080:8080 \\\n  -e GITHUB_TOKEN=your_token \\\n  -e GITHUB_USERNAME=your_username \\\n  -e GITHUB_ORG=your_organization \\\n  -v $(pwd)/data:/app/data \\\n  git-stats\n```\n\nThe Docker image includes:\n- Multi-stage build for minimal size (~150MB)\n- Non-root user execution for security\n- Health checks for container orchestration\n- Automatic restart on failure\n- Volume mounting for persistent SQLite storage\n\n## Configuration\n\nSet up your GitHub Personal Access Token and Username. This requires a GitHub Personal Access Token with the `repo` scope to access repository traffic data.\n\n1. Create a token in your [GitHub Developer settings](https://github.com/settings/tokens)\n2. Set the required environment variables:\n\n```bash\nexport GITHUB_TOKEN='your_github_personal_access_token'\nexport GITHUB_USERNAME='your_github_username'\nexport GITHUB_ORG='your_organization_name'  # Optional: for tracking organization repositories\n```\n\n### Organization Repository Support\n\nGit-Stats provides intelligent support for tracking repositories from both personal accounts and organizations with individual control over each repository's owner type:\n\n#### Features:\n- **Smart Repository Resolution**: Automatically determines the correct GitHub API path based on repository owner type\n- **Mixed Repository Support**: Track both personal and organization repositories simultaneously  \n- **Intelligent UI**: Owner type selection appears automatically when `GITHUB_ORG` is configured\n- **Flexible Repository Specification**: Support for explicit `owner/repo` format\n\n#### Configuration Options:\n\n1. **Personal repositories only** (default)\n   - Set only `GITHUB_USERNAME`\n   - All repositories use personal account\n\n2. **Organization repositories with choice**\n   - Set both `GITHUB_USERNAME` and `GITHUB_ORG`\n   - Web UI shows owner type selection for each repository\n   - Choose \"Personal\" or \"Organization\" when adding repositories\n\n3. **Explicit path format**\n   - Add repositories as `owner/repo` (e.g., `myorg/project` or `someuser/repo`)\n   - Bypasses automatic owner resolution\n\n#### Examples:\n\n**Personal only:**\n```bash\nGITHUB_USERNAME=johndoe\n# Add \"myproject\" \u2192 uses johndoe/myproject\n```\n\n**Mixed personal and organization:**\n```bash\nGITHUB_USERNAME=johndoe\nGITHUB_ORG=mycompany\n# Add \"myproject\" as Personal \u2192 uses johndoe/myproject\n# Add \"web-app\" as Organization \u2192 uses mycompany/web-app\n```\n\n**Explicit paths:**\n```bash\n# Add \"otherorg/special-project\" \u2192 uses otherorg/special-project\n# Add \"contributor/fork\" \u2192 uses contributor/fork\n```\n\n## Usage\n\n### Command Line Interface\n\nThe application provides a modern CLI with subcommands:\n\n```bash\ngit-clone-stats --help\n```\n\n#### Sync clone data\n\nTo fetch the latest clone statistics from GitHub and update the database:\n\n```bash\ngit-clone-stats sync\n```\n\n#### Start web server\n\nTo start the web dashboard server:\n\n```bash\ngit-clone-stats server --port 8000\n```\n\n### Retrieving Stored Data\n\nYou can query the `github_stats.db` SQLite database directly to retrieve historical data.\n\nHere are some example queries you can run from your terminal:\n\n**1. Open the database:**\n```bash\nsqlite3 github_stats.db\n```\n\n**2. View all clone records for a specific repository:**\n```sql\nSELECT * FROM clone_history WHERE repo = 'reclaimed';\n```\n\n**3. View all view/traffic records for a specific repository:**\n```sql\nSELECT * FROM view_history WHERE repo = 'reclaimed';\n```\n\n**4. Get the total clone count for a repository:**\n```sql\nSELECT SUM(count) FROM clone_history WHERE repo = 'reclaimed';\n```\n\n**5. Get the total unique cloners for a repository:**\n```sql\nSELECT SUM(uniques) FROM clone_history WHERE repo = 'reclaimed';\n```\n\n**6. View all data, ordered by repository and date:**\n```sql\nSELECT * FROM clone_history ORDER BY repo, timestamp;\nSELECT * FROM view_history ORDER BY repo, timestamp;\n```\n\n## Web Server & User Interface\n\nThe application includes a web server that provides a user interface for viewing repository statistics, a JSON API, and automatic background synchronization.\n\n### Running the Server\n\nTo start the server:\n```bash\ngit-clone-stats server --port 8000\n```\n\nThe server will be available at `http://localhost:8000`.\n\n### Automatic Background Sync\n\nBy default, the server will automatically sync with GitHub every 24 hours. You can configure the sync interval by setting the `SYNC_INTERVAL` environment variable before running the server.\n\nSupported values are:\n- `daily` (default)\n- `weekly`\n- `biweekly`\n\n**Example:**\n```bash\nexport SYNC_INTERVAL='weekly'\ngit-clone-stats server\n```\n\n### User Interface\n\nNavigate to `http://localhost:8000` in your web browser to access the user interface. The dashboard provides two viewing modes:\n\n<div align=\"center\">\n<img width=\"70%\" height=\"70%\" alt=\"image\" src=\"https://github.com/user-attachments/assets/f16b879d-f629-49a0-9fec-c17e827156b2\" />\n</div>\n\n#### Card View (Default)\nDisplays a card for each repository with:\n- The repository name and star count\n- Total clone and unique cloner counts\n- Collection date range (first/last sync)\n- A shields.io badge preview\n- A button to copy the badge's Markdown code\n\n#### Chart View\nInteractive time-series visualization showing:\n- **Line charts** for each repository displaying clone trends over time\n- **Dual metrics**: Both total clones (blue) and unique clones (green) on the same chart\n- **Time period filters**: View data for the last 7 days, 30 days, 3 months, or all time\n- **Repository filtering**: Focus on specific repositories or view all\n- **Responsive design**: Charts adapt to screen size and respect dark/light themes\n- **Interactive tooltips**: Hover over data points for detailed daily statistics\n\n<div align=\"center\">\n<img width=\"70%\" height=\"70%\" alt=\"image\" src=\"https://github.com/user-attachments/assets/4d6248ee-292b-41a6-b79d-179c53c8baf7\"  />\n</div>\n\n#### Additional Features\n- **Dark/Light theme toggle** in the top-right corner\n- **Search and sorting** functionality for repositories (card view)\n- **Repository management** modal for adding/removing tracked repositories\n- **Data export/import** functionality for backup and migration\n- **\"Sync with GitHub\"** button that triggers a fresh data pull from the GitHub API\n\n### API Endpoints\n\n- **`GET /api/stats`**\n\n  Returns a JSON array of all clone statistics from the database.\n\n  **Example Response:**\n  ```json\n  [\n      {\n          \"repo\": \"google_workspace_mcp\",\n          \"timestamp\": \"2024-07-05T00:00:00Z\",\n          \"count\": 1,\n          \"uniques\": 1\n      },\n      {\n          \"repo\": \"google_workspace_mcp\",\n          \"timestamp\": \"2024-07-06T00:00:00Z\",\n          \"count\": 1,\n          \"uniques\": 1\n      }\n  ]\n  ```\n\n- **`GET /api/chart-data?days=<number>&repo=<repo-name>`**\n\n  Returns time-series data formatted for chart visualization.\n\n  **Query Parameters:**\n  - `days` (optional): Number of days to include (7, 30, 90, or 0 for all time). Default: 30\n  - `repo` (optional): Filter by specific repository name\n\n  **Example:**\n  `http://localhost:8000/api/chart-data?days=30&repo=my-repo`\n\n  **Example Response:**\n  ```json\n  {\n      \"chart_data\": {\n          \"my-repo\": {\n              \"labels\": [\"2024-07-01\", \"2024-07-02\", \"2024-07-03\"],\n              \"clones\": [5, 3, 8],\n              \"uniques\": [4, 2, 6]\n          }\n      },\n      \"days_requested\": 30,\n      \"repo_filter\": \"my-repo\"\n  }\n  ```\n\n- **`GET /api/badge/<repo-name>`**\n\n  Returns a shields.io-style SVG badge displaying the total clone count for the specified repository.\n\n  **Example:**\n  `http://localhost:8000/api/badge/reclaimed` returns an SVG badge showing the clone count\n\n## Deployment Options\n\n### Docker Deployment\n\nFor production deployments, Docker provides the most flexible and portable solution:\n\n```bash\n# Quick start with docker-compose\ndocker-compose up -d\n\n# Access the dashboard at http://localhost:8080\n```\n\nConfigure environment variables in a `.env` file:\n```bash\nGITHUB_TOKEN=your_github_token\nGITHUB_USERNAME=your_username\nGITHUB_ORG=your_organization_name  # Optional: for organization repositories\nUSE_FIRESTORE=false\nPORT=8080\n```\n\n### Google Cloud App Engine\n\nDeploy to Google Cloud App Engine in minutes. See the complete deployment guide: [gcloud_deploy.md](gcloud_deploy.md)\n\n## Development\n\n### Building from source\n\n```bash\npip install build\npython -m build\n```\n\n### Installing in development mode\n\n```bash\npip install -e \".[dev]\"\n```\n\nThis installs the package in development mode with additional tools for linting, formatting, and testing.\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "GitHub repository clone statistics tracker with web dashboard",
    "version": "1.0.6",
    "project_urls": {
        "Documentation": "https://github.com/taylorwilsdon/git-clone-stats#readme",
        "Homepage": "https://github.com/taylorwilsdon/git-clone-stats",
        "Issues": "https://github.com/taylorwilsdon/git-clone-stats/issues",
        "Repository": "https://github.com/taylorwilsdon/git-clone-stats"
    },
    "split_keywords": [
        "analytics",
        " clone-tracking",
        " dashboard",
        " github",
        " statistics"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdd576792b0e1c2f0d70c7ecf94117d58c7ea2b9e31f7a9cbf2247450d74aea8",
                "md5": "2ecef548d9bbcf879bce575342945a09",
                "sha256": "e1d12513d01b1059c4301ef6fdf018589fd6c94a413394c26c7f02af2ffcb666"
            },
            "downloads": -1,
            "filename": "git_clone_stats-1.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2ecef548d9bbcf879bce575342945a09",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 57314,
            "upload_time": "2025-08-03T17:24:25",
            "upload_time_iso_8601": "2025-08-03T17:24:25.945866Z",
            "url": "https://files.pythonhosted.org/packages/fd/d5/76792b0e1c2f0d70c7ecf94117d58c7ea2b9e31f7a9cbf2247450d74aea8/git_clone_stats-1.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ef1c92862d54bfa2138af80ce512c1ddf0f80e228bf24ef6af24339a3f1114f",
                "md5": "3509fe3594a09caac41fd612c1aa6522",
                "sha256": "0ce0267572ce2dd02e48dc64a5cfd8e6f0540b1f08b2b256f58f4d44708daace"
            },
            "downloads": -1,
            "filename": "git_clone_stats-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "3509fe3594a09caac41fd612c1aa6522",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 36245,
            "upload_time": "2025-08-03T17:24:27",
            "upload_time_iso_8601": "2025-08-03T17:24:27.253321Z",
            "url": "https://files.pythonhosted.org/packages/8e/f1/c92862d54bfa2138af80ce512c1ddf0f80e228bf24ef6af24339a3f1114f/git_clone_stats-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-03 17:24:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "taylorwilsdon",
    "github_project": "git-clone-stats#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.31.0"
                ]
            ]
        },
        {
            "name": "google-cloud-firestore",
            "specs": [
                [
                    "==",
                    "2.11.1"
                ]
            ]
        },
        {
            "name": "Flask",
            "specs": [
                [
                    "==",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "gunicorn",
            "specs": [
                [
                    "==",
                    "21.2.0"
                ]
            ]
        }
    ],
    "lcname": "git-clone-stats"
}
        
Elapsed time: 2.94596s