Encrypting and decrypting files in python
- Refer Here for changes which include
- Now you are supposed to encrypt and decrypt the file contents, use the following article to understand how to encrypt and decrypt files and texts Refer Here
Exercises
- Create a dictionary to store your resume
- career objective
- professional summary
- skills
- work experience
- company:
- details about your work
- Educational qualification
resume = {
'careerobjective': 'Results-driven DevOps Engineer with 6 years of experience in implementing scalable solutions and optimizing CI/CD pipelines, seeking to contribute by improving system reliability and deployment speed.',
'professionalsummary': "Over 6+ years of IT Industry experience as a DevOps Engineer, with Configuration Management, Build, Release Management and Quality Assurance using CVS, Subversion, GIT, Mercurial & Clear Quest on UNIX and Windows environment. Knowledge of puppet as a Configuration Management tool, to automate repetitive tasks, quickly deploy critical applications, and proactively manage change. Set up the framework for one clicks build and deployment on non-production environments",
'skills': {
'Servers': ['Tomcat','HTTP Server', 'Weblogic'],
'Bug Reporting Tools': ['SDM-12', 'BugZilla', 'JIRA', 'Confluence', 'Rational Clear Quest'],
'DevOps': ['Chef', 'Puppet', 'OpenStack', 'AWS', 'Ansible', 'Docker', 'Vagrant']
}
}