Skip to content

Conversation

Adesh0907
Copy link

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)

def section_title(self, title):
    self.set_font("Arial", "B", 12)
    self.set_fill_color(230, 230, 230)
    self.cell(0, 8, title, ln=True, fill=True)
    self.ln(2)

def add_bullet_list(self, items):
    self.set_font("Arial", "", 10)
    for item in items:
        self.multi_cell(0, 6, f"• {item}")
    self.ln(2)

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant