Metadata-Version: 2.4
Name: github2md
Version: 0.1.0
Summary: Convert GitHub profile data to Markdown for LLM analysis
Project-URL: Homepage, https://github.com/juanmanueldaza/github2md
Project-URL: Repository, https://github.com/juanmanueldaza/github2md
Project-URL: Issues, https://github.com/juanmanueldaza/github2md/issues
Author-email: Juan Manuel Daza <juanmanueldaza@gmail.com>
License: GPL-2.0
License-File: LICENSE
Keywords: ai,developer,export,github,llm,markdown,profile
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Topic :: Utilities
Requires-Python: >=3.13
Provides-Extra: dev
Requires-Dist: pyright>=1.1.408; extra == 'dev'
Requires-Dist: pytest>=9.0; extra == 'dev'
Requires-Dist: ruff>=0.9; extra == 'dev'
Description-Content-Type: text/markdown

# github2md

[![PyPI version](https://img.shields.io/pypi/v/github2md)](https://pypi.org/project/github2md/)
[![Python versions](https://img.shields.io/pypi/pyversions/github2md)](https://pypi.org/project/github2md/)
[![License](https://img.shields.io/pypi/l/github2md)](https://github.com/juanmanueldaza/github2md/blob/main/LICENSE)

Convert GitHub profile data to clean Markdown files - perfect for LLM analysis.

## Installation

```bash
pip install github2md
```

Requires GitHub CLI (`gh`) to be installed and authenticated.

## Usage

```bash
# Export your own profile
github2md

# Export a specific user
github2md torvalds

# Specify output directory
github2md -o my_export torvalds
```

## Output

Creates Markdown files for:
- **profile.md** - User profile information
- **repositories.md** - Repositories with stats
- **contributions.md** - Contribution statistics

## Requirements

- Python 3.13+
- GitHub CLI (`gh`) - Install from https://cli.github.com

## License

GPL-2.0
