Metadata-Version: 2.4
Name: github-streak
Version: 0.1.1
Summary: CLI tool to track your GitHub contribution streaks
Author: Deven Mistry
Project-URL: Homepage, https://github.com/deven367/github-streak
Project-URL: Repository, https://github.com/deven367/github-streak
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: python-dotenv>=0.19.0

# ghstreak

A simple CLI tool to track your GitHub contribution streaks.

## Installation

```bash
pip install github-streak
```

## Usage

```bash
ghstreak <github_username>
```

Example:

```bash
ghstreak deven367
```

## Authentication

For higher API rate limits, set your GitHub token as an environment variable:

```bash
export GITHUB_TOKEN=your_token_here
```

You can create a personal access token at: <https://github.com/settings/tokens>

## Output

The tool displays:

- Your current contribution streak (consecutive days with contributions)
- Your previous streak (if applicable) and when it ended

## Requirements

- Python >= 3.7
- requests >= 2.25.0
- python-dotenv >= 0.19.0
