{"id":59118,"date":"2016-09-12T08:50:55","date_gmt":"2016-09-12T08:50:55","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=59118"},"modified":"2019-10-01T11:40:54","modified_gmt":"2019-10-01T11:40:54","slug":"exploring-external-dependencies-pre-and-post-init-hook-in-odoo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/","title":{"rendered":"Exploring External Dependencies ,Pre and Post  INIT Hook In Odoo"},"content":{"rendered":"<p>In the __opererp__.py you can use the special keys&nbsp;like:<\/p>\n<ul>\n<li><strong>external_dependencies<\/strong><\/li>\n<li><strong>pre_init_hook<\/strong><\/li>\n<li><strong>post_init_hook<\/strong><\/li>\n<\/ul>\n<p>These keys can be very useful for doing lots of stuff like validating the module compatibility and it&#8217;s required dependency ,running some script at the time of installation&nbsp;.<\/p>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">External Dependencies<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">In the __openerp __.py you can use&nbsp;<span class=\"pl-s\"><strong>external_dependencies <\/strong>key for&nbsp;<strong>&nbsp;<\/strong>&nbsp;<\/span>declaring &nbsp; all the external dependency required for the module.<br \/>\n<em>For Example :<\/em><br \/>\nAs one of my stripe payment module required a python dependency of stripe library so we have use&nbsp;<strong>external_dependencies<\/strong> as:<\/p>\n<pre class=\"brush:py\">'external_dependencies': {\n        'python' : ['stripe'],\n    },\n<\/pre>\n<p>At the time of installation if system does not have stripe library installed , it will raise an error and not allow to install the module.<\/p>\n<\/div>\n<\/div>\n<div id=\"wkid1\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><strong>pre init hook and&nbsp;<\/strong><strong>POST INIT HOOK<\/strong><\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>The &#8216;<strong>pre_init_hook<\/strong>&#8216; is also a useful key available in __openerp __.py .<\/p>\n<p>For running the logic before registered the module in the<strong> ir.module.module<\/strong> you can use &#8216;pre_init_hook&#8217;.<\/p>\n<p><em>For Example :<\/em><\/p>\n<p>As many times we also have validate that the module build for Odoo8 should not be installed in Odoo9 in that case we use&nbsp;pre_init_hook .<\/p>\n<p>For using the pre_init_hook define this key in your __openerp__.py and assing it&#8217;s a method created in your __init_.py of module.<br \/>\nIn &nbsp;__opnerp__.py:<\/p>\n<pre class=\"brush:py\">'pre_init_hook':'pre_init_check',<\/pre>\n<p>In &nbsp;__init__.py:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"brush:py\">def pre_init_check(cr):\n\t# from openerp.service import common\n        # from openerp.exceptions import Warning\n\t# version_info = common.exp_version()\n\t# server_serie =version_info.get('server_serie')\n\t# if server_serie!='8.0':raise Warning('Module support Odoo series 8.0 found {}'.format(server_serie))\n\treturn True\n\n\n<\/pre>\n<p>We can define the &#8216;<strong>post_init_hook<\/strong>&#8216; in the same ways:<br \/>\nIn &nbsp;__openerp__.py:<\/p>\n<pre class=\"brush:py\">'post_init_hook': 'post_init_check',<\/pre>\n<p>In &nbsp;__init__.py:<\/p>\n<pre class=\"brush:py\">def post_init_check(cr, registry):   \n    # from openerp.service import common\n    # from openerp.exceptions import Warning\n    # version_info = common.exp_version()\n    # server_serie =version_info.get('server_serie')\n    # if server_serie!='8.0':raise Warning('Module support Odoo series 8.0 found {}'.format(server_serie))\n    return True<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<div id=\"wkid2\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><strong>SAMPLE&nbsp;Code<\/strong><\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>Finally &nbsp;__openerp__.py look like:<\/p>\n<pre class=\"brush:py\">....\n    'external_dependencies': {\n        'python' : ['stripe'],\n    },\n    'pre_init_hook':'pre_init_check',\n    'post_init_hook': 'post_init_check',   \n\n....<\/pre>\n<p>And __init__.py look like:<\/p>\n<pre class=\"brush:py\"># -*- coding: utf-8 -*-\nimport models\nimport controllers\ndef post_init_check(cr, registry):   \n    # from openerp.service import common\n    # from openerp.exceptions import Warning\n    # version_info = common.exp_version()\n    # server_serie =version_info.get('server_serie')\n    # if server_serie!='8.0':raise Warning('Module support Odoo series 8.0 found {}'.format(server_serie))\n    return True\ndef pre_init_check(cr):\n\tfrom openerp.service import common\n\tfrom openerp.exceptions import Warning\n\tversion_info = common.exp_version()\n\tserver_serie =version_info.get('server_serie')\n\tif server_serie!='8.0':raise Warning('Module support Odoo series 8.0 found {}'.format(server_serie))\n\treturn True\n\n\n<\/pre>\n<p>For further code reference you can visit this links&nbsp;over GitHub .<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/odoo\/odoo\/search?utf8=%E2%9C%93&amp;q=post_init_hook\">post_init_hook<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/odoo\/odoo\/search?utf8=%E2%9C%93&amp;q=external_dependencies\">external_dependencies<\/a><\/li>\n<\/ul>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In the __opererp__.py you can use the special keys&nbsp;like: external_dependencies pre_init_hook post_init_hook These keys can be very useful for doing lots of stuff like validating the module compatibility and it&#8217;s required dependency ,running some script at the time of installation&nbsp;. External Dependencies In the __openerp __.py you can use&nbsp;external_dependencies key for&nbsp;&nbsp;&nbsp;declaring &nbsp; all the external <a href=\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":86,"featured_media":45511,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007,1,2858],"tags":[3618,3187,3680,3617,3620,3619],"class_list":["post-59118","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo","category-uncategorized","category-validation","tag-external_dependencies","tag-odoo-9","tag-odoo-hook","tag-opnerp","tag-post_init_hook","tag-pre_init_hook"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In the __opererp__.py you can use the special keys&nbsp;like: external_dependencies pre_init_hook post_init_hook These keys can be very useful for doing lots of stuff like validating the module compatibility and it&#8217;s required dependency ,running some script at the time of installation&nbsp;. External Dependencies In the __openerp __.py you can use&nbsp;external_dependencies key for&nbsp;&nbsp;&nbsp;declaring &nbsp; all the external [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-12T08:50:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-01T11:40:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Prakash Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prakash Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\"},\"author\":{\"name\":\"Prakash Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b\"},\"headline\":\"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo\",\"datePublished\":\"2016-09-12T08:50:55+00:00\",\"dateModified\":\"2019-10-01T11:40:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\"},\"wordCount\":290,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"keywords\":[\"external_dependencies\",\"Odoo 9\",\"odoo-hook\",\"opnerp\",\"post_init_hook\",\"pre_init_hook\"],\"articleSection\":{\"0\":\"Odoo\",\"2\":\"Validation\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\",\"url\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\",\"name\":\"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"datePublished\":\"2016-09-12T08:50:55+00:00\",\"dateModified\":\"2019-10-01T11:40:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b\",\"name\":\"Prakash Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Prakash Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/prakash-kumar163\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog","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:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/","og_locale":"en_US","og_type":"article","og_title":"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog","og_description":"In the __opererp__.py you can use the special keys&nbsp;like: external_dependencies pre_init_hook post_init_hook These keys can be very useful for doing lots of stuff like validating the module compatibility and it&#8217;s required dependency ,running some script at the time of installation&nbsp;. External Dependencies In the __openerp __.py you can use&nbsp;external_dependencies key for&nbsp;&nbsp;&nbsp;declaring &nbsp; all the external [...]","og_url":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-09-12T08:50:55+00:00","article_modified_time":"2019-10-01T11:40:54+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","type":"image\/png"}],"author":"Prakash Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Prakash Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/"},"author":{"name":"Prakash Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b"},"headline":"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo","datePublished":"2016-09-12T08:50:55+00:00","dateModified":"2019-10-01T11:40:54+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/"},"wordCount":290,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","keywords":["external_dependencies","Odoo 9","odoo-hook","opnerp","post_init_hook","pre_init_hook"],"articleSection":{"0":"Odoo","2":"Validation"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/","url":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/","name":"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","datePublished":"2016-09-12T08:50:55+00:00","dateModified":"2019-10-01T11:40:54+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/exploring-external-dependencies-pre-and-post-init-hook-in-odoo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Exploring External Dependencies ,Pre and Post INIT Hook In Odoo"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b","name":"Prakash Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Prakash Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/prakash-kumar163\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59118","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/86"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=59118"}],"version-history":[{"count":18,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59118\/revisions"}],"predecessor-version":[{"id":200917,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59118\/revisions\/200917"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/45511"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=59118"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=59118"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=59118"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}