Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
from fpdf import FPDF
Define the PDF class
class ResumePDF(FPDF):
def header(self):
self.set_font("Arial", "B", 16)
self.set_text_color(0, 51, 102)
self.cell(0, 10, "Adesh Mahadev Jadhav", ln=True, align="C")
self.set_font("Arial", "", 12)
self.set_text_color(0)
self.cell(0, 10, "Data Analyst | Qlik Sense Developer", ln=True, align="C")
self.ln(5)
self.set_font("Arial", "", 10)
self.cell(0, 10, "Email: [email protected] | Phone: +91 8788656247", ln=True, align="C")
self.ln(5)
Create the PDF
pdf = ResumePDF()
pdf.set_auto_page_break(auto=True, margin=15)
pdf.add_page()
Summary
pdf.section_title("Professional Summary")
summary = [
"2 years of experience in Qlik Sense development, data modeling, and BI solutions.",
"Optimized dashboards, integrated multiple data sources for insights, and implemented secure access control.",
"Proficient in Qlik scripting, resolving data modeling issues, and implementing incremental load strategies.",
"Experienced in Set Analysis, Section Access, Qlik QMC, and various Qlik charting options."
]
pdf.add_bullet_list(summary)
Skills
pdf.section_title("Technical Skills")
skills = [
"BI Tools: Qlik Sense, QlikView, Power BI",
"Database: MySQL",
"Languages: SQL, Python",
"OS: Windows",
"Qlik Techniques: Inline Load, Resident Load, Mapping Load, Binary Load, Cross Table, Master Items, Section Access"
]
pdf.add_bullet_list(skills)
Experience
pdf.section_title("Professional Experience")
experience = [
"Research Data Analyst, Manlitics ITES, Pune (Dec 2023 - Present)",
"Data Analyst, Ai Varient, Remote (Oct 2022 - Sep 2023)"
]
pdf.add_bullet_list(experience)
Projects
pdf.section_title("Project Highlights")
projects = [
"Sigma Health Care Service - Developed KPIs and visual dashboards to track policyholder claims and premium data.",
"SME Loans Dashboard - Built models to analyze small business loan patterns, including ETL, security roles, and training."
]
pdf.add_bullet_list(projects)
Education
pdf.section_title("Education")
education = [
"B.Sc. – SD College, Ahmednagar (2021) – 56.25%",
"HSC – SD Jr. College, Ahmednagar (2017) – 53.23%",
"SSC – Issac Public School, Ahmednagar (2015) – 62.00%"
]
pdf.add_bullet_list(education)
Personal Details
pdf.section_title("Personal Details")
personal_details = [
"Gender: Male | Marital Status: Single",
"Nationality: Indian | Languages: English, Hindi, Marathi",
"Address: Sr. No. 138/3/2 Santoshi Heights, Hinjewadi Phase 1 Rd, Narayan Nagar, Pune"
]
pdf.add_bullet_list(personal_details)
Save PDF
output_path = "/mnt/data/Adesh_Jadhav_Resume_Designed.pdf"
pdf.output(output_path)
output_path