Metadata-Version: 2.1
Name: github-readme-stats
Version: 0.1.0
Summary: A package to update GitHub README with user stats
Home-page: https://github.com/ascender1729/github-readme-stats
Author: Dubasi Pavan Kumar
Author-email: pavan.dubasi2024@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyGithub >=1.55
Requires-Dist: python-dotenv >=0.19.0

# GitHub README Stats

A Python package to update your GitHub README with your latest stats.

## Installation

```bash
pip install github-readme-stats
```

## Usage

```python
from github_readme_stats import GitHubStats, ReadmeUpdater

# Initialize GitHubStats
stats = GitHubStats(github_token, username)

# Get stats
user_stats = stats.get_stats()

# Update README
updater = ReadmeUpdater('path/to/your/README.md')
updater.update(user_stats)
```

Make sure to include a `<!-- GITHUB_STATS -->` placeholder in your README where you want the stats to appear.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
