{"id":1136,"date":"2024-11-16T13:12:50","date_gmt":"2024-11-16T09:12:50","guid":{"rendered":"https:\/\/www.buildingtheitguy.com\/?p=1136"},"modified":"2024-12-24T07:18:44","modified_gmt":"2024-12-24T03:18:44","slug":"convert-multiple-pdf-to-word-using-python","status":"publish","type":"post","link":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/","title":{"rendered":"Convert Multiple PDF to WORD using Python"},"content":{"rendered":"\n<p class=\"has-text-align-center\"><em><strong>Scenario: Batch PDF to Word Conversion Without Licensed Software or Cloud Upload.<\/strong><\/em><\/p>\n\n\n\n<p>You have multiple PDF files that need to be converted to Word documents. However, you want to avoid using costly licensed software like Adobe Acrobat Pro and are concerned about uploading sensitive files to free online converters due to privacy risks.<\/p>\n\n\n\n<p>Instead, you can use a free and secure offline solution, like a Python script with open-source libraries, to automate the conversion process on your local machine. This ensures your data remains private while saving you money on software licenses.<\/p>\n\n\n\n<p><strong>How to Use<\/strong>: Place multiple Word files in the INPUT folder, and receive all files converted to PDF in the OUTPUT folder.<\/p>\n\n\n\n<p><strong>Step 1: Install Python<\/strong><\/p>\n\n\n\n<p>You can download it from <a href=\"https:\/\/www.python.org\/downloads\/\">python.org<\/a>. Make sure to check the box <strong>&#8220;Add Python to PATH&#8221;<\/strong> during installation.<\/p>\n\n\n\n<p><strong>Step 2: Set Up Your VS Code Environment<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>VS Code<\/strong>.<\/li>\n\n\n\n<li>Create a new folder for this project (e.g, PDF-WORD).<\/li>\n\n\n\n<li>Open this folder in VS Code (<strong>File &gt; Open Folder<\/strong>).<\/li>\n<\/ol>\n\n\n\n<p><strong>Step 3: Install Required Python Libraries<\/strong><\/p>\n\n\n\n<p>Open your command terminal and run the following command to install pdf2docx libraries.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\npip install pdf2docx\n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"798\" height=\"699\" src=\"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/PDF-Word-pip-Buildingtheitguy-1.png\" alt=\"\" class=\"wp-image-1150\" srcset=\"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/PDF-Word-pip-Buildingtheitguy-1.png 798w, https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/PDF-Word-pip-Buildingtheitguy-1-300x263.png 300w, https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/PDF-Word-pip-Buildingtheitguy-1-768x673.png 768w\" sizes=\"(max-width: 798px) 100vw, 798px\" \/><\/figure>\n\n\n\n<p><strong>Step 4: Arrange Your input\/output Folders<\/strong><\/p>\n\n\n\n<p>Create two subfolders within your project directory:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>pdf_files<\/code> (to store your source PDF files)<\/li>\n\n\n\n<li><code>word_files<\/code> (to save the converted Word documents)<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 4: Write the Python Script<\/strong><\/p>\n\n\n\n<p>Create a new python file in VS Code and name it (e.g, convertpdf.py). copy and paste below code<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport os\nfrom pdf2docx import Converter\n\n# Set the source and destination folder paths\nsource_folder = 'pdf_files'\ndestination_folder = 'word_files'\n\n# Ensure the destination folder exists\nif not os.path.exists(destination_folder):\n    os.makedirs(destination_folder)\n\n# Function to convert PDF to Word\ndef convert_pdf_to_word(source_path, dest_path):\n    try:\n        print(f&quot;Converting {source_path} to {dest_path}...&quot;)\n        cv = Converter(source_path)\n        cv.convert(dest_path)\n        cv.close()\n        print(f&quot;Successfully converted: {source_path}&quot;)\n    except Exception as e:\n        print(f&quot;Failed to convert {source_path}. Error: {e}&quot;)\n\n# Iterate over all PDF files in the source folder\nfor filename in os.listdir(source_folder):\n    if filename.lower().endswith('.pdf'):\n        source_path = os.path.join(source_folder, filename)\n        dest_path = os.path.join(destination_folder, filename.replace('.pdf', '.docx'))\n        convert_pdf_to_word(source_path, dest_path)\n\nprint(&quot;All files have been processed.&quot;)\n\n<\/pre><\/div>\n\n\n<p><strong>Step 6: Input Your PDF files<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>place all your PDF files in the <strong>pdf_files<\/strong> folder<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 7: Run the Python Script<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open your <strong><em>convertpdf.py <\/em><\/strong>in VS Code.<\/li>\n\n\n\n<li>Run the script by pressing <strong>F5 <\/strong>or using the terminal.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\npython convertpdf.py\n\n<\/pre><\/div>\n\n\n<p><strong>Step 8: Verify Your Output<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Converted Word documents should appear in the <strong>word_files <\/strong>folder.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"862\" height=\"278\" src=\"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/explorer_XhdoZuCQcm.png\" alt=\"\" class=\"wp-image-1147\" srcset=\"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/explorer_XhdoZuCQcm.png 862w, https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/explorer_XhdoZuCQcm-300x97.png 300w, https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/explorer_XhdoZuCQcm-768x248.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/figure>\n\n\n\n<p>This idea is inspired by <a href=\"https:\/\/www.linkedin.com\/in\/haneefputtur\/\">Mohammad Haneef<\/a>. Kudos to him.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Scenario: Batch PDF to Word Conversion Without Licensed Software or Cloud Upload. You have multiple PDF files that need to be converted to Word documents. However, you want to avoid using costly licensed software like Adobe Acrobat Pro and are concerned about uploading sensitive files to free online converters due to privacy risks. Instead, you [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1215,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[95],"tags":[],"class_list":["post-1136","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-it-automation"],"featured_image_src":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","author_info":{"display_name":"Mohamed Asath","author_link":"https:\/\/www.buildingtheitguy.com\/index.php\/author\/asathwebtieradmin\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Convert Multiple PDF to WORD using Python - Building THE IT GUY<\/title>\n<meta name=\"description\" content=\"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Convert Multiple PDF to WORD using Python - Building THE IT GUY\" \/>\n<meta property=\"og:description\" content=\"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/\" \/>\n<meta property=\"og:site_name\" content=\"Building THE IT GUY\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-16T09:12:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-24T03:18:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Mohamed Asath\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohamed Asath\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/\"},\"author\":{\"name\":\"Mohamed Asath\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\"},\"headline\":\"Convert Multiple PDF to WORD using Python\",\"datePublished\":\"2024-11-16T09:12:50+00:00\",\"dateModified\":\"2024-12-24T03:18:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/\"},\"wordCount\":303,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Convert-Multiple-word-to-PDF.png\",\"articleSection\":[\"IT Automation\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/\",\"name\":\"Convert Multiple PDF to WORD using Python - Building THE IT GUY\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Convert-Multiple-word-to-PDF.png\",\"datePublished\":\"2024-11-16T09:12:50+00:00\",\"dateModified\":\"2024-12-24T03:18:44+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\"},\"description\":\"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Convert-Multiple-word-to-PDF.png\",\"contentUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Convert-Multiple-word-to-PDF.png\",\"width\":1200,\"height\":628,\"caption\":\"Convert Multiple PDF to WORD using Python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/convert-multiple-pdf-to-word-using-python\\\/it-automation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Convert Multiple PDF to WORD using Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#website\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\",\"name\":\"Building THE IT GUY\",\"description\":\"Making Everyone&#039;s Life Easier\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\",\"name\":\"Mohamed Asath\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"caption\":\"Mohamed Asath\"},\"description\":\"Turning IT Challenges into Opportunities\",\"sameAs\":[\"https:\\\/\\\/www.buildingtheitguy.com\"],\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/author\\\/asathwebtieradmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Convert Multiple PDF to WORD using Python - Building THE IT GUY","description":"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/","og_locale":"en_US","og_type":"article","og_title":"Convert Multiple PDF to WORD using Python - Building THE IT GUY","og_description":"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing","og_url":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/","og_site_name":"Building THE IT GUY","article_published_time":"2024-11-16T09:12:50+00:00","article_modified_time":"2024-12-24T03:18:44+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","type":"image\/png"}],"author":"Mohamed Asath","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mohamed Asath","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#article","isPartOf":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/"},"author":{"name":"Mohamed Asath","@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561"},"headline":"Convert Multiple PDF to WORD using Python","datePublished":"2024-11-16T09:12:50+00:00","dateModified":"2024-12-24T03:18:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/"},"wordCount":303,"commentCount":0,"image":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","articleSection":["IT Automation"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/","url":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/","name":"Convert Multiple PDF to WORD using Python - Building THE IT GUY","isPartOf":{"@id":"https:\/\/www.buildingtheitguy.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#primaryimage"},"image":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","datePublished":"2024-11-16T09:12:50+00:00","dateModified":"2024-12-24T03:18:44+00:00","author":{"@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561"},"description":"Learn how to convert multiple PDF files to Word documents using Python without relying on licensed software or online converters. Secure, efficient, and easy-to-follow guide for batch processing","breadcrumb":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#primaryimage","url":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","contentUrl":"https:\/\/www.buildingtheitguy.com\/wp-content\/uploads\/2024\/11\/Convert-Multiple-word-to-PDF.png","width":1200,"height":628,"caption":"Convert Multiple PDF to WORD using Python"},{"@type":"BreadcrumbList","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/convert-multiple-pdf-to-word-using-python\/it-automation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.buildingtheitguy.com\/"},{"@type":"ListItem","position":2,"name":"Convert Multiple PDF to WORD using Python"}]},{"@type":"WebSite","@id":"https:\/\/www.buildingtheitguy.com\/#website","url":"https:\/\/www.buildingtheitguy.com\/","name":"Building THE IT GUY","description":"Making Everyone&#039;s Life Easier","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.buildingtheitguy.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561","name":"Mohamed Asath","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","caption":"Mohamed Asath"},"description":"Turning IT Challenges into Opportunities","sameAs":["https:\/\/www.buildingtheitguy.com"],"url":"https:\/\/www.buildingtheitguy.com\/index.php\/author\/asathwebtieradmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/1136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/comments?post=1136"}],"version-history":[{"count":10,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/1136\/revisions"}],"predecessor-version":[{"id":1218,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/1136\/revisions\/1218"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/media\/1215"}],"wp:attachment":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/media?parent=1136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/categories?post=1136"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/tags?post=1136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}