{"id":407158,"date":"2023-10-30T13:34:59","date_gmt":"2023-10-30T13:34:59","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=407158"},"modified":"2025-12-26T14:08:36","modified_gmt":"2025-12-26T14:08:36","slug":"odoo-shell-using-odoo-cli","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/","title":{"rendered":"Using Odoo Shell with Odoo CLI"},"content":{"rendered":"\n<p>The <strong>Odoo Shell<\/strong> is a powerful command-line interface that allows developers and administrators to interact directly with an Odoo database using Python. It is especially useful for debugging, testing, data manipulation, and administrative tasks without using the Odoo web interface.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\"><strong>What Is Odoo Shell?<\/strong><\/h3>\n<\/div><\/div>\n\n\n\n<p>Odoo Shell is an interactive Python console that loads the Odoo environment. Once launched, you can:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access Odoo models using ORM<\/li>\n\n\n\n<li>Query and update records<\/li>\n\n\n\n<li>Test custom logic<\/li>\n\n\n\n<li>Perform quick data fixes<\/li>\n\n\n\n<li>Debug issues efficiently<\/li>\n<\/ul>\n\n\n\n<p>It provides direct access to the <code>env<\/code> object, similar to what is available inside Odoo models.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\"><strong>Why Use Odoo Shell?<\/strong><\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Direct ORM access for testing and debugging<\/li>\n\n\n\n<li>Faster than using the UI for data operations<\/li>\n\n\n\n<li>No need to create temporary modules or scripts<\/li>\n\n\n\n<li>Useful for server-side troubleshooting<\/li>\n\n\n\n<li>Ideal for administrators and developers<\/li>\n<\/ul>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h2 class=\"wp-block-heading index-title\"><strong>How to Start Odoo Shell<\/strong><\/h2>\n<\/div><\/div>\n\n\n\n<p>Navigate to your Odoo installation directory and run the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">.\/odoo-bin shell -c \/etc\/odoo.conf -d your_database_name<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"144\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp\" alt=\"start-odoo-shell\" class=\"wp-image-519039\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-300x36.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-250x30.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-768x92.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1.webp 1247w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h3 class=\"wp-block-heading index-title\"><code><strong>Command Breakdown:<\/strong><\/code><\/h3>\n<\/div><\/div>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>.\/odoo-bin<\/strong>: This specifies the path to the Odoo executable (odoo-bin). The .\/ indicates it is located in the current directory.<\/li>\n\n\n\n<li><strong>shell<\/strong>: Opens the interactive Odoo shell<\/li>\n\n\n\n<li><strong>-c \/etc\/odoo.conf<\/strong>: Path to the Odoo configuration file<\/li>\n\n\n\n<li><strong>-d your_database_name<\/strong>:<strong> <\/strong>Database you want to work on<\/li>\n<\/ul>\n\n\n\n<p>After running the command, the shell will start and load the Odoo environment.<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><div class=\"block-wrap\">\n<h2 class=\"wp-block-heading index-title\"><strong>Using ORM Inside Odoo Shell<\/strong><\/h2>\n<\/div><\/div>\n\n\n\n<p>Once inside the shell, you can use Odoo ORM just like in Python code.<\/p>\n\n\n\n<p>Suppose you have a product in your Odoo database with an ID of 1 and you want to change its name to \u201c<strong>odooshelltestproduct\u201d.<\/strong><\/p>\n\n\n\n<p>You can browse the product using the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">product = env&#091;&#039;product.template&#039;].browse(1)<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"195\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1-1200x195.webp\" alt=\"orm-inside-odoo-shell\" class=\"wp-image-519044\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1-1200x195.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1-300x49.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1-250x41.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1-768x125.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/orm-inside-odoo-shell-1.webp 1266w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can then easily change its name using the assignment operator, as commonly used in Odoo.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">product.name = \u201codooshelltestproduct\u201d<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1185\" height=\"278\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/odoo-shell-test-product.webp\" alt=\"odoo-shell-test-product.webp\" class=\"wp-image-519045\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/odoo-shell-test-product.webp 1185w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/odoo-shell-test-product-300x70.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/odoo-shell-test-product-250x59.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/odoo-shell-test-product-768x180.webp 768w\" sizes=\"(max-width: 1185px) 100vw, 1185px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Note:\u00a0As you may have noticed, you have to commit your changes to ensure they are saved to the database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>NEED HELP?<\/strong><\/h2>\n\n\n\n<p>Hope you find the guide helpful! Please feel free to share your feedback in the comments below.<\/p>\n\n\n\n<p>If you still have any issues\/queries regarding the same, please raise a ticket at the <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\" target=\"_blank\" rel=\"noreferrer noopener\">UV Desk<\/a>.<\/p>\n\n\n\n<p>For any doubt, contact us at our <a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support mail<\/a>.<\/p>\n\n\n\n<p>Thanks for paying attention!!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Odoo Shell is a powerful command-line interface that allows developers and administrators to interact directly with an Odoo database using Python. It is especially useful for debugging, testing, data manipulation, and administrative tasks without using the Odoo web interface. Odoo Shell is an interactive Python console that loads the Odoo environment. Once launched, you <a href=\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":569,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007],"tags":[15025,1267,14773,13605,3651,15026,15027],"class_list":["post-407158","post","type-post","status-publish","format-standard","hentry","category-odoo","tag-command-line-interface","tag-odoo","tag-odoo-17","tag-odoo-app","tag-odoo-cli","tag-odoo-shell","tag-odoo-shell-using-odoo-cli"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using Odoo Shell with Odoo CLI<\/title>\n<meta name=\"description\" content=\"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.\" \/>\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\/odoo-shell-using-odoo-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Odoo Shell with Odoo CLI\" \/>\n<meta property=\"og:description\" content=\"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\" \/>\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=\"2023-10-30T13:34:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-26T14:08:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp\" \/>\n<meta name=\"author\" content=\"Abhay Singh\" \/>\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=\"Abhay Singh\" \/>\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\/odoo-shell-using-odoo-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\"},\"author\":{\"name\":\"Abhay Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6f6f8323bb22f39b92b8ad1901cf6b60\"},\"headline\":\"Using Odoo Shell with Odoo CLI\",\"datePublished\":\"2023-10-30T13:34:59+00:00\",\"dateModified\":\"2025-12-26T14:08:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\"},\"wordCount\":346,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp\",\"keywords\":[\"Command Line Interface\",\"odoo\",\"Odoo 17\",\"odoo app\",\"odoo cli\",\"Odoo Shell\",\"Odoo Shell using Odoo CLI\"],\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\",\"url\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\",\"name\":\"Using Odoo Shell with Odoo CLI\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp\",\"datePublished\":\"2023-10-30T13:34:59+00:00\",\"dateModified\":\"2025-12-26T14:08:36+00:00\",\"description\":\"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1.webp\",\"width\":1247,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Odoo Shell with Odoo CLI\"}]},{\"@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\/6f6f8323bb22f39b92b8ad1901cf6b60\",\"name\":\"Abhay Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cae1333f33fb0eff88abfedb4c4ea2de9b9db19ac89e1fac138271aad078cf77?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\/cae1333f33fb0eff88abfedb4c4ea2de9b9db19ac89e1fac138271aad078cf77?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhay Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/abhaysingh-odoo507\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Odoo Shell with Odoo CLI","description":"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.","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\/odoo-shell-using-odoo-cli\/","og_locale":"en_US","og_type":"article","og_title":"Using Odoo Shell with Odoo CLI","og_description":"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.","og_url":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-10-30T13:34:59+00:00","article_modified_time":"2025-12-26T14:08:36+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp","type":"","width":"","height":""}],"author":"Abhay Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhay Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/"},"author":{"name":"Abhay Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6f6f8323bb22f39b92b8ad1901cf6b60"},"headline":"Using Odoo Shell with Odoo CLI","datePublished":"2023-10-30T13:34:59+00:00","dateModified":"2025-12-26T14:08:36+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/"},"wordCount":346,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp","keywords":["Command Line Interface","odoo","Odoo 17","odoo app","odoo cli","Odoo Shell","Odoo Shell using Odoo CLI"],"articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/","url":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/","name":"Using Odoo Shell with Odoo CLI","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1-1200x144.webp","datePublished":"2023-10-30T13:34:59+00:00","dateModified":"2025-12-26T14:08:36+00:00","description":"Check out how Odoo Shell helps you manage how you can interact with database. Learn how to perform various methods using Odoo CLI.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/10\/start-odoo-shell-1.webp","width":1247,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/odoo-shell-using-odoo-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using Odoo Shell with Odoo CLI"}]},{"@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\/6f6f8323bb22f39b92b8ad1901cf6b60","name":"Abhay Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cae1333f33fb0eff88abfedb4c4ea2de9b9db19ac89e1fac138271aad078cf77?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\/cae1333f33fb0eff88abfedb4c4ea2de9b9db19ac89e1fac138271aad078cf77?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhay Singh"},"url":"https:\/\/webkul.com\/blog\/author\/abhaysingh-odoo507\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407158","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\/569"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=407158"}],"version-history":[{"count":13,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407158\/revisions"}],"predecessor-version":[{"id":519060,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/407158\/revisions\/519060"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=407158"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=407158"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=407158"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}