from fpdf import FPDF # Create instance of FPDF class pdf = FPDF() # Add a page pdf.add_page() # Set font pdf.set_font("Arial", size = 12) # Title pdf.set_font("Arial", 'B', 16) pdf.cell(200, 10, txt = "Manish Kumar", ln = True, align = 'C') # Contact Information pdf.set_font("Arial", size = 12) pdf.cell(200, 10, txt = "[email protected] | 7903165656 | Hyderabad, India", ln = True, align = 'C') pdf.cell(200, 10, txt = "LinkedIn: linkedin.com/in/manishkr98", ln = True, align = 'C') # Add a line break pdf.ln(10) # Summary pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "SUMMARY", ln = True) pdf.set_font("Arial", size = 12) summary = ("Dynamic and results-oriented IT Analyst with 2.5 years of experience in Java, Oracle, SQL databases, " "and DevOps. Proficient in AWS services and containerization technologies, with a strong understanding " "of SDLC, architecture, and Agile methodologies. Demonstrates strong problem-solving skills, project " "planning, and delivery management with a focus on security and operational excellence.") pdf.multi_cell(0, 10, summary) # Add a line break pdf.ln(5) # Skills pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "SKILLS", ln = True) pdf.set_font("Arial", size = 12) skills = ( "- Technical Skills: Java, Oracle, SQL Database, Docker, Terraform\n" "- Cloud Computing: AWS (EC2, S3, RDS, ECS, ECR, IAM, VPC, CloudWatch)\n" "- DevOps: CI/CD (GitHub Actions), Bash, Python\n" "- Operating Systems: RHEL, Windows\n" "- Project Management: Agile methodologies, SDLC, Project planning, Milestone control\n" "- Security: Application and infrastructure security, compliance management\n" "- Tools: Maven, Git, GitHub, CloudWatch\n" "- Soft Skills: Creative problem-solving, team collaboration, communication" ) pdf.multi_cell(0, 10, skills) # Add a line break pdf.ln(5) # Experience pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "EXPERIENCE", ln = True) pdf.set_font("Arial", 'B', 12) pdf.cell(200, 10, txt = "IT Analyst | ICICI Bank Ltd., Hyderabad", ln = True) pdf.set_font("Arial", 'I', 12) pdf.cell(200, 10, txt = "July 2022 - Present", ln = True) pdf.set_font("Arial", size = 12) experience_icici = ( "- Managed and optimized applications on AWS infrastructure, ensuring high availability and performance.\n" "- Implemented containerization using Docker and AWS ECS, improving deployment efficiency.\n" "- Configured and managed Docker registries with AWS ECR, enhancing image security.\n" "- Led the setup and configuration of GitHub Actions workflows for CI/CD automation.\n" "- Ensured application security and compliance by addressing security observations.\n" "- Assisted in project planning, progress monitoring, and ensuring timely release cycles.\n" "- Coordinated with product managers and business stakeholders to align products with customer needs.\n" "- Provided technical support and participated in the delivery lifecycle, ensuring smooth operations." ) pdf.multi_cell(0, 10, experience_icici) pdf.ln(5) pdf.set_font("Arial", 'B', 12) pdf.cell(200, 10, txt = "Trainee Software Engineer | L&T TECHNOLOGY AND SERVICES, Vadodara", ln = True) pdf.set_font("Arial", 'I', 12) pdf.cell(200, 10, txt = "October 2021 - June 2022", ln = True) pdf.set_font("Arial", size = 12) experience_lt = ( "- Supported the migration of on-premises infrastructure to AWS.\n" "- Assisted in setting up and managing EC2 instances, S3 buckets, and IAM roles.\n" "- Participated in workshops and training sessions to build foundational AWS knowledge.\n" "- Contributed to the creation of user stories and acceptance criteria for Agile projects.\n" "- Collaborated with senior team members to resolve operational issues and improve service delivery." ) pdf.multi_cell(0, 10, experience_lt) # Add a line break pdf.ln(5) # Education pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "EDUCATION", ln = True) pdf.set_font("Arial", 'B', 12) pdf.cell(200, 10, txt = "Bachelor of Engineering, Computer Science", ln = True) pdf.set_font("Arial", size = 12) pdf.cell(200, 10, txt = "Ies Institute of Technology And Management, Bhopal", ln = True) pdf.cell(200, 10, txt = "Graduated: May 2020", ln = True) # Add a line break pdf.ln(5) # Certifications pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "CERTIFICATIONS", ln = True) pdf.set_font("Arial", size = 12) certifications = ( "- Blockchain for Banking, Institute for Development & Research in Banking Technology (IDRBT)\n" "- Cloud Computing\n" "- API Fundamentals" ) pdf.multi_cell(0, 10, certifications) # Add a line break pdf.ln(5) # Training pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "TRAINING", ln = True) pdf.set_font("Arial", size = 12) training = ( "- Software Development Training, JSpider, Bengaluru\n" "- API Basic Training for Banking, Hyderabad\n" "- Cloud Basic Training" ) pdf.multi_cell(0, 10, training) # Add a line break pdf.ln(5) # Hobbies and Interests pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "HOBBIES AND INTERESTS", ln = True) pdf.set_font("Arial", size = 12) hobbies = ( "- Photography\n" "- Travelling\n" "- Gaming" ) pdf.multi_cell(0, 10, hobbies) # Add a line break pdf.ln(5) # Activities and Honors pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "ACTIVITIES AND HONORS", ln = True) pdf.set_font("Arial", size = 12) activities = ( "- Completed an offline course on blockchain technology at IDRBT, focusing on distributed ledger technology and smart contracts.\n" "- Proficient in working with APIs for software integration and seamless data exchange." ) pdf.multi_cell(0, 10, activities) # Add a line break pdf.ln(5) # Project Highlights pdf.set_font("Arial", 'B', 14) pdf.cell(200, 10, txt = "PROJECT HIGHLIGHTS", ln = True) pdf.set_font("Arial", 'B', 12) pdf.cell(200, 10, txt = "Project: AWS Migration and Optimization", ln = True) pdf.set_font("Arial", 'I', 12) pdf.cell(200, 10, txt = "Role: IT Analyst", ln = True) pdf.set_font("Arial", size = 12) project_aws = ( "- Description: Led the migration of on-premises applications to AWS, resulting in improved scalability and reduced operational costs.\n" "- Responsibilities:\n" " - Deployed containerized applications using Docker and AWS ECS.\n" " - Set up CI/CD pipelines using GitHub Actions for automated deployment.\n" " - Ensured application security by managing AWS IAM roles and security groups." ) pdf.multi_cell(0, 10, project_aws) pdf.ln(5) pdf.set_font("Arial", 'B', 12) pdf.cell(200, 10, txt = "Project: Agile Delivery for Banking Application", ln = True) pdf.set_font("Arial", 'I', 12) pdf.cell(200, 10, txt = "Role: Trainee Software Engineer", ln = True) pdf.set_font("Arial", size = 12) project_agile = ( "- Description: Assisted in the Agile delivery of a banking application, ensuring compliance with security standards.\n" "- Responsibilities:\n" " - Created user stories and acceptance criteria for development tasks.\n" " - Monitored project milestones and ensured timely delivery.\n" " - Participated in daily stand-ups and sprint planning sessions." ) pdf.multi_cell(0, 10, project_agile) # Save the PDF to a file pdf_output_path = "/mnt/data/ManishKumar_Resume.pdf" pdf.output(pdf_output_path) pdf_output_path
Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2 and start coding.
OneCompiler's python online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample python program which takes name as input and print your name with hello.
import sys
name = sys.stdin.readline()
print("Hello "+ name)
Python is a very popular general-purpose programming language which was created by Guido van Rossum, and released in 1991. It is very popular for web development and you can build almost anything like mobile apps, web apps, tools, data analytics, machine learning etc. It is designed to be simple and easy like english language. It's is highly productive and efficient making it a very popular language.
When ever you want to perform a set of operations based on a condition IF-ELSE is used.
if conditional-expression
#code
elif conditional-expression
#code
else:
#code
Indentation is very important in Python, make sure the indentation is followed correctly
For loop is used to iterate over arrays(list, tuple, set, dictionary) or strings.
mylist=("Iphone","Pixel","Samsung")
for i in mylist:
print(i)
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while condition
#code
There are four types of collections in Python.
List is a collection which is ordered and can be changed. Lists are specified in square brackets.
mylist=["iPhone","Pixel","Samsung"]
print(mylist)
Tuple is a collection which is ordered and can not be changed. Tuples are specified in round brackets.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
Below throws an error if you assign another value to tuple again.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
myTuple[1]="onePlus"
print(myTuple)
Set is a collection which is unordered and unindexed. Sets are specified in curly brackets.
myset = {"iPhone","Pixel","Samsung"}
print(myset)
Dictionary is a collection of key value pairs which is unordered, can be changed, and indexed. They are written in curly brackets with key - value pairs.
mydict = {
"brand" :"iPhone",
"model": "iPhone 11"
}
print(mydict)
Following are the libraries supported by OneCompiler's Python compiler
Name | Description |
---|---|
NumPy | NumPy python library helps users to work on arrays with ease |
SciPy | SciPy is a scientific computation library which depends on NumPy for convenient and fast N-dimensional array manipulation |
SKLearn/Scikit-learn | Scikit-learn or Scikit-learn is the most useful library for machine learning in Python |
Pandas | Pandas is the most efficient Python library for data manipulation and analysis |
DOcplex | DOcplex is IBM Decision Optimization CPLEX Modeling for Python, is a library composed of Mathematical Programming Modeling and Constraint Programming Modeling |