diff --git a/projects/cv_generator/cv/KALINGA_RAY_2017.pdf b/projects/cv_generator/cv/KALINGA_RAY_2017.pdf index b85cc46..a4c0e9b 100644 Binary files a/projects/cv_generator/cv/KALINGA_RAY_2017.pdf and b/projects/cv_generator/cv/KALINGA_RAY_2017.pdf differ diff --git a/projects/cv_generator/src/generateCV.py b/projects/cv_generator/src/generateCV.py index 1bcee28..dd953ec 100644 --- a/projects/cv_generator/src/generateCV.py +++ b/projects/cv_generator/src/generateCV.py @@ -68,11 +68,13 @@ def pageheading(): def intro(): return \ ''' -
Software engineer with 10 years' experience in IT industry, in various domains, - specializing in Car Multimedia application and Mobile application development. - 1.5yrs of working and living experience in Hildesheim, Germany. Possess strong motivation - towards learning German language and have completed A2 (Deutsche Sprache) +
To pursue a Master’s Degree in the field of applied Computer science such as Data Analysis, Data science, + which would enhance my existing skills, give me practical exposure of utilizing the theoretical concepts + taught during Undergraduate course (as well as self taught in the recent past) in a real time environment. + And hone my professional skills that I have gained while working as Software engineer in IT industry for + last 10 years. Also want to spent some more time learning and living in German society as my last 1.5yrs + of stay in Hildesheim, Germany was great and enriching in terms of personal and professional life.
''' @@ -85,13 +87,11 @@ def technical():| Date of Birth | -02 June 1983 | -
| Marital Status | -Married | -
| Languages Known | -English, Hindi and Oriya, German(A2) | -
| Passport Number | -G6513632 | -
I do hereby declare that the above information is true to the best of my knowledge.
''' def htmlend(): @@ -326,6 +311,7 @@ def skeleton(): + projects() \ + certificates() \ + educations() \ + + personalDelaration() \ + footer(contact_email, contact_name, datetime.datetime.today().strftime('%d %b %y %H:%M')) \ + htmlend() @@ -335,17 +321,4 @@ def skeleton(): f.write(message) -manager_name = '' -company_name = "" -def cover_page(): - return \ - htmlstart(contact_name) + \ - mycover(manager_name, company_name) + \ - htmlend() - - -with open(cover,'w+') as f: - message = cover_page() - f.write(message) - -pdfkit.from_file(html_file, pdf_file, cover=cover, cover_first=True) +pdfkit.from_file(html_file, pdf_file)