And some change in BSc radiology ki jagah BMRIT (Bachelor of Medical Radiology and Imaging Technology. likh do jha par bhi bsc radiology hai

Reading File
Reading File
Browsing Directory

~/

Browsing Directory

~/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4

Reading File
Running Command

mkdir -p "/tmp/workspace/resume-bmrit/output"  python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4/Resume.pdf' r=PdfReader(p) print('pages',len(r.pages)) for i,page in enumerate(r.pages): print('\n--- PAGE',i+1,'---') print(page.extract_text()) PY

Running Command

python - <<'PY' import fitz p='/tmp/workspace/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4/Resume.pdf' doc=fitz.open(p) print('PAGES',doc.page_count) for i,page in enumerate(doc): print('PAGE',i+1,repr(page.get_text('text')[:5000])) pix=page.get_pixmap(matrix=fitz.Matrix(1.5,1.5), alpha=False) pix.save(f'/tmp/workspace/resume-bmrit/output/page_{i+1}.png') PY ls -lh "/tmp/workspace/resume-bmrit/output"

Running Command

python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4/Resume.pdf' r=PdfReader(p) print('pages=',len(r.pages)) for n,page in enumerate(r.pages,1): print('page',n,'mediabox',page.mediabox,'text_chars',len(page.extract_text() or '')) print('resources',list((page.get('/Resources') or {}).keys())) try: ims=list(page.images) print('images',len(ims)) for j,im in enumerate(ims): fn=f'/tmp/workspace/resume-bmrit/output/p{n}_image{j}.{im.name.split(".")[-1]}' open(fn,'wb').write(im.data) print(' saved',fn,'name',im.name,'bytes',len(im.data)) except Exception as e: print('image error',repr(e)) PY ls -lh "/tmp/workspace/resume-bmrit/output"

Running Command

python -c "from pypdf import PdfReader; p='/tmp/workspace/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4/Resume.pdf'; r=PdfReader(p); open('/tmp/workspace/resume-bmrit/output/extracted.txt','w',encoding='utf-8').write('\\n\\n'.join(x.extract_text() or '' for x in r.pages))"

Reading File
Running Command

python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/attachments/bd99953b-ad04-40c1-ab96-7805db0a15b4/Resume.pdf' page=PdfReader(p).pages[0] def vis(text,cm,tm,fontDict,fontSize): if text.strip() and ('B.Sc' in text or 'RADIOLOGY' in text or 'Dedicated' in text): print(repr(text), 'x=',round(tm[4],1),'y=',round(tm[5],1),'font=',fontSize, 'base', fontDict.get('/BaseFont') if fontDict else None) page.extract_text(visitor_text=vis) PY

Running Command

python - <<'PY' from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.pdfbase.pdfmetrics import stringWidth from reportlab.pdfbase.ttfonts import TTFont from reportlab.pdfbase import pdfmetrics from reportlab.lib.utils import simpleSplit from pathlib import Path out=Path('/tmp/workspace/resume-bmrit/output/Krishna_Arya_Resume_BMRIT.pdf') try: pdfmetrics.registerFont(TTFont('Noto', '/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf')) pdfmetrics.registerFont(TTFont('NotoBold', '/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf')) except Exception: pass regular='Noto'; bold='NotoBold' W,H=A4 c=canvas.Canvas(str(out), pagesize=A4) # colors navy=HexColor('#152d4c'); blue=HexColor('#2f6ca3'); text=HexColor('#263746'); muted=HexColor('#587080'); pale=HexColor('#eef3f7') # left background left=166 c.setFillColor(navy); c.rect(0,0,left,H,stroke=0,fill=1) # Header name right x=184; top=793 c.setFillColor(navy); c.setFont(bold,25); c.drawString(x,top,'KRISHNA') c.setFont(bold,25); c.drawString(x,top-29,'ARYA') c.setStrokeColor(blue); c.setLineWidth(1.2); c.line(x,top-40,540,top-40) c.setFillColor(blue); c.setFont(bold,9.7); c.drawString(x,top-59,'BMRIT GRADUATE | ASPIRING EDUCATOR') # helpers def side_heading(label,y): c.setFillColor(white); c.setFont(bold,9.2); c.drawString(18,y,label) c.setStrokeColor(HexColor('#6b8aa9')); c.setLineWidth(.45); c.line(18,y-6,145,y-6) def side_label(label,value,y): c.setFillColor(HexColor('#b9cbdc')); c.setFont(bold,6.8); c.drawString(18,y,label) c.setFillColor(white); c.setFont(regular,7.8) for i,line in enumerate(simpleSplit(value,regular,7.8,126)): c.drawString(18,y-12-i*9,line) return y-12-len(simpleSplit(value,regular,7.8,126))*9-7 side_heading('CONTACT',744) y=side_label('PHONE','6398596497',729) y=side_label('EMAIL','aryakrishna061@gmail.com',y) y=side_label('LOCATION','Haldwani, Uttarakhand',y) side_heading('PERSONAL DETAILS',y-8); y-=23 y=side_label('DATE OF BIRTH','20 January 2003',y) y=side_label('GENDER','Male',y) y=side_label('NATIONALITY','Indian',y) y=side_label('LANGUAGES','Hindi, English',y) side_heading('CORE STRENGTHS',y-8); y-=22 c.setFillColor(white); c.setFont(regular,7.7) for s in ['Clear concept explanation','Professional communication','Patient-friendly approach','Adaptable and eager to learn']: c.circle(21,y+2,1.2,stroke=0,fill=1); c.drawString(27,y,s); y-=16 # main helper right=544 def heading(label,y): c.setFillColor(blue); c.setFont(bold,10); c.drawString(x,y,label) c.setStrokeColor(HexColor('#bccbd7')); c.setLineWidth(.55); c.line(x,y-5,right,y-5) return y-21 def lines(items,y,size=8.7,leading=13,color=text): c.setFillColor(color); c.setFont(regular,size) for item in items: wrapped=simpleSplit(item,regular,size,right-x) for line in wrapped: c.drawString(x,y,line); y-=leading return y y=706 y=heading('PROFILE',y) y=lines(['Dedicated BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate seeking a teaching position in a college or institute. Brings academic knowledge and practical hospital exposure to explain concepts clearly, connect theory with clinical examples, and support student learning.'],y,8.5,12) y-=12 y=heading('EDUCATION',y) c.setFillColor(navy); c.setFont(bold,8.8); c.drawString(x,y,'BACHELOR OF MEDICAL RADIOLOGY AND IMAGING TECHNOLOGY (BMRIT)'); y-=15 c.setFillColor(muted); c.setFont(regular,8.4); c.drawString(x,y,'Government Medical College, Haldwani, Uttarakhand'); y-=15 y=lines(['Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.'],y,8.4,12); y-=10 y=heading('CLINICAL EXPERIENCE',y) c.setFillColor(navy); c.setFont(bold,8.8); c.drawString(x,y,'6-MONTH INTERNSHIP - RADIOLOGY'); y-=15 c.setFillColor(muted); c.setFont(regular,8.4); c.drawString(x,y,'Dr. Susheela Tiwari Government Hospital, Haldwani, Uttarakhand'); y-=15 y=lines(['Practical exposure to radiology and medical imaging procedures.','Understanding of anatomy and physiology in radiological practice.','Experience in patient handling and professional clinical practices.','Worked collaboratively in a multidisciplinary hospital environment.'],y,8.4,13); y-=9 y=heading('TEACHING INTERESTS',y) y=lines(['Radiology Human Anatomy Human Physiology Basic Medical Imaging','Radiological Anatomy Diagnostic Imaging Microbiology Pathology Preventive Medicine','Environmental Studies Radiation Physics'],y,8.35,13); y-=10 y=heading('KEY SKILLS',y) # two column compact skills skills=['Basic radiology concepts','Anatomy and physiology','Clinical communication','Medical imaging fundamentals','Patient handling','Teaching-oriented explanation'] for row in range(3): for col in range(2): s=skills[row*2+col]; sx=x+col*180 c.setFillColor(blue); c.circle(sx+2,y+2,1.4,stroke=0,fill=1) c.setFillColor(text); c.setFont(regular,8.35); c.drawString(sx+9,y,s) y-=16 # footer availability c.setFillColor(blue); c.setFont(bold,8.7); c.drawString(x,y-5,'Available for teaching and academic support roles') c.showPage(); c.save() print(out, out.stat().st_size) PY python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/resume-bmrit/output/Krishna_Arya_Resume_BMRIT.pdf' t='\n'.join(q.extract_text() or '' for q in PdfReader(p).pages) print(t) assert 'B.Sc.' not in t and 'B.Sc' not in t assert 'BMRIT' in t PY

Running Command

python - <<'PY' from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.pdfbase.pdfmetrics import stringWidth from reportlab.lib.utils import simpleSplit from pathlib import Path out=Path('/tmp/workspace/resume-bmrit/output/Krishna_Arya_Resume_BMRIT.pdf') regular='Helvetica'; bold='Helvetica-Bold' W,H=A4 c=canvas.Canvas(str(out), pagesize=A4) navy=HexColor('#152d4c'); blue=HexColor('#2f6ca3'); text=HexColor('#263746'); muted=HexColor('#587080') left=166 c.setFillColor(navy); c.rect(0,0,left,H,stroke=0,fill=1) x=184; top=793 c.setFillColor(navy); c.setFont(bold,25); c.drawString(x,top,'KRISHNA'); c.drawString(x,top-29,'ARYA') c.setStrokeColor(blue); c.setLineWidth(1.2); c.line(x,top-40,540,top-40) c.setFillColor(blue); c.setFont(bold,9.7); c.drawString(x,top-59,'BMRIT GRADUATE | ASPIRING EDUCATOR') def side_heading(label,y): c.setFillColor(white); c.setFont(bold,9.2); c.drawString(18,y,label); c.setStrokeColor(HexColor('#6b8aa9')); c.setLineWidth(.45); c.line(18,y-6,145,y-6) def side_label(label,value,y): c.setFillColor(HexColor('#b9cbdc')); c.setFont(bold,6.8); c.drawString(18,y,label); c.setFillColor(white); c.setFont(regular,7.8); wr=simpleSplit(value,regular,7.8,126) for i,line in enumerate(wr): c.drawString(18,y-12-i*9,line) return y-12-len(wr)*9-7 side_heading('CONTACT',744); y=side_label('PHONE','6398596497',729); y=side_label('EMAIL','aryakrishna061@gmail.com',y); y=side_label('LOCATION','Haldwani, Uttarakhand',y) side_heading('PERSONAL DETAILS',y-8); y-=23; y=side_label('DATE OF BIRTH','20 January 2003',y); y=side_label('GENDER','Male',y); y=side_label('NATIONALITY','Indian',y); y=side_label('LANGUAGES','Hindi, English',y) side_heading('CORE STRENGTHS',y-8); y-=22; c.setFillColor(white); c.setFont(regular,7.7) for s in ['Clear concept explanation','Professional communication','Patient-friendly approach','Adaptable and eager to learn']: c.circle(21,y+2,1.2,stroke=0,fill=1); c.drawString(27,y,s); y-=16 right=544 def heading(label,y): c.setFillColor(blue); c.setFont(bold,10); c.drawString(x,y,label); c.setStrokeColor(HexColor('#bccbd7')); c.setLineWidth(.55); c.line(x,y-5,right,y-5); return y-21 def lines(items,y,size=8.7,leading=13,color=text): c.setFillColor(color); c.setFont(regular,size) for item in items: for line in simpleSplit(item,regular,size,right-x): c.drawString(x,y,line); y-=leading return y y=706; y=heading('PROFILE',y); y=lines(['Dedicated BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate seeking a teaching position in a college or institute. Brings academic knowledge and practical hospital exposure to explain concepts clearly, connect theory with clinical examples, and support student learning.'],y,8.5,12); y-=12 y=heading('EDUCATION',y); c.setFillColor(navy); c.setFont(bold,8.6); c.drawString(x,y,'BACHELOR OF MEDICAL RADIOLOGY AND IMAGING TECHNOLOGY (BMRIT)'); y-=15; c.setFillColor(muted); c.setFont(regular,8.4); c.drawString(x,y,'Government Medical College, Haldwani, Uttarakhand'); y-=15; y=lines(['Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.'],y,8.4,12); y-=10 y=heading('CLINICAL EXPERIENCE',y); c.setFillColor(navy); c.setFont(bold,8.8); c.drawString(x,y,'6-MONTH INTERNSHIP - RADIOLOGY'); y-=15; c.setFillColor(muted); c.setFont(regular,8.4); c.drawString(x,y,'Dr. Susheela Tiwari Government Hospital, Haldwani, Uttarakhand'); y-=15; y=lines(['Practical exposure to radiology and medical imaging procedures.','Understanding of anatomy and physiology in radiological practice.','Experience in patient handling and professional clinical practices.','Worked collaboratively in a multidisciplinary hospital environment.'],y,8.4,13); y-=9 y=heading('TEACHING INTERESTS',y); y=lines(['Radiology Human Anatomy Human Physiology Basic Medical Imaging','Radiological Anatomy Diagnostic Imaging Microbiology Pathology Preventive Medicine','Environmental Studies Radiation Physics'],y,8.35,13); y-=10 y=heading('KEY SKILLS',y); skills=['Basic radiology concepts','Anatomy and physiology','Clinical communication','Medical imaging fundamentals','Patient handling','Teaching-oriented explanation'] for row in range(3): for col in range(2): s=skills[row*2+col]; sx=x+col*180; c.setFillColor(blue); c.circle(sx+2,y+2,1.4,stroke=0,fill=1); c.setFillColor(text); c.setFont(regular,8.35); c.drawString(sx+9,y,s) y-=16 c.setFillColor(blue); c.setFont(bold,8.7); c.drawString(x,y-5,'Available for teaching and academic support roles') c.showPage(); c.save(); print(out, out.stat().st_size) PY python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/resume-bmrit/output/Krishna_Arya_Resume_BMRIT.pdf' t='\n'.join(q.extract_text() or '' for q in PdfReader(p).pages) print(t) assert 'B.Sc' not in t assert 'BMRIT' in t PY ls -lh "/tmp/workspace/resume-bmrit/output/Krishna_Arya_Resume_BMRIT.pdf"

B.Sc. Radiology ki jagah BMRIT (Bachelor of Medical Radiology and Imaging Technology) update kar diya hai, jahan bhi relevant tha.

Krishna Arya Resume BMRIT

PDF Document · PDF

BMRIT ke liye resume ko ATS-friendly bana do

Reading File
Reading File
Browsing Directory

~/

Searching the Web

ATS friendly resume formatting standard headings single column PDF text searchable best practices 2026

Searching PubMed

radiology education AND systematic review

Browsing Directory

~/resume-bmrit

Reading File
Running Command

mkdir -p "/tmp/workspace/ats-bmrit-resume/output"  python - <<'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 from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor from reportlab.lib.utils import simpleSplit from pathlib import Path base=Path('/tmp/workspace/ats-bmrit-resume/output') docx_path=base/'Krishna_Arya_BMRIT_ATS_Resume.docx' pdf_path=base/'Krishna_Arya_BMRIT_ATS_Resume.pdf' # Content kept limited to confirmed details from supplied resume name='KRISHNA ARYA' contact='Haldwani, Uttarakhand | +91 6398596497 | aryakrishna061@gmail.com' summary=('BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate with six months of hospital internship experience in radiology and medical imaging. ' 'Knowledge of radiological sciences, human anatomy, physiology, basic medical imaging, patient handling, clinical communication, and multidisciplinary teamwork. ' 'Seeking entry-level Medical Radiology and Imaging Technology, radiology support, imaging department, or academic support opportunities.') skills=['Medical Radiology and Imaging Technology (BMRIT)','Radiology and medical imaging fundamentals','Radiological sciences','Human anatomy and physiology','Patient handling and patient-friendly communication','Clinical communication and professional practices','Multidisciplinary teamwork','Basic medical imaging concepts','Teaching-oriented concept explanation'] exp_bullets=['Completed a 6-month internship in the Radiology Department at Dr. Susheela Tiwari Government Hospital, Haldwani, Uttarakhand.','Gained practical exposure to radiology and medical imaging procedures and clinical workflows.','Applied knowledge of human anatomy and physiology in radiological practice.','Supported patient handling and maintained professional communication in a hospital environment.','Worked collaboratively within a multidisciplinary healthcare team.'] edu_bullets=['Academic grounding in radiological sciences, human anatomy, human physiology, and medical imaging.'] # DOCX D=Document(); sec=D.sections[0]; sec.top_margin=Inches(.55); sec.bottom_margin=Inches(.55); sec.left_margin=Inches(.7); sec.right_margin=Inches(.7) styles=D.styles normal=styles['Normal']; normal.font.name='Arial'; normal._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); normal.font.size=Pt(10); normal.font.color.rgb=RGBColor(0,0,0) normal.paragraph_format.space_after=Pt(4) def set_spacing(p,before=0,after=0,line=None): p.paragraph_format.space_before=Pt(before); p.paragraph_format.space_after=Pt(after) if line: p.paragraph_format.line_spacing=Pt(line) def add_text(text,bold=False,size=10,align=None,color=None,space_after=0): p=D.add_paragraph(); set_spacing(p,after=space_after) if align is not None: p.alignment=align r=p.add_run(text); r.bold=bold; r.font.name='Arial'; r._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); r.font.size=Pt(size) if color: r.font.color.rgb=RGBColor(*color) return p def heading(t): p=D.add_paragraph(); set_spacing(p,before=7,after=2); p.paragraph_format.keep_with_next=True r=p.add_run(t.upper()); r.bold=True; r.font.name='Arial'; r.font.size=Pt(11); r.font.color.rgb=RGBColor(31,78,121) pPr=p._p.get_or_add_pPr(); borders=OxmlElement('w:pBdr'); bottom=OxmlElement('w:bottom'); bottom.set(qn('w:val'),'single'); bottom.set(qn('w:sz'),'6'); bottom.set(qn('w:space'),'2'); bottom.set(qn('w:color'),'1F4E79'); borders.append(bottom); pPr.append(borders) def bullet(t): p=D.add_paragraph(style='List Bullet'); set_spacing(p,after=1,line=12); p.paragraph_format.left_indent=Inches(.2); p.paragraph_format.first_line_indent=Inches(-.14) r=p.add_run(t); r.font.name='Arial'; r.font.size=Pt(10) add_text(name,True,18,WD_ALIGN_PARAGRAPH.CENTER,(31,78,121),1) add_text('BMRIT GRADUATE | RADIOLOGY AND MEDICAL IMAGING',True,10,WD_ALIGN_PARAGRAPH.CENTER,(0,0,0),2) add_text(contact,False,9.5,WD_ALIGN_PARAGRAPH.CENTER,(0,0,0),4) heading('Professional Summary'); add_text(summary,False,10,space_after=0) heading('Core Skills') # comma list avoids table/columns add_text(' • '.join(skills),False,10,space_after=0) heading('Clinical Experience') add_text('Radiology Intern | Dr. Susheela Tiwari Government Hospital | Haldwani, Uttarakhand',True,10,space_after=1) add_text('6-Month Internship',False,9.5,space_after=1) for b in exp_bullets: bullet(b) heading('Education') add_text('Bachelor of Medical Radiology and Imaging Technology (BMRIT)',True,10,space_after=1) add_text('Government Medical College | Haldwani, Uttarakhand',False,10,space_after=1) for b in edu_bullets: bullet(b) heading('Additional Information') add_text('Languages: Hindi, English',False,10,space_after=1) add_text('Availability: Teaching, academic support, radiology support, and entry-level medical imaging roles',False,10,space_after=0) D.save(docx_path) # PDF single column W,H=A4; c=canvas.Canvas(str(pdf_path),pagesize=A4); L=48; R=548; y=800; navy=HexColor('#1f4e79'); black=HexColor('#000000') def pdf_text(txt,size=10,bold=False,center=False,dy=13,color=black): global y c.setFillColor(color); c.setFont('Helvetica-Bold' if bold else 'Helvetica',size) if center: c.drawCentredString(W/2,y,txt) else: c.drawString(L,y,txt) y-=dy def pdf_heading(txt): global y y-=7; c.setFillColor(navy); c.setFont('Helvetica-Bold',11); c.drawString(L,y,txt.upper()); y-=3; c.setStrokeColor(navy); c.setLineWidth(.7); c.line(L,y,R,y); y-=14 def wrapped(txt,size=10,bold=False,indent=0,bullet=False): global y font='Helvetica-Bold' if bold else 'Helvetica'; c.setFont(font,size); lines=simpleSplit(txt,font,size,R-L-indent) for i,line in enumerate(lines): c.setFillColor(black); c.drawString(L+indent,y,line) if bullet and i==0: c.drawString(L,y,u'•') y-=12 pdf_text(name,18,True,True,20,navy); pdf_text('BMRIT GRADUATE | RADIOLOGY AND MEDICAL IMAGING',10,True,True,14); pdf_text(contact,9.5,False,True,16) pdf_heading('Professional Summary'); wrapped(summary,10); pdf_heading('Core Skills'); wrapped(' • '.join(skills),10) pdf_heading('Clinical Experience'); pdf_text('Radiology Intern | Dr. Susheela Tiwari Government Hospital | Haldwani, Uttarakhand',10,True,False,12); pdf_text('6-Month Internship',9.5,False,False,13) for t in exp_bullets: wrapped(t,10,indent=12,bullet=True) pdf_heading('Education'); pdf_text('Bachelor of Medical Radiology and Imaging Technology (BMRIT)',10,True,False,12); pdf_text('Government Medical College | Haldwani, Uttarakhand',10,False,False,13) for t in edu_bullets: wrapped(t,10,indent=12,bullet=True) pdf_heading('Additional Information'); pdf_text('Languages: Hindi, English',10,False,False,12); wrapped('Availability: Teaching, academic support, radiology support, and entry-level medical imaging roles',10) c.save() print(docx_path); print(pdf_path) PY python - <<'PY' from docx import Document from pypdf import PdfReader for p in ['/tmp/workspace/ats-bmrit-resume/output/Krishna_Arya_BMRIT_ATS_Resume.docx','/tmp/workspace/ats-bmrit-resume/output/Krishna_Arya_BMRIT_ATS_Resume.pdf']: if p.endswith('.docx'): text='\n'.join(x.text for x in Document(p).paragraphs) else: text='\n'.join(pg.extract_text() or '' for pg in PdfReader(p).pages) print('\n',p,'\n',text) assert 'B.Sc' not in text assert 'Bachelor of Medical Radiology and Imaging Technology (BMRIT)' in text assert 'Radiology Intern' in text PY ls -lh "/tmp/workspace/ats-bmrit-resume/output"

Running Command

python - <<'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 from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor from reportlab.lib.utils import simpleSplit from pathlib import Path base=Path('/tmp/workspace/ats-bmrit-resume/output') base.mkdir(parents=True, exist_ok=True) docx_path=base/'Krishna_Arya_BMRIT_ATS_Resume.docx' pdf_path=base/'Krishna_Arya_BMRIT_ATS_Resume.pdf' name='KRISHNA ARYA' contact='Haldwani, Uttarakhand | +91 6398596497 | aryakrishna061@gmail.com' summary=('BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate with six months of hospital internship experience in radiology and medical imaging. Knowledge of radiological sciences, human anatomy, physiology, basic medical imaging, patient handling, clinical communication, and multidisciplinary teamwork. Seeking entry-level Medical Radiology and Imaging Technology, radiology support, imaging department, or academic support opportunities.') skills=['Medical Radiology and Imaging Technology (BMRIT)','Radiology and medical imaging fundamentals','Radiological sciences','Human anatomy and physiology','Patient handling and patient-friendly communication','Clinical communication and professional practices','Multidisciplinary teamwork','Basic medical imaging concepts','Teaching-oriented concept explanation'] exp_bullets=['Completed a 6-month internship in the Radiology Department at Dr. Susheela Tiwari Government Hospital, Haldwani, Uttarakhand.','Gained practical exposure to radiology and medical imaging procedures and clinical workflows.','Applied knowledge of human anatomy and physiology in radiological practice.','Supported patient handling and maintained professional communication in a hospital environment.','Worked collaboratively within a multidisciplinary healthcare team.'] edu_bullets=['Academic grounding in radiological sciences, human anatomy, human physiology, and medical imaging.'] D=Document(); sec=D.sections[0]; sec.top_margin=Inches(.55); sec.bottom_margin=Inches(.55); sec.left_margin=Inches(.7); sec.right_margin=Inches(.7) normal=D.styles['Normal']; normal.font.name='Arial'; normal._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); normal.font.size=Pt(10); normal.font.color.rgb=RGBColor(0,0,0); normal.paragraph_format.space_after=Pt(4) def set_spacing(p,before=0,after=0,line=None): p.paragraph_format.space_before=Pt(before); p.paragraph_format.space_after=Pt(after) if line: p.paragraph_format.line_spacing=Pt(line) def add_text(text,bold=False,size=10,align=None,color=None,space_after=0): p=D.add_paragraph(); set_spacing(p,after=space_after) if align is not None: p.alignment=align r=p.add_run(text); r.bold=bold; r.font.name='Arial'; r._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); r.font.size=Pt(size) if color: r.font.color.rgb=RGBColor(*color) return p def heading(t): p=D.add_paragraph(); set_spacing(p,before=7,after=2); p.paragraph_format.keep_with_next=True r=p.add_run(t.upper()); r.bold=True; r.font.name='Arial'; r.font.size=Pt(11); r.font.color.rgb=RGBColor(31,78,121) pPr=p._p.get_or_add_pPr(); borders=OxmlElement('w:pBdr'); bottom=OxmlElement('w:bottom'); bottom.set(qn('w:val'),'single'); bottom.set(qn('w:sz'),'6'); bottom.set(qn('w:space'),'2'); bottom.set(qn('w:color'),'1F4E79'); borders.append(bottom); pPr.append(borders) def bullet(t): p=D.add_paragraph(style='List Bullet'); set_spacing(p,after=1,line=12); p.paragraph_format.left_indent=Inches(.2); p.paragraph_format.first_line_indent=Inches(-.14) r=p.add_run(t); r.font.name='Arial'; r.font.size=Pt(10) add_text(name,True,18,WD_ALIGN_PARAGRAPH.CENTER,(31,78,121),1); add_text('BMRIT GRADUATE | RADIOLOGY AND MEDICAL IMAGING',True,10,WD_ALIGN_PARAGRAPH.CENTER,(0,0,0),2); add_text(contact,False,9.5,WD_ALIGN_PARAGRAPH.CENTER,(0,0,0),4) heading('Professional Summary'); add_text(summary,False,10,space_after=0) heading('Core Skills'); add_text(' • '.join(skills),False,10,space_after=0) heading('Clinical Experience'); add_text('Radiology Intern | Dr. Susheela Tiwari Government Hospital | Haldwani, Uttarakhand',True,10,space_after=1); add_text('6-Month Internship',False,9.5,space_after=1) for b in exp_bullets: bullet(b) heading('Education'); add_text('Bachelor of Medical Radiology and Imaging Technology (BMRIT)',True,10,space_after=1); add_text('Government Medical College | Haldwani, Uttarakhand',False,10,space_after=1) for b in edu_bullets: bullet(b) heading('Additional Information'); add_text('Languages: Hindi, English',False,10,space_after=1); add_text('Availability: Teaching, academic support, radiology support, and entry-level medical imaging roles',False,10,space_after=0) D.save(docx_path) W,H=A4; c=canvas.Canvas(str(pdf_path),pagesize=A4); L=48; R=548; y=800; navy=HexColor('#1f4e79'); black=HexColor('#000000') def pdf_text(txt,size=10,bold=False,center=False,dy=13,color=black): global y c.setFillColor(color); c.setFont('Helvetica-Bold' if bold else 'Helvetica',size) if center: c.drawCentredString(W/2,y,txt) else: c.drawString(L,y,txt) y-=dy def pdf_heading(txt): global y y-=7; c.setFillColor(navy); c.setFont('Helvetica-Bold',11); c.drawString(L,y,txt.upper()); y-=3; c.setStrokeColor(navy); c.setLineWidth(.7); c.line(L,y,R,y); y-=14 def wrapped(txt,size=10,bold=False,indent=0,bullet=False): global y font='Helvetica-Bold' if bold else 'Helvetica'; c.setFont(font,size); lines=simpleSplit(txt,font,size,R-L-indent) for i,line in enumerate(lines): c.setFillColor(black); c.drawString(L+indent,y,line) if bullet and i==0: c.drawString(L,y,'-') y-=12 pdf_text(name,18,True,True,20,navy); pdf_text('BMRIT GRADUATE | RADIOLOGY AND MEDICAL IMAGING',10,True,True,14); pdf_text(contact,9.5,False,True,16) pdf_heading('Professional Summary'); wrapped(summary,10); pdf_heading('Core Skills'); wrapped(' | '.join(skills),10) pdf_heading('Clinical Experience'); pdf_text('Radiology Intern | Dr. Susheela Tiwari Government Hospital | Haldwani, Uttarakhand',10,True,False,12); pdf_text('6-Month Internship',9.5,False,False,13) for t in exp_bullets: wrapped(t,10,indent=12,bullet=True) pdf_heading('Education'); pdf_text('Bachelor of Medical Radiology and Imaging Technology (BMRIT)',10,True,False,12); pdf_text('Government Medical College | Haldwani, Uttarakhand',10,False,False,13) for t in edu_bullets: wrapped(t,10,indent=12,bullet=True) pdf_heading('Additional Information'); pdf_text('Languages: Hindi, English',10,False,False,12); wrapped('Availability: Teaching, academic support, radiology support, and entry-level medical imaging roles',10) c.save(); print(docx_path); print(pdf_path) PY python - <<'PY' from docx import Document from pypdf import PdfReader paths=['/tmp/workspace/ats-bmrit-resume/output/Krishna_Arya_BMRIT_ATS_Resume.docx','/tmp/workspace/ats-bmrit-resume/output/Krishna_Arya_BMRIT_ATS_Resume.pdf'] for p in paths: text='\n'.join(x.text for x in Document(p).paragraphs) if p.endswith('.docx') else '\n'.join(pg.extract_text() or '' for pg in PdfReader(p).pages) print(p, len(text), 'pages' if p.endswith('.pdf') else '') assert 'B.Sc' not in text and 'Bachelor of Medical Radiology and Imaging Technology (BMRIT)' in text and 'Radiology Intern' in text PY ls -lh "/tmp/workspace/ats-bmrit-resume/output"

ATS-friendly BMRIT resume ready hai. Isme single-column layout, standard headings, searchable text, aur radiology/imaging-related relevant keywords add kiye gaye hain.
DOCX version, ATS portals ke liye recommended:

Krishna Arya BMRIT ATS Resume

Word Document · DOCX

PDF version:

Krishna Arya BMRIT ATS Resume

PDF Document · PDF

Is resume ka professional LinkedIn summary likh do

Reading File
Searching the Web

LinkedIn profile About section tips professional summary recent graduate healthcare radiology technologist

I am a BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate with a strong academic foundation in radiological sciences, human anatomy, physiology, and medical imaging. During my 6-month internship at Dr. Susheela Tiwari Government Hospital, Haldwani, I gained practical exposure to radiology and medical imaging procedures, patient handling, clinical communication, and multidisciplinary hospital workflows.
I am interested in entry-level opportunities in medical imaging, radiology support, healthcare services, and academic support roles. I bring a patient-friendly approach, clear communication skills, attention to professional clinical practices, and an eagerness to learn and contribute to a healthcare team.
Key areas of interest: Radiology | Medical Imaging | Human Anatomy | Human Physiology | Patient Care | Clinical Communication | Teaching and Academic Support
Feel free to connect with me for opportunities, learning, and professional networking in radiology and medical imaging.

Bdiya sa attractive dikhne wala resume bna do please

Reading File
Reading File
Reading File
Browsing Directory

~/

Running Command

mkdir -p "/tmp/workspace/professional-bmrit-resume/output"  python - <<'PY' from pathlib import Path from docx import Document from docx.shared import Inches, Pt, RGBColor from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.enum.table import WD_TABLE_ALIGNMENT, WD_CELL_VERTICAL_ALIGNMENT from docx.oxml import OxmlElement from docx.oxml.ns import qn from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.lib.utils import simpleSplit from pypdf import PdfReader base=Path('/tmp/workspace/professional-bmrit-resume/output') docx_path=base/'Krishna_Arya_Professional_BMRIT_Resume.docx' pdf_path=base/'Krishna_Arya_Professional_BMRIT_Resume.pdf' # Confirmed information supplied by the original resume name='KRISHNA ARYA' role='BMRIT GRADUATE | RADIOLOGY & MEDICAL IMAGING' phone='+91 6398596497'; email='aryakrishna061@gmail.com'; location='Haldwani, Uttarakhand' summary=('BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate with a strong academic foundation in radiological sciences, anatomy, physiology, and medical imaging. Completed a six-month radiology internship in a government hospital setting, with practical exposure to imaging procedures, patient handling, clinical communication, and collaborative healthcare practice. Seeking an entry-level role in radiology, medical imaging, or academic support.') skills=['Radiology fundamentals','Medical imaging','Human anatomy','Human physiology','Patient handling','Clinical communication','Professional practice','Team collaboration','Concept explanation'] interests=['Radiology','Human Anatomy','Human Physiology','Basic Medical Imaging','Radiological Anatomy','Diagnostic Imaging','Microbiology','Pathology','Preventive Medicine','Environmental Studies','Radiation Physics'] exp=['Practical exposure to radiology and medical imaging procedures.','Understanding of anatomy and physiology in radiological practice.','Experience in patient handling and professional clinical practices.','Worked collaboratively in a multidisciplinary hospital environment.'] # DOCX polished, editable D=Document(); sec=D.sections[0]; sec.top_margin=Inches(.38); sec.bottom_margin=Inches(.38); sec.left_margin=Inches(.45); sec.right_margin=Inches(.45) styles=D.styles; styles['Normal'].font.name='Arial'; styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); styles['Normal'].font.size=Pt(9) navy='17324D'; teal='007F86'; light='EAF3F5'; grey='4C5B66'; whitehex='FFFFFF' 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 cell_margin(cell,top=100,start=110,bottom=100,end=110): tc=cell._tc; tcPr=tc.get_or_add_tcPr(); mar=tcPr.first_child_found_in('w:tcMar') if mar is None: mar=OxmlElement('w:tcMar'); tcPr.append(mar) for side,val in [('top',top),('start',start),('bottom',bottom),('end',end)]: node=mar.find(qn(f'w:{side}')) if node is None: node=OxmlElement(f'w:{side}'); mar.append(node) node.set(qn('w:w'),str(val)); node.set(qn('w:type'),'dxa') def border_none(table): tblPr=table._tbl.tblPr; borders=OxmlElement('w:tblBorders') for edge in ('top','left','bottom','right','insideH','insideV'): e=OxmlElement(f'w:{edge}'); e.set(qn('w:val'),'nil'); borders.append(e) tblPr.append(borders) def ptext(cell,text,size=9,bold=False,color=None,space_after=0): p=cell.add_paragraph() if cell.paragraphs[0].text else cell.paragraphs[0] p.paragraph_format.space_after=Pt(space_after); p.paragraph_format.line_spacing=Pt(size+2) r=p.add_run(text); r.bold=bold; r.font.name='Arial'; r._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); r.font.size=Pt(size) if color: r.font.color.rgb=RGBColor.from_string(color) return p def heading(cell,text): p=cell.add_paragraph(); p.paragraph_format.space_before=Pt(7); p.paragraph_format.space_after=Pt(3) r=p.add_run(text.upper()); r.bold=True; r.font.name='Arial'; r.font.size=Pt(10); r.font.color.rgb=RGBColor.from_string(teal) return p # Header h=D.add_table(rows=1,cols=1); h.autofit=False; h.columns[0].width=Inches(7.35); border_none(h); hc=h.cell(0,0); shade(hc,navy); cell_margin(hc,150,180,150,180) p=ptext(hc,name,24,True,whitehex,1); p.alignment=WD_ALIGN_PARAGRAPH.CENTER p=ptext(hc,role,10,True,'7FE4E6',1); p.alignment=WD_ALIGN_PARAGRAPH.CENTER p=ptext(hc,f'{location} | {phone} | {email}',9,False,whitehex,0); p.alignment=WD_ALIGN_PARAGRAPH.CENTER D.add_paragraph().paragraph_format.space_after=Pt(0) # Body dual-column design T=D.add_table(rows=1,cols=2); T.autofit=False; T.columns[0].width=Inches(2.05); T.columns[1].width=Inches(5.3); T.alignment=WD_TABLE_ALIGNMENT.CENTER; border_none(T) left,right=T.cell(0,0),T.cell(0,1); shade(left,'EAF3F5'); cell_margin(left,130,145,120,145); cell_margin(right,110,170,110,150) # Left content heading(left,'Core Skills') for s in skills: ptext(left,'• '+s,8.6,False,grey,1) heading(left,'Teaching Interests') for s in interests: ptext(left,'• '+s,8.2,False,grey,1) heading(left,'Languages') ptext(left,'Hindi',8.6,False,grey,1); ptext(left,'English',8.6,False,grey,1) heading(left,'Personal Details') ptext(left,'Date of Birth',7.6,True,teal,0); ptext(left,'20 January 2003',8.4,False,grey,3); ptext(left,'Nationality',7.6,True,teal,0); ptext(left,'Indian',8.4,False,grey,3) # Right content heading(right,'Professional Profile'); ptext(right,summary,9.25,False,grey,2) heading(right,'Clinical Experience') ptext(right,'Radiology Intern',11,True,navy,0); ptext(right,'Dr. Susheela Tiwari Government Hospital',9,True,teal,0); ptext(right,'Haldwani, Uttarakhand | 6-Month Internship',8.5,False,grey,4) for e in exp: ptext(right,'• '+e,9,False,grey,2) heading(right,'Education') ptext(right,'Bachelor of Medical Radiology and Imaging Technology (BMRIT)',10,True,navy,0); ptext(right,'Government Medical College, Haldwani, Uttarakhand',9,False,teal,3); ptext(right,'Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.',9,False,grey,2) heading(right,'Career Objective') ptext(right,'Available for entry-level radiology, medical imaging, teaching, and academic support roles. Interested in contributing to safe, patient-focused healthcare services while continuing to strengthen clinical and technical knowledge.',9.2,False,grey,2) D.save(docx_path) # Matching visual PDF W,H=A4; c=canvas.Canvas(str(pdf_path),pagesize=A4); c.setTitle('Krishna Arya - Professional BMRIT Resume') nav=HexColor('#17324D'); tealcol=HexColor('#007F86'); pale=HexColor('#EAF3F5'); gr=HexColor('#4C5B66'); margin=32; sidew=165; mainx=margin+sidew+25; rightx=W-32 c.setFillColor(nav); c.rect(0,H-125,W,125,stroke=0,fill=1); c.setFillColor(pale); c.rect(0,0,margin+sidew,H-125,stroke=0,fill=1) c.setFillColor(white); c.setFont('Helvetica-Bold',25); c.drawCentredString(W/2,H-49,name); c.setFillColor(HexColor('#7FE4E6')); c.setFont('Helvetica-Bold',10); c.drawCentredString(W/2,H-70,role); c.setFillColor(white); c.setFont('Helvetica',9); c.drawCentredString(W/2,H-91,f'{location} | {phone} | {email}') def title(txt,x,y,width): c.setFillColor(tealcol); c.setFont('Helvetica-Bold',10); c.drawString(x,y,txt.upper()); c.setStrokeColor(tealcol); c.setLineWidth(.6); c.line(x,y-4,x+width,y-4); return y-17 def wrap(txt,x,y,width,size=9,leading=12,bullet=False): c.setFillColor(gr); c.setFont('Helvetica',size); arr=simpleSplit(txt,'Helvetica',size,width-(10 if bullet else 0)) for i,line in enumerate(arr): if bullet and i==0: c.drawString(x,y,'•') c.drawString(x+(10 if bullet else 0),y,line); y-=leading return y # sidebar sx=32; sy=H-148; sw=145 for hd,items in [('CORE SKILLS',skills),('TEACHING INTERESTS',interests)]: sy=title(hd,sx,sy,sw) for item in items: sy=wrap(item,sx,sy,sw,8.2,10,True); sy-=1 sy-=5 sy=title('LANGUAGES',sx,sy,sw); sy=wrap('Hindi\nEnglish',sx,sy,sw,8.5,11); sy-=6 sy=title('PERSONAL DETAILS',sx,sy,sw); c.setFillColor(tealcol); c.setFont('Helvetica-Bold',7.5); c.drawString(sx,sy,'DATE OF BIRTH'); sy-=11; sy=wrap('20 January 2003',sx,sy,sw,8.5,11); sy-=4; c.setFillColor(tealcol); c.setFont('Helvetica-Bold',7.5); c.drawString(sx,sy,'NATIONALITY'); sy-=11; sy=wrap('Indian',sx,sy,sw,8.5,11) # main my=H-148; mw=rightx-mainx my=title('Professional Profile',mainx,my,mw); my=wrap(summary,mainx,my,mw,9.2,12); my-=8 my=title('Clinical Experience',mainx,my,mw); c.setFillColor(nav); c.setFont('Helvetica-Bold',11); c.drawString(mainx,my,'Radiology Intern'); my-=14; c.setFillColor(tealcol); c.setFont('Helvetica-Bold',9); c.drawString(mainx,my,'Dr. Susheela Tiwari Government Hospital'); my-=12; c.setFillColor(gr); c.setFont('Helvetica',8.5); c.drawString(mainx,my,'Haldwani, Uttarakhand | 6-Month Internship'); my-=16 for e in exp: my=wrap(e,mainx,my,mw,9,12,True); my-=2 my-=5; my=title('Education',mainx,my,mw); c.setFillColor(nav); c.setFont('Helvetica-Bold',10); c.drawString(mainx,my,'Bachelor of Medical Radiology and Imaging Technology (BMRIT)'); my-=14; c.setFillColor(tealcol); c.setFont('Helvetica',9); c.drawString(mainx,my,'Government Medical College, Haldwani, Uttarakhand'); my-=15; my=wrap('Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.',mainx,my,mw,9,12); my-=7 my=title('Career Objective',mainx,my,mw); my=wrap('Available for entry-level radiology, medical imaging, teaching, and academic support roles. Interested in contributing to safe, patient-focused healthcare services while continuing to strengthen clinical and technical knowledge.',mainx,my,mw,9.2,12) c.save() # basic text verification assert docx_path.exists() and pdf_path.exists() text='\n'.join(pg.extract_text() or '' for pg in PdfReader(pdf_path).pages) assert 'BMRIT' in text and 'B.Sc' not in text and 'Krishna' in text print(docx_path); print(pdf_path); print(len(text)) PY ls -lh "/tmp/workspace/professional-bmrit-resume/output"

Running Command

python - <<'PY' from pathlib import Path from docx import Document from docx.shared import Inches, Pt, RGBColor from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.enum.table import WD_TABLE_ALIGNMENT from docx.oxml import OxmlElement from docx.oxml.ns import qn from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.lib.utils import simpleSplit from pypdf import PdfReader base=Path('/tmp/workspace/professional-bmrit-resume/output'); base.mkdir(parents=True,exist_ok=True) docx_path=base/'Krishna_Arya_Professional_BMRIT_Resume.docx'; pdf_path=base/'Krishna_Arya_Professional_BMRIT_Resume.pdf' name='KRISHNA ARYA'; role='BMRIT GRADUATE | RADIOLOGY & MEDICAL IMAGING'; phone='+91 6398596497'; email='aryakrishna061@gmail.com'; location='Haldwani, Uttarakhand' summary='BMRIT (Bachelor of Medical Radiology and Imaging Technology) graduate with a strong academic foundation in radiological sciences, anatomy, physiology, and medical imaging. Completed a six-month radiology internship in a government hospital setting, with practical exposure to imaging procedures, patient handling, clinical communication, and collaborative healthcare practice. Seeking an entry-level role in radiology, medical imaging, or academic support.' skills=['Radiology fundamentals','Medical imaging','Human anatomy','Human physiology','Patient handling','Clinical communication','Professional practice','Team collaboration','Concept explanation'] interests=['Radiology','Human Anatomy','Human Physiology','Basic Medical Imaging','Radiological Anatomy','Diagnostic Imaging','Microbiology','Pathology','Preventive Medicine','Environmental Studies','Radiation Physics'] exp=['Practical exposure to radiology and medical imaging procedures.','Understanding of anatomy and physiology in radiological practice.','Experience in patient handling and professional clinical practices.','Worked collaboratively in a multidisciplinary hospital environment.'] D=Document(); sec=D.sections[0]; sec.top_margin=Inches(.38); sec.bottom_margin=Inches(.38); sec.left_margin=Inches(.45); sec.right_margin=Inches(.45) D.styles['Normal'].font.name='Arial'; D.styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'),'Arial'); D.styles['Normal'].font.size=Pt(9) navy='17324D'; teal='007F86'; grey='4C5B66'; whitehex='FFFFFF' 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 cm(cell): tcPr=cell._tc.get_or_add_tcPr(); mar=OxmlElement('w:tcMar'); tcPr.append(mar) for side in ['top','start','bottom','end']: el=OxmlElement('w:'+side); el.set(qn('w:w'),'130'); el.set(qn('w:type'),'dxa'); mar.append(el) def no_borders(t): b=OxmlElement('w:tblBorders') for e in ['top','left','bottom','right','insideH','insideV']: q=OxmlElement('w:'+e); q.set(qn('w:val'),'nil'); b.append(q) t._tbl.tblPr.append(b) def put(cell,text,size=9,bold=False,color=None,after=0): p=cell.paragraphs[0] if not cell.paragraphs[0].text else cell.add_paragraph(); p.paragraph_format.space_after=Pt(after); p.paragraph_format.line_spacing=Pt(size+2) r=p.add_run(text); r.font.name='Arial'; r.font.size=Pt(size); r.bold=bold if color:r.font.color.rgb=RGBColor.from_string(color) return p def hd(cell,text): p=cell.add_paragraph();p.paragraph_format.space_before=Pt(7);p.paragraph_format.space_after=Pt(3);r=p.add_run(text.upper());r.font.name='Arial';r.font.size=Pt(10);r.bold=True;r.font.color.rgb=RGBColor.from_string(teal) H=D.add_table(rows=1,cols=1);no_borders(H); hc=H.cell(0,0);shade(hc,navy);cm(hc) p=put(hc,name,24,True,whitehex,1);p.alignment=WD_ALIGN_PARAGRAPH.CENTER p=put(hc,role,10,True,'7FE4E6',1);p.alignment=WD_ALIGN_PARAGRAPH.CENTER p=put(hc,f'{location} | {phone} | {email}',9,False,whitehex);p.alignment=WD_ALIGN_PARAGRAPH.CENTER D.add_paragraph().paragraph_format.space_after=Pt(0) T=D.add_table(rows=1,cols=2);T.alignment=WD_TABLE_ALIGNMENT.CENTER;T.autofit=False;T.columns[0].width=Inches(2.05);T.columns[1].width=Inches(5.3);no_borders(T); left,right=T.cell(0,0),T.cell(0,1);shade(left,'EAF3F5');cm(left);cm(right) hd(left,'Core Skills') for s in skills:put(left,'• '+s,8.6,False,grey,1) hd(left,'Teaching Interests') for s in interests:put(left,'• '+s,8.2,False,grey,1) hd(left,'Languages');put(left,'Hindi',8.6,False,grey,1);put(left,'English',8.6,False,grey,1) hd(left,'Personal Details');put(left,'DATE OF BIRTH',7.5,True,teal);put(left,'20 January 2003',8.4,False,grey,2);put(left,'NATIONALITY',7.5,True,teal);put(left,'Indian',8.4,False,grey) hd(right,'Professional Profile');put(right,summary,9.25,False,grey,2) hd(right,'Clinical Experience');put(right,'Radiology Intern',11,True,navy);put(right,'Dr. Susheela Tiwari Government Hospital',9,True,teal);put(right,'Haldwani, Uttarakhand | 6-Month Internship',8.5,False,grey,3) for e in exp:put(right,'• '+e,9,False,grey,2) hd(right,'Education');put(right,'Bachelor of Medical Radiology and Imaging Technology (BMRIT)',10,True,navy);put(right,'Government Medical College, Haldwani, Uttarakhand',9,False,teal,2);put(right,'Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.',9,False,grey,2) hd(right,'Career Objective');put(right,'Available for entry-level radiology, medical imaging, teaching, and academic support roles. Interested in contributing to safe, patient-focused healthcare services while continuing to strengthen clinical and technical knowledge.',9.2,False,grey) D.save(docx_path) # PDF W,Hh=A4;c=canvas.Canvas(str(pdf_path),pagesize=A4);c.setTitle('Krishna Arya Professional BMRIT Resume');nav=HexColor('#17324D');tealC=HexColor('#007F86');pale=HexColor('#EAF3F5');gr=HexColor('#4C5B66');margin=32;sidew=165;mainx=222;rightx=W-32 c.setFillColor(nav);c.rect(0,Hh-125,W,125,stroke=0,fill=1);c.setFillColor(pale);c.rect(0,0,197,Hh-125,stroke=0,fill=1);c.setFillColor(white);c.setFont('Helvetica-Bold',25);c.drawCentredString(W/2,Hh-49,name);c.setFillColor(HexColor('#7FE4E6'));c.setFont('Helvetica-Bold',10);c.drawCentredString(W/2,Hh-70,role);c.setFillColor(white);c.setFont('Helvetica',9);c.drawCentredString(W/2,Hh-91,f'{location} | {phone} | {email}') def ttl(txt,x,y,w): c.setFillColor(tealC);c.setFont('Helvetica-Bold',10);c.drawString(x,y,txt.upper());c.setStrokeColor(tealC);c.line(x,y-4,x+w,y-4);return y-17 def wr(txt,x,y,w,size=9,lead=12,bul=False): lines=simpleSplit(txt,'Helvetica',size,w-(10 if bul else 0));c.setFillColor(gr);c.setFont('Helvetica',size) for i,line in enumerate(lines): if bul and i==0:c.drawString(x,y,'•') c.drawString(x+(10 if bul else 0),y,line);y-=lead return y sx=32;sy=Hh-148 for h,items in [('CORE SKILLS',skills),('TEACHING INTERESTS',interests)]: sy=ttl(h,sx,sy,145) for item in items:sy=wr(item,sx,sy,145,8.2,10,True);sy-=1 sy-=5 sy=ttl('LANGUAGES',sx,sy,145);sy=wr('Hindi\nEnglish',sx,sy,145,8.5,11);sy-=6;sy=ttl('PERSONAL DETAILS',sx,sy,145);c.setFillColor(tealC);c.setFont('Helvetica-Bold',7.5);c.drawString(sx,sy,'DATE OF BIRTH');sy-=11;sy=wr('20 January 2003',sx,sy,145,8.5,11);sy-=4;c.setFillColor(tealC);c.setFont('Helvetica-Bold',7.5);c.drawString(sx,sy,'NATIONALITY');sy-=11;sy=wr('Indian',sx,sy,145,8.5,11) my=Hh-148;mw=rightx-mainx;my=ttl('Professional Profile',mainx,my,mw);my=wr(summary,mainx,my,mw,9.2,12);my-=8;my=ttl('Clinical Experience',mainx,my,mw);c.setFillColor(nav);c.setFont('Helvetica-Bold',11);c.drawString(mainx,my,'Radiology Intern');my-=14;c.setFillColor(tealC);c.setFont('Helvetica-Bold',9);c.drawString(mainx,my,'Dr. Susheela Tiwari Government Hospital');my-=12;c.setFillColor(gr);c.setFont('Helvetica',8.5);c.drawString(mainx,my,'Haldwani, Uttarakhand | 6-Month Internship');my-=16 for e in exp:my=wr(e,mainx,my,mw,9,12,True);my-=2 my-=5;my=ttl('Education',mainx,my,mw);c.setFillColor(nav);c.setFont('Helvetica-Bold',10);c.drawString(mainx,my,'Bachelor of Medical Radiology and Imaging Technology (BMRIT)');my-=14;c.setFillColor(tealC);c.setFont('Helvetica',9);c.drawString(mainx,my,'Government Medical College, Haldwani, Uttarakhand');my-=15;my=wr('Academic grounding in radiological sciences, human anatomy, physiology, and medical imaging.',mainx,my,mw,9,12);my-=7;my=ttl('Career Objective',mainx,my,mw);my=wr('Available for entry-level radiology, medical imaging, teaching, and academic support roles. Interested in contributing to safe, patient-focused healthcare services while continuing to strengthen clinical and technical knowledge.',mainx,my,mw,9.2,12);c.save() text='\n'.join(x.extract_text() or '' for x in PdfReader(pdf_path).pages);assert 'BMRIT' in text and 'B.Sc' not in text and 'KRISHNA' in text print('OK',docx_path,pdf_path,len(text)) PY ls -lh "/tmp/workspace/professional-bmrit-resume/output"

Professional aur attractive BMRIT resume ready hai, with a clean modern design, clear sections, and editable format.
Editable Word file:

Krishna Arya Professional BMRIT Resume

Word Document · DOCX

PDF file:

Krishna Arya Professional BMRIT Resume

PDF Document · PDF

More attractive and good impression

Reading File
Reading File
Reading File
Browsing Directory

~/

Searching the Web

professional resume visual design best practices healthcare resume clean modern hierarchy

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.
This is a shared conversation. Sign in to Orris to start your own chat.