0% found this document useful (0 votes)
2 views1 page

Resume Analyzer Method

The document outlines a project structure for a resume analyzer application built with FastAPI. It includes endpoints for uploading resumes and analyzing them, along with details about the file structure and necessary components. The project utilizes a database with Prisma ORM for managing resume data.

Uploaded by

Heng Dalux
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Resume Analyzer Method

The document outlines a project structure for a resume analyzer application built with FastAPI. It includes endpoints for uploading resumes and analyzing them, along with details about the file structure and necessary components. The project utilizes a database with Prisma ORM for managing resume data.

Uploaded by

Heng Dalux
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Resume analyzer method

Project flow
├── app/
│ ├── main.py # Main FastAPI app
│ ├── models.py # Data models (optional for future)
│ ├── services.py # Resume processing logic
│ └── utils.py # Helper functions (optional)
├── uploads/ # Store uploaded resumes
├── requirements.txt # List of dependencies
└── README.md # Project documentation
Database, prisma orm,
1. Upload resume:
Endpoint: /upload_resume
Method: POST
Description: Uploads a resume file (PDF)
Input: none
Output: str[]
2. Analyze Resume
Endpoint: /analyze/{resume_id}
Method: GET
Description: Analyzes the uploaded resume and returns feedback.
Input: resumed (received from the upload response).

You might also like