Metadata-Version: 2.4
Name: talocode-codelane
Version: 0.1.0
Summary: Twitch for coding — stream your code live, watch dots move across a 3D git graph
Author: Talocode
License: MIT
Project-URL: Homepage, https://github.com/talocode/codelane
Project-URL: Repository, https://github.com/talocode/codelane
Keywords: coding,streaming,twitch,git,3d,visualization,codelane,talocode
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# CodeLane

**Twitch for coding — stream your code live, watch dots move across a 3D git graph.**

CodeLane turns solo coding sessions into live spectator events. Your commits become dots moving across a 3D git graph while viewers watch in real time.

## Install

```bash
pip install talocode-codelane
```

## Quickstart

```python
from talocode_codelane import CodeLaneClient

lane = CodeLaneClient(repo=".")
lane.init()

# Get 3D graph
graph = lane.get_graph()
print(f"Nodes: {len(graph['nodes'])}, Edges: {len(graph['edges'])}")

# Get stats
stats = lane.get_stats()
print(f"Commits: {stats['commits']}, Lines: {stats['linesChanged']}")
```

## CLI

```bash
# Get stats
codelane stats

# Get graph
codelane graph

# List files
codelane files

# Stream (requires server)
codelane stream --port 3000
```

## Talocode Ecosystem

| Package | PyPI | npm |
|---------|------|-----|
| DocuLane | `talocode-doculane` | `@talocode/doculane` |
| XSearchLane | `talocode-xsearchlane` | `@talocode/xsearchlane` |
| Wiki | `talocode-wiki` | `@talocode/wiki` |
| CodeLane | `talocode-codelane` | `@talocode/codelane` |

## License

MIT © Talocode
