Metadata-Version: 2.4
Name: gitstar
Version: 1.0.0
Summary: Find out the total star earned by a github user
Home-page: https://github.com/imranpollob/gitstar
Author: Imran Pollob
Author-email: imranpollob@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# Gitstar

A command-line tool to calculate the total number of stars earned by a GitHub user.

## Installation

Install via pip:

```bash
pip install gitstar
```

## Usage

Basic usage:

```bash
gitstar <username>
```

Limit the output to the top N repositories:

```bash
gitstar <username> <limit>
```

### Examples

Get total stars for user `pollmix`:

```bash
gitstar pollmix
```

Get total stars and list top 5 repositories:

```bash
gitstar pollmix 5
```
