Files
fil/docs/snippets/api_server/python.md

7 lines
151 B
Markdown
Raw Normal View History

2026-06-01 23:40:55 +02:00
```python title="Python"
# Start server
import subprocess
subprocess.Popen(["python", "-m", "kreuzberg", "serve", "-H", "0.0.0.0", "-p", "8000"])
```