Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I worked on an NLP project that can extract information from a resume like Name, Skills, Email, Designation etc. I built the project using Regular Expressions & stored the predictions in a variable.

What I have tried:

My prediction variable 'Candidate Details' looks like this --->

Candidate_Details= {"Name":data['name'], "Mobile No.":data['mobile_number'],"Email":data['email'],"Skills":t_skills,"University":unimatches, "Degree":education, "Experience in years":exp_match,"Companies_Worked@":comp_un, 'Designation':des_un, "No. of pages":data['no_of_pages']};


Now I want to build a Flask app for this. I'm writing the code for it on Google Colab. I don't understand how to go about it. Haven't found any resources online on this. The available ones show a simple HTML file. Please guide me through this.
Posted
Updated 15-Sep-22 4:30am
v2

1 solution

You can start at Welcome to Flask — Flask Documentation (2.2.x)[^] for creating a Flask application. But I have no idea how you integrate that in Colab.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900