Metadata-Version: 2.1
Name: glci-stats
Version: 1.1.1
Summary: Utility to collect stats about your Gitlab CI performance
Author-email: Alexander Bespalov <discrimy.off@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/discrimy/glci-stats
Project-URL: Issues, https://github.com/discrimy/glci-stats/issues
Keywords: gitlab,ci,jobs,statistics,cli
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# glci-stats

CLI that fetches GitLab jobs in a time window and prints duration stats (overall & per job name).

## Install
```bash
pipx install glci-stats
# or
pip install glci-stats
```

## Usage
```bash
glci-stats \
  --gitlab-url https://gitlab.com \
  --project group/subgroup/repo \
  --start 2025-08-01T00:00:00Z \
  --end   2025-08-14T23:59:59Z \
  --statuses success,failed \
  --time-field finished_at \
  --job-scope both \
  --progress \
  --format table
```
