{"id":441,"date":"2026-05-06T15:11:39","date_gmt":"2026-05-06T15:11:39","guid":{"rendered":"https:\/\/aadhuniklabs.com\/casp-blog\/?p=441"},"modified":"2026-05-07T09:26:23","modified_gmt":"2026-05-07T09:26:23","slug":"casp-data-exchange-between-vega-aries-and-python","status":"publish","type":"post","link":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/","title":{"rendered":"Test Example-9c: Data Exchange between Vega Aries Eco and Python"},"content":{"rendered":"\n<p class=\"\">CASP User Data Input Output (UDIO) is a light weight communication protocol used to transfer data between the target (such as a micro-controller board or an SBC) and the host computer. Unlike CASP GPIO protocol, CASP UDIO transfers user data (bytes, integers and floats) instead of GPIO data. This example demonstrates how to exchange data between Vega Aries Eco board and Python running on host computer using UDIO protocol through serial communication.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pre-Requisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Vega Aries Eco board with a USB cable.<\/li>\n\n\n\n<li class=\"\">CASP software is installed along with CASP Python Libraries.<\/li>\n\n\n\n<li class=\"\">Vega Aries BSP is installed.<\/li>\n\n\n\n<li class=\"\">The project files are located at CASP installed directory \u2018CASP\/support\/examples\/casp_udio_examples\/udio_led_control_aries_eco\u2019. These are also available for download at this <a href=\"https:\/\/aadhuniklabs.com\/casp\/casp_web_examples\/casp_udio_examples\/udio_led_control_aries_eco.zip\">link<\/a>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Model Details<\/h2>\n\n\n\n<p class=\"\">CASP model that runs on the target board:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Reads ADC pin value and transfer the value to the host as a UDI 32-bit integer data at byte index 0.<\/li>\n\n\n\n<li class=\"\">Controls the frequency of the on-board LED based on the frequency value received from host at byte index 0 as a UDO 32-bit floating point value.<\/li>\n\n\n\n<li class=\"\">Controls PWM pin based on the amplitude value received from the host at byte index 4 as a UDO 32-bit integer value.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"478\" height=\"261\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image001-5.jpg?fit=478%2C261&amp;ssl=1\" alt=\"\" class=\"wp-image-408\" srcset=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image001-5.jpg?w=478&amp;ssl=1 478w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image001-5.jpg?resize=300%2C164&amp;ssl=1 300w\" sizes=\"auto, (max-width: 478px) 100vw, 478px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"\">On the host side, a simple Python script is written to communicate with the target board and access the above data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Upload Target Model to Vega Aries Eco<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Ensure, the board is connected to the computer.<\/li>\n\n\n\n<li class=\"\">Run CASP and open the&nbsp;target project &#8216;CASP\/support\/examples\/casp_udio_examples\/udio_led_control_aries_eco\/control_led_udio_target_eco\/control_led_udio_target_eco.prj&#8217; from CASP installed directory.<\/li>\n\n\n\n<li class=\"\">Open \u2018Setup Simulation\u2019 window and change the \u2018Target Programmer Port\u2019 to which the board is connected.<\/li>\n\n\n\n<li class=\"\">Click Run button to program the board.<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Accessing UDIO data from Python on Host PC<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Close existing CASP program.<\/li>\n\n\n\n<li class=\"\">Open terminal in any directory.<\/li>\n\n\n\n<li class=\"\">Start Python by typing \u2018Python\u2019 or \u2018Python3\u2019 in the terminal. Type following commands in Python to access UDIO values from the target board.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt; import casp_udio as udio #import CASP UDIO module.\n\n&gt; udio.Init() #initialize CASP GPIO client process on host computer.\n\n&gt; udio.SerialPorts() #display available serial ports (used to identify the serial port to which the board is connected).\n\n&gt; udio.ConnectSerial(\"COM35\", 115200, True, 1, 16, 16) #starts communicating with the target board using GPIO protocol on COM35. Change the serial port as per your setup. The last two arguments (16, 16) represent UDI and UDO bytes respectively.\n\n&gt; udio.ReadI(0) #reads UDI 32-bit integer value at index-0. This value represents ADC value in the above target model.\n\n&gt; udio.WriteF(0, 1) #writes UDO 32-bit float value at index-0. This value represents LED blink frequency in the above target model.\n\n&gt; udio.WriteI(1, 200) #writes UDO 32-bit integer value at index-1. This value represents PWM magnitude in the above target model.<\/code><\/pre>\n\n\n\n<p class=\"\">Below is the screen shot of above commands. You may now try to write your own logic with this data.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"980\" height=\"419\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image003-10.jpg?fit=980%2C419&amp;ssl=1\" alt=\"\" class=\"wp-image-428\" srcset=\"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image003-10.jpg?w=980&amp;ssl=1 980w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image003-10.jpg?resize=300%2C128&amp;ssl=1 300w, https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/image003-10.jpg?resize=768%2C328&amp;ssl=1 768w\" sizes=\"auto, (max-width: 980px) 100vw, 980px\" \/><\/figure>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Related Links<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\"><a href=\"https:\/\/aadhuniklabs.com\/casp-blog\/installing-casp\/\" target=\"_blank\" rel=\"noreferrer noopener\">Installing CASP<\/a><\/li>\n\n\n\n<li class=\"\"><a href=\"https:\/\/aadhuniklabs.com\/casp-blog\/updating-casp\/\" target=\"_blank\" rel=\"noreferrer noopener\">Updating CASP<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CASP User Data Input Output (UDIO) is a light weight communication protocol used to transfer data between the target (such as a micro-controller board or an SBC) and the host&hellip;<\/p>\n","protected":false},"author":1,"featured_media":575,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","_view_id":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[26,58],"tags":[59,47,49,66,40],"post_folder":[19],"class_list":["post-441","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-getting-started","category-test-examples","tag-getting-started","tag-python","tag-python-udio","tag-udio","tag-vega-aries"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP 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:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP Blog\" \/>\n<meta property=\"og:description\" content=\"CASP User Data Input Output (UDIO) is a light weight communication protocol used to transfer data between the target (such as a micro-controller board or an SBC) and the host&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/\" \/>\n<meta property=\"og:site_name\" content=\"CASP Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-06T15:11:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-07T09:26:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1366\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"AadhunikLabs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"AadhunikLabs\" \/>\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:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/\"},\"author\":{\"name\":\"AadhunikLabs\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\"},\"headline\":\"Test Example-9c: Data Exchange between Vega Aries Eco and Python\",\"datePublished\":\"2026-05-06T15:11:39+00:00\",\"dateModified\":\"2026-05-07T09:26:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/\"},\"wordCount\":370,\"image\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test09c.jpg?fit=1366%2C768&ssl=1\",\"keywords\":[\"Getting Started\",\"Python\",\"Python UDIO\",\"UDIO\",\"Vega Aries\"],\"articleSection\":[\"Getting Started\",\"Test Examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/\",\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/\",\"name\":\"Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test09c.jpg?fit=1366%2C768&ssl=1\",\"datePublished\":\"2026-05-06T15:11:39+00:00\",\"dateModified\":\"2026-05-07T09:26:23+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test09c.jpg?fit=1366%2C768&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/aadhuniklabs.com\\\/casp-blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/test09c.jpg?fit=1366%2C768&ssl=1\",\"width\":1366,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/casp-data-exchange-between-vega-aries-and-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Test Example-9c: Data Exchange between Vega Aries Eco and Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#website\",\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/\",\"name\":\"CASP Blog\",\"description\":\"Let&#039;s make for fun\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/#\\\/schema\\\/person\\\/4b27a4300337e4cc03b790befda00fe7\",\"name\":\"AadhunikLabs\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g\",\"caption\":\"AadhunikLabs\"},\"sameAs\":[\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\"],\"url\":\"https:\\\/\\\/aadhuniklabs.com\\\/casp-blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP 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:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/","og_locale":"en_US","og_type":"article","og_title":"Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP Blog","og_description":"CASP User Data Input Output (UDIO) is a light weight communication protocol used to transfer data between the target (such as a micro-controller board or an SBC) and the host&hellip;","og_url":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/","og_site_name":"CASP Blog","article_published_time":"2026-05-06T15:11:39+00:00","article_modified_time":"2026-05-07T09:26:23+00:00","og_image":[{"width":1366,"height":768,"url":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg","type":"image\/jpeg"}],"author":"AadhunikLabs","twitter_card":"summary_large_image","twitter_misc":{"Written by":"AadhunikLabs","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#article","isPartOf":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/"},"author":{"name":"AadhunikLabs","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7"},"headline":"Test Example-9c: Data Exchange between Vega Aries Eco and Python","datePublished":"2026-05-06T15:11:39+00:00","dateModified":"2026-05-07T09:26:23+00:00","mainEntityOfPage":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/"},"wordCount":370,"image":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg?fit=1366%2C768&ssl=1","keywords":["Getting Started","Python","Python UDIO","UDIO","Vega Aries"],"articleSection":["Getting Started","Test Examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/","url":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/","name":"Test Example-9c: Data Exchange between Vega Aries Eco and Python - CASP Blog","isPartOf":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#primaryimage"},"image":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg?fit=1366%2C768&ssl=1","datePublished":"2026-05-06T15:11:39+00:00","dateModified":"2026-05-07T09:26:23+00:00","author":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7"},"breadcrumb":{"@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#primaryimage","url":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg?fit=1366%2C768&ssl=1","contentUrl":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg?fit=1366%2C768&ssl=1","width":1366,"height":768},{"@type":"BreadcrumbList","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/casp-data-exchange-between-vega-aries-and-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aadhuniklabs.com\/casp-blog\/"},{"@type":"ListItem","position":2,"name":"Test Example-9c: Data Exchange between Vega Aries Eco and Python"}]},{"@type":"WebSite","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#website","url":"https:\/\/aadhuniklabs.com\/casp-blog\/","name":"CASP Blog","description":"Let&#039;s make for fun","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aadhuniklabs.com\/casp-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/aadhuniklabs.com\/casp-blog\/#\/schema\/person\/4b27a4300337e4cc03b790befda00fe7","name":"AadhunikLabs","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b348f13bedc8e57284f8f80aa91d9d3d76f31f93a663f5f5dd7cf3fdeb9a321c?s=96&d=mm&r=g","caption":"AadhunikLabs"},"sameAs":["https:\/\/aadhuniklabs.com\/casp-blog"],"url":"https:\/\/aadhuniklabs.com\/casp-blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/aadhuniklabs.com\/casp-blog\/wp-content\/uploads\/2026\/05\/test09c.jpg?fit=1366%2C768&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/441","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/comments?post=441"}],"version-history":[{"count":5,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/441\/revisions"}],"predecessor-version":[{"id":628,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/posts\/441\/revisions\/628"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/media\/575"}],"wp:attachment":[{"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/media?parent=441"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/categories?post=441"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/tags?post=441"},{"taxonomy":"post_folder","embeddable":true,"href":"https:\/\/aadhuniklabs.com\/casp-blog\/wp-json\/wp\/v2\/post_folder?post=441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}