Metadata-Version: 2.4
Name: site2md
Version: 0.2.2
Summary: Host an API to convert websites to markdown with optional features
Project-URL: Homepage, https://github.com/davlgd/site2md
Project-URL: Issues, https://github.com/davlgd/site2md/issues
Author-email: David Legrand <1110600+davlgd@users.noreply.github.com>
License: MIT License
        
        Copyright (c) 2024 David Legrand
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Framework :: FastAPI
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Markup :: Markdown
Requires-Python: >=3.10
Requires-Dist: aiofiles==25.1.0
Requires-Dist: fastapi==0.121.3
Requires-Dist: httpx==0.28.1
Requires-Dist: pydantic==2.12.4
Requires-Dist: python-multipart==0.0.20
Requires-Dist: redis==7.1.0
Requires-Dist: trafilatura==2.0.0
Requires-Dist: uvicorn==0.38.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio==1.3.0; extra == 'dev'
Requires-Dist: pytest-cov==7.0.0; extra == 'dev'
Requires-Dist: pytest==9.0.1; extra == 'dev'
Description-Content-Type: text/markdown

# site2md

Convert websites to Markdown or JSON. Built with FastAPI, Trafilatura, httpx. Optional Redis caching and rate limiting.

## Quick start

```bash
pip install site2md  # or: uv add site2md
```

See [`examples/`](examples/) for usage patterns.

## Dev

```bash
uv sync --extra dev
uv run pytest
```

## License

MIT
