Metadata-Version: 2.4
Name: hf-local-hub
Version: 3.0.0
Summary: Lightweight local Hugging Face Hub server and client
Project-URL: Homepage, https://github.com/Akicou/hf-local-hub
Project-URL: Documentation, https://github.com/Akicou/hf-local-hub#readme
Project-URL: Repository, https://github.com/Akicou/hf-local-hub
Project-URL: Issues, https://github.com/Akicou/hf-local-hub/issues
Author-email: hf-local-hub <maintainer@hf-local-hub.com>
License: MIT
Keywords: ai,huggingface,huggingface-hub,local,ml,server
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: huggingface-hub>=0.25.0
Requires-Dist: rich>=13.7.0
Requires-Dist: typer>=0.12.0
Provides-Extra: dev
Requires-Dist: mypy>=1.9; extra == 'dev'
Requires-Dist: pytest-httpx>=0.30; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Provides-Extra: serve
Requires-Dist: hatchling; extra == 'serve'
Description-Content-Type: text/markdown

# hf-local Python Package

Python client and CLI for the hf-local server.

## Installation

```bash
pip install -e .
```

## Usage

```bash
hf-local serve --port 8080
hf-local upload ./my-model user/my-model
hf-local list
```

## Development

```bash
pip install -e ".[dev]"
pytest
ruff check src/
mypy src/
```
