11 lines
201 B
Markdown
11 lines
201 B
Markdown
```python title="Python"
|
|
import asyncio
|
|
from kreuzberg import extract_file
|
|
|
|
async def main() -> None:
|
|
result = await extract_file("document.pdf")
|
|
print(result.content)
|
|
|
|
asyncio.run(main())
|
|
```
|