Untitled
unknown
plain_text
5 months ago
3.6 kB
3
Indexable
# Create instance of FPDF class pdf = FPDF() # Add a page pdf.add_page() # Set title font pdf.set_font('Arial', 'B', 16) pdf.cell(200, 10, 'Curriculum Vitae', ln=True, align='C') # Line break pdf.ln(10) # Add personal information pdf.set_font('Arial', '', 12) pdf.cell(200, 10, '[Your Name]', ln=True) pdf.cell(200, 10, 'Address: [Your Address]', ln=True) pdf.cell(200, 10, 'Phone: [Your Phone Number]', ln=True) pdf.cell(200, 10, 'Email: [Your Email Address]', ln=True) # Line break pdf.ln(10) # Professional Summary pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Professional Summary', ln=True) pdf.set_font('Arial', '', 12) summary = ("Dedicated and detail-oriented IT sector specialist at NEPTUN KOSOVA shpk " "with experience in product organization, customer advisory, and inventory management. " "Strong problem-solving skills and a commitment to maintaining a clean, efficient working environment. " "Adept at assisting clients with product selection and ensuring optimal product arrangement.") pdf.multi_cell(0, 10, summary) # Line break pdf.ln(5) # Work Experience pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Work Experience', ln=True) pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'IT Sector Specialist', ln=True) pdf.set_font('Arial', '', 12) pdf.cell(200, 10, 'NEPTUN KOSOVA shpk, [Location]', ln=True) pdf.cell(200, 10, 'Dates of Employment (e.g., June 2020 – Present)', ln=True) # Job details experience = ( "- Ensure the proper organization of IT products within the sector and the storage area (depo).\n" "- Provide expert advice to customers on product selection based on their needs and explain product specifications in detail.\n" "- Manage new stock arrivals by folding and organizing them on shelves to maintain an orderly and accessible display.\n" "- Maintain a clean and organized workspace, ensuring the sector is presentable for clients.\n" "- Oversee inventory management in the 'depo' by organizing and tracking new products for smooth stock replenishment." ) pdf.multi_cell(0, 10, experience) # Line break pdf.ln(5) # Skills pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Skills', ln=True) pdf.set_font('Arial', '', 12) skills = ( "- Product Organization & Inventory Management\n" "- Customer Service & Product Advisory\n" "- IT Product Knowledge\n" "- Problem Solving\n" "- Team Collaboration\n" "- Time Management & Efficiency" ) pdf.multi_cell(0, 10, skills) # Line break pdf.ln(5) # Education pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Education', ln=True) pdf.set_font('Arial', '', 12) pdf.cell(200, 10, '[Your Degree (if applicable)]', ln=True) pdf.cell(200, 10, '[Institution Name], [Location]', ln=True) pdf.cell(200, 10, '[Year of Graduation]', ln=True) # Line break pdf.ln(5) # Languages pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Languages', ln=True) pdf.set_font('Arial', '', 12) pdf.cell(200, 10, 'Albanian: Native', ln=True) pdf.cell(200, 10, 'English: [Proficiency Level]', ln=True) # Line break pdf.ln(5) # Certifications pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'Certifications', ln=True) pdf.set_font('Arial', '', 12) pdf.cell(200, 10, '[List any certifications you may have, such as IT or customer service certifications]', ln=True) # Line break pdf.ln(5) # References pdf.set_font('Arial', 'B', 12) pdf.cell(200, 10, 'References', ln=True) pdf.set_font('Arial', '', 12) pdf.cell(200, 10, 'Available upon request.', ln=True) # Output the result to a file pdf.output("CV_Neptun_Kosova.pdf")
Editor is loading...
Leave a Comment