Metadata-Version: 2.4
Name: github-dev-intelligence
Version: 1.0.0
Summary: GitHub Tech Stack, Dependency Analyzer & Developer Lead Intelligence SDK.
Home-page: https://github.com/meanusarcanus/github-dev-intelligence-api
Author: Meanus Arcanus
Author-email: meanusarcanus@gmail.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: home-page
Dynamic: requires-python

# 📊 GitHub Dev Intelligence SDK

Official Python client for **GitHub Tech Stack, Dependency Analyzer & Developer Lead Intelligence**.

---

## ⚡ Quickstart

```bash
pip install github-dev-intelligence
```

```python
from github_dev_intelligence import scan_github_repository

# Scan any GitHub repository
result = scan_github_repository("https://github.com/tiangolo/fastapi")

print(f"Stack Archetype: {result['tech_stack']['archetype']}")
print(f"Primary Tags: {result['tech_stack']['primary_tags']}")
print(f"Top Maintainers: {result['developer_leads']['maintainers']}")
```
