Convert the attached CV into 1 page CV with only education, personal experience, research, publication, skills and society membership

Reading File
Browsing Directory

~/

Searching the Web

one page academic CV formatting education research publications skills society membership

Browsing Directory

~/attachments/a53099ba-aa88-4b25-895a-c1c57b32bdb0/

Running Command

python3 -c "from docx import Document; p='/tmp/workspace/attachments/a53099ba-aa88-4b25-895a-c1c57b32bdb0/Dr. Shalaka CV.word.docx'; d=Document(p); [print(f'[{x.style.name if x.style else \"None\"}] {x.text}') for x in d.paragraphs if x.text.strip()]; print('---TABLES---'); [([print(' | '.join(c.text.replace(chr(10),' / ') for c in r.cells)) for r in t.rows]) for t in d.tables]"

Browsing Directory

~/

Running Command

mkdir -p "/tmp/workspace/shalaka-one-page-cv/output" 66 python3 - <<'PY' from docx import Document from docx.shared import Inches, Pt, RGBColor from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.enum.section import WD_SECTION from docx.oxml import OxmlElement from docx.oxml.ns import qn out='/tmp/workspace/shalaka-one-page-cv/output/Dr_Shalaka_Deshpande_One_Page_CV.docx' doc=Document() sec=doc.sections[0] sec.top_margin=Inches(.42); sec.bottom_margin=Inches(.42); sec.left_margin=Inches(.56); sec.right_margin=Inches(.56) sec.header_distance=Inches(.2); sec.footer_distance=Inches(.2) styles=doc.styles styles['Normal'].font.name='Arial'; styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); styles['Normal'].font.size=Pt(8.7) styles['Normal'].paragraph_format.space_after=Pt(0); styles['Normal'].paragraph_format.line_spacing=1.0 # helper BLUE=RGBColor(31,78,121) def shade(cell, fill): tcPr=cell._tc.get_or_add_tcPr(); shd=OxmlElement('w:shd'); shd.set(qn('w:fill'),fill); tcPr.append(shd) def set_cell_margins(cell, top=50,start=70,bottom=50,end=70): tc=cell._tc; tcPr=tc.get_or_add_tcPr(); tcMar=tcPr.first_child_found_in('w:tcMar') if tcMar is None: tcMar=OxmlElement('w:tcMar'); tcPr.append(tcMar) for m,v in [('top',top),('start',start),('bottom',bottom),('end',end)]: node=tcMar.find(qn('w:'+m)) if node is None: node=OxmlElement('w:'+m); tcMar.append(node) node.set(qn('w:w'),str(v)); node.set(qn('w:type'),'dxa') def border_bottom(p, color='1F4E79', sz='10'): pPr=p._p.get_or_add_pPr(); pbdr=OxmlElement('w:pBdr'); bottom=OxmlElement('w:bottom'); bottom.set(qn('w:val'),'single'); bottom.set(qn('w:sz'),sz); bottom.set(qn('w:space'),'4'); bottom.set(qn('w:color'),color); pbdr.append(bottom); pPr.append(pbdr) def add_section(title): p=doc.add_paragraph(); p.paragraph_format.space_before=Pt(5); p.paragraph_format.space_after=Pt(1) r=p.add_run(title.upper()); r.bold=True; r.font.name='Arial'; r.font.size=Pt(9.4); r.font.color.rgb=BLUE border_bottom(p) def add_item(text, indent=0): p=doc.add_paragraph(style='Normal'); p.paragraph_format.left_indent=Inches(indent); p.paragraph_format.first_line_indent=Inches(-.12 if indent else 0); p.paragraph_format.space_after=Pt(.6) if indent: p.add_run('• ').bold=True p.add_run(text) return p # heading p=doc.add_paragraph(); p.alignment=WD_ALIGN_PARAGRAPH.CENTER; p.paragraph_format.space_after=Pt(1) r=p.add_run('DR. SHALAKA A. DESHPANDE'); r.bold=True; r.font.name='Arial'; r.font.size=Pt(16); r.font.color.rgb=BLUE p=doc.add_paragraph(); p.alignment=WD_ALIGN_PARAGRAPH.CENTER; p.paragraph_format.space_after=Pt(3) r=p.add_run('MBBS, MD (Pathology) | 7769979510 | shalaka1994@gmail.com | Mumbai, India'); r.font.size=Pt(8.7) add_section('Education') add_item('Fellowship in Tumour Pathology (ongoing) | Sri Shankara Cancer Hospital and Research Centre, Bengaluru') add_item('MD, Pathology, 2020-2023 | Kasturba Medical College, Manipal, MAHE University, Manipal') add_item('MBBS, 2013-2019 | Rajarshri Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital, Kolhapur') add_section('Professional Experience') add_item('Senior Resident, 1 year | HBT Medical College and Dr. R. N. Cooper Municipal General Hospital, Mumbai') add_item('Rotational experience in histopathology, hematology and cytology; conducted undergraduate teaching and practical sessions.', .18) add_section('Research') add_item('Thesis: “Role of H3K27me3 and Ki67 Labelling Index in Assessing the Biological Behavior of Meningiomas,” MAHE University.') add_item('Oral paper: “Metaplastic Breast Carcinoma - A Case Series,” KAPCON 2021 (virtual).') add_item('Posters: “Clinicopathological Features of Mucinous Neoplasms of Appendix - A Case Series,” MAPCON 2022; “Beyond the Common: Exploring Rare Histological Variants of Uterine Neoplasms,” GYPSICON 2026.', .18) add_section('Publications') add_item('“Role of H3K27me3 and Ki67 Labelling Index in Assessing the Biological Behavior of Meningiomas.” World Neurosurgery (Elsevier).') add_item('“Granulomatous Myocarditis - A Rare Presentation of Mycobacterium Tuberculosis: A Case Series of 4 Autopsy Cases.” Journal of Clinical and Diagnostic Research.') add_item('“Primary Cutaneous Adenoid Cystic Carcinoma - A Rare Entity.” Journal of Clinical and Diagnostic Research.') add_item('“Cytology of Tall Cell Variant of Papillary Thyroid Carcinoma - A Rare, Aggressive Variant.” Global Journal for Research Analysis.') add_section('Skills') add_item('Histopathology: grossing, histotechnology, cytotechnology, tissue-biopsy reporting and fluid analysis. Hematology: peripheral smears, bone marrow aspirates/biopsies, Hb electrophoresis, coagulation studies and flow cytometry.') add_item('Cytology: FNAC procedures and reporting, body-fluid cytology and Pap smears. Clinical pathology: urine examination, semen analysis and routine body-fluid microscopy.') add_section('Society Membership') add_item('Indian Association of Pathologists and Microbiologists (IAPM), Lifetime Member (OL307)') add_item('Karnataka Chapter, Indian Association of Pathologists and Microbiologists (KCIAPM), Lifetime Member (L-3200)') # Document metadata props=doc.core_properties; props.title='One-Page CV - Dr. Shalaka A. Deshpande'; props.author='Dr. Shalaka A. Deshpande' doc.save(out) print(out) PY

Searching Content

"render" in /tmp/skills/docx

Running Command

python3 - <<'PY' from docx import Document p='/tmp/workspace/shalaka-one-page-cv/output/Dr_Shalaka_Deshpande_One_Page_CV.docx' d=Document(p) print('paragraphs:',len([x for x in d.paragraphs if x.text.strip()])) print('sections:',len(d.sections)) for x in d.paragraphs: if x.text.strip(): print(x.text) PY

Browsing Directory

~/shalaka-one-page-cv/

Running Command

python3 - <<'PY' from docx import Document from docx.shared import Inches, Pt, RGBColor from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.oxml import OxmlElement from docx.oxml.ns import qn out='/tmp/workspace/shalaka-one-page-cv/output/Dr_Shalaka_Deshpande_One_Page_CV.docx' doc=Document() sec=doc.sections[0] sec.top_margin=Inches(.42); sec.bottom_margin=Inches(.42); sec.left_margin=Inches(.56); sec.right_margin=Inches(.56) sec.header_distance=Inches(.2); sec.footer_distance=Inches(.2) style=doc.styles['Normal']; style.font.name='Arial'; style._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); style.font.size=Pt(8.7); style.paragraph_format.space_after=Pt(0); style.paragraph_format.line_spacing=1.0 BLUE=RGBColor(31,78,121) def border_bottom(p): pPr=p._p.get_or_add_pPr(); pbdr=OxmlElement('w:pBdr'); bottom=OxmlElement('w:bottom'); bottom.set(qn('w:val'),'single'); bottom.set(qn('w:sz'),'10'); bottom.set(qn('w:space'),'4'); bottom.set(qn('w:color'),'1F4E79'); pbdr.append(bottom); pPr.append(pbdr) def add_section(title): p=doc.add_paragraph(); p.paragraph_format.space_before=Pt(5); p.paragraph_format.space_after=Pt(1) r=p.add_run(title.upper()); r.bold=True; r.font.name='Arial'; r.font.size=Pt(9.4); r.font.color.rgb=BLUE; border_bottom(p) def add_item(text, bullet=False): p=doc.add_paragraph(); p.paragraph_format.space_after=Pt(.6) if bullet: p.paragraph_format.left_indent=Inches(.18); p.paragraph_format.first_line_indent=Inches(-.12); p.add_run('• ').bold=True p.add_run(text) # Heading p=doc.add_paragraph(); p.alignment=WD_ALIGN_PARAGRAPH.CENTER; p.paragraph_format.space_after=Pt(1) r=p.add_run('DR. SHALAKA A. DESHPANDE'); r.bold=True; r.font.name='Arial'; r.font.size=Pt(16); r.font.color.rgb=BLUE p=doc.add_paragraph(); p.alignment=WD_ALIGN_PARAGRAPH.CENTER; p.paragraph_format.space_after=Pt(3); p.add_run('MBBS, MD (Pathology) | 7769979510 | shalaka1994@gmail.com | Mumbai, India').font.size=Pt(8.7) add_section('Education') add_item('Fellowship in Tumour Pathology (ongoing) | Sri Shankara Cancer Hospital and Research Centre, Bengaluru') add_item('MD, Pathology, 2020-2023 | Kasturba Medical College, Manipal, MAHE University, Manipal') add_item('MBBS, 2013-2019 | Rajarshri Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital, Kolhapur') add_section('Professional Experience') add_item('Senior Resident, 1 year | HBT Medical College and Dr. R. N. Cooper Municipal General Hospital, Mumbai') add_item('Rotational experience in histopathology, hematology and cytology; conducted undergraduate teaching and practical sessions.', True) add_section('Research') add_item('Thesis: “Role of H3K27me3 and Ki67 Labelling Index in Assessing the Biological Behavior of Meningiomas,” MAHE University.') add_item('Oral paper: “Metaplastic Breast Carcinoma - A Case Series,” KAPCON 2021 (virtual).') add_item('Posters: “Clinicopathological Features of Mucinous Neoplasms of Appendix - A Case Series,” MAPCON 2022; “Beyond the Common: Exploring Rare Histological Variants of Uterine Neoplasms,” GYPSICON 2026.', True) add_section('Publications') add_item('“Role of H3K27me3 and Ki67 Labelling Index in Assessing the Biological Behavior of Meningiomas.” World Neurosurgery (Elsevier).') add_item('“Granulomatous Myocarditis - A Rare Presentation of Mycobacterium Tuberculosis: A Case Series of 4 Autopsy Cases.” Journal of Clinical and Diagnostic Research.') add_item('“Primary Cutaneous Adenoid Cystic Carcinoma - A Rare Entity.” Journal of Clinical and Diagnostic Research.') add_item('“Cytology of Tall Cell Variant of Papillary Thyroid Carcinoma - A Rare, Aggressive Variant.” Global Journal for Research Analysis.') add_section('Skills') add_item('Histopathology: grossing, histotechnology, cytotechnology, tissue-biopsy reporting and fluid analysis. Hematology: peripheral smears, bone marrow aspirates/biopsies, Hb electrophoresis, coagulation studies and flow cytometry.') add_item('Cytology: FNAC procedures and reporting, body-fluid cytology and Pap smears. Clinical pathology: urine examination, semen analysis and routine body-fluid microscopy.') add_section('Society Membership') add_item('Indian Association of Pathologists and Microbiologists (IAPM), Lifetime Member (OL307)') add_item('Karnataka Chapter, Indian Association of Pathologists and Microbiologists (KCIAPM), Lifetime Member (L-3200)') doc.core_properties.title='One-Page CV - Dr. Shalaka A. Deshpande' doc.save(out) print(out) PY

Running Command

python3 - <<'PY' from docx import Document p='/tmp/workspace/shalaka-one-page-cv/output/Dr_Shalaka_Deshpande_One_Page_CV.docx' d=Document(p) print('Sections:',len(d.sections)) print('Nonempty paragraphs:',len([x for x in d.paragraphs if x.text.strip()])) for x in d.paragraphs: if x.text.strip(): print(x.text) PY

Browsing Directory

~/shalaka-one-page-cv/output/

Created a concise one-page CV containing only education, professional experience, research, publications, skills, and society memberships.

Dr Shalaka Deshpande One Page CV

Word Document · DOCX

This is a shared conversation. Sign in to Orris to start your own chat.