Skip to content

Instantly share code, notes, and snippets.

View yachty66's full-sized avatar
🇺🇲
usa

Max Hager yachty66

🇺🇲
usa
View GitHub Profile
from fastapi import FastAPI, HTTPException, Query
from typing import Optional
import fitz
import requests
app = FastAPI()
def extract_text_from_pdf(pdf_path, max_pages: Optional[int] = None):
doc = fitz.open(pdf_path)
text = ""