Metadata-Version: 2.4
Name: sam3360
Version: 0.1.0
Summary: CLI tool to display personal info directly from GitHub
Author-email: Samarth Chugh <iforgot3360@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# sam3360

A tiny CLI that fetches my public GitHub profile and displays it directly in your terminal.

## Installation

```bash
pip install sam3360
```

## Usage

```bash
sam3360 --info
```

Example output:

```text
User: sam3360
Name: Samarth Chugh
Bio: ...
Public Repos: ...
Profile URL: https://github.com/sam3360
```

The information is fetched **live from GitHub**, so changes to my profile can appear without requiring a new package release.

## What It Shows

* 👤 GitHub username
* 🪪 Name
* 📝 Bio
* 📦 Public repository count
* 🔗 GitHub profile URL

## How It Works

`sam3360` uses GitHub's public API:

```text
https://api.github.com/users/sam3360
```

The CLI retrieves the public profile data and displays the selected information in your terminal.

No GitHub token or authentication is required.

## Requirements

* Python 3.8+
* Internet connection

## Dependencies

None.

The package uses Python's built-in:

* `argparse`
* `json`
* `urllib`

## Project Structure

```text
sam3360/
├── sam3360/
│   ├── __init__.py
│   └── cli.py
├── pyproject.toml
└── README.md
```

## Example

```bash
$ pip install sam3360

$ sam3360 --info

User: sam3360
Name: Samarth Chugh
Bio: ...
Public Repos: ...
Profile URL: https://github.com/sam3360
```

## GitHub

GitHub: https://github.com/sam3360

## License

See the repository for license information.

---

Made by **Samarth Chugh**
