A web application built during HackPrinceton that helps users analyze and visualize conceptual relationships within PDF documents. Upload your PDFs and explore the connections between different concepts and ideas within your documents.
- PDF text and image extraction
- Interactive document viewer
- Concept relationship visualization
- Clean and intuitive web interface
- Create and activate a virtual environment:
python -m venv venv
.\venv\Scripts\activate # Windows
source venv/bin/activate # Unix/MacOS- Install dependencies:
pip install fastapi uvicorn python-multipart PyMuPDF- Run the application:
cd parsers
python app.py- Open
http://localhost:8000in your browser
- FastAPI - Backend framework
- PyMuPDF - PDF processing
- HTML/CSS/JavaScript - Frontend interface