Untitled
unknown
plain_text
a year ago
5.4 kB
10
Indexable
# Create the PDF
pdf = FPDF()
# Add a page
pdf.add_page()
# Set font
pdf.set_font("Arial", size = 12)
# Add content to the PDF
pdf.cell(200, 10, txt = "Teylor Adrian Herrera", ln = True, align = 'C')
pdf.cell(200, 10, txt = "Contact Information:", ln = True)
pdf.cell(200, 10, txt = "Phone Number: +1 346-280-3947", ln = True)
pdf.cell(200, 10, txt = "Email Address: taylorherrera2002@gmail.com", ln = True)
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Professional Summary:", ln = True)
summary = ("Dedicated and highly skilled pilot with a strong commitment to safety and a passion for aviation. "
"A native Spanish speaker with expertise in English, boasting over 250 hours of flight experience and flying proficiency. "
"Seeking opportunities to apply flight training expertise and experience to contribute to a dynamic aviation team at United Airlines.")
pdf.multi_cell(0, 10, txt = summary)
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Flight Training and Education:", ln = True)
pdf.multi_cell(0, 10, txt = ("ATP Flight School\n"
"Location: Conroe, TX\n"
"Dates Attended: September 2021 - February 2022\n"
"Private Pilot License (PPL) - Certified: November 2021\n\n"
"United Flight Systems\n"
"Location: Spring, TX\n"
"Dates Attended: February 2022 - Present\n"
"Commercial Pilot License (CPL) - In Progress\n"
"Instrument Rating - Certified: April 2023"))
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Work Experience:", ln = True)
work_experience = ("Noble Underground\n"
"Job Title: Labor Hand\n"
"Dates of Employment: February 2024 - June 2024\n"
"Responsibilities:\n"
"- Installed and maintained natural gas and fiber optic cables, ensuring compliance with safety standards.\n"
"- Performed maintenance on small gas generators, trucks, trailers, and mini excavators, including oil changes and brake adjustments.\n"
"- Operated forklifts and mini excavators, developing proficiency in their use and maintenance.\n"
"- Assisted in various labor-intensive tasks to support installation and maintenance projects.\n\n"
"Macy's The Woodlands Mall\n"
"Location: The Woodlands, TX\n"
"Dates of Employment: November 2023 - Present\n"
"Job Title: Seasonal Jewelry Associate\n"
"Responsibilities:\n"
"- Provided excellent customer service and product knowledge to assist customers in making informed jewelry selections.\n"
"- Handled sales transactions and maintained accurate inventory records.\n"
"- Contributed to visual merchandising efforts for seasonal displays.\n\n"
"Team Gillman Acura\n"
"Location: Houston, TX\n"
"Dates of Employment: April 2022 - October 2022\n"
"Job Title: Accessory & Delivery Assistant Director\n"
"Responsibilities:\n"
"- Managed accessories sales and customer car delivery, including demonstrating tech functions and safety systems.\n"
"- Delivered cars to customer homes, ensuring high customer satisfaction.\n"
"- Received positive customer feedback and survey results.\n\n"
"Bleu Oyster Bar and Seafood\n"
"Location: Spring, TX\n"
"Dates of Employment: June 2021 - August 2021\n"
"Job Title: Busser and Kitchen Assistant\n"
"Responsibilities:\n"
"- Maintained a clean and organized dining area as a busser.\n"
"- Assisted in kitchen operations by plating dishes.\n"
"- Demonstrated flexibility and adaptability in a fast-paced environment.")
pdf.multi_cell(0, 10, txt = work_experience)
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Safety and Compliance:", ln = True)
pdf.multi_cell(0, 10, txt = "Committed to strict adherence to aviation safety protocols and regulations.")
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Computer Skills:", ln = True)
pdf.multi_cell(0, 10, txt = ("Proficient in:\n"
"- Website and application coding\n"
"- Hardware troubleshooting\n"
"- Flight planning software (e.g., ForeFlight)\n"
"- G1000 avionics systems"))
pdf.cell(200, 10, txt = "", ln = True) # Add a blank line for spacing
pdf.cell(200, 10, txt = "Languages:", ln = True)
pdf.multi_cell(0, 10, txt = "Native Spanish speaker\nExpert in English")
# Save the PDF
pdf_path = "/mnt/data/Teylor_Adrian_Herrera_Resume.pdf"
pdf.output(pdf_path)
pdf_path
Editor is loading...
Leave a Comment