{"id":29382,"date":"2021-02-26T10:33:48","date_gmt":"2021-02-26T18:33:48","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29382"},"modified":"2023-12-01T04:09:01","modified_gmt":"2023-12-01T12:09:01","slug":"python-attributeerror-numpy-append","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/","title":{"rendered":"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution"},"content":{"rendered":"\n<p>In regular Python, you can use the <code>append()<\/code> method to add an item to the end of a list. You cannot use this method in NumPy. If you try to use the Python <code>append()<\/code> method to add an item to the end of a NumPy array, you will see the <code>AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019<\/code> error.<br><\/p>\n\n\n\n<p>This guide discusses in detail the cause of and the solution to this NumPy error. We will refer to an example to illustrate how to fix this error. Let\u2019s get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019<\/h2>\n\n\n\n<p>The <code>AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019<\/code> error is caused by using the <code>append()<\/code> method to add an item to a NumPy array. You should instead use the <code>numpy.append()<\/code> method if you want to add an item to a list.<br><\/p>\n\n\n\n<p>The <code>numpy.append()<\/code> method was specifically written for the NumPy library. NumPy arrays are different to regular Python arrays so it is reasonable that NumPy has its own method to add an item to an array.<br><\/p>\n\n\n\n<p>The NumPy <code>append()<\/code> method uses this syntax:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>numpy.append(list_to_add_item, item_to_add)<\/pre><\/div>\n\n\n\n<p>The two parameters we will focus on are:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>list_to_add_item: The list to which you want to add an item.<\/li><li>item_to_add: The item you want to add to the list you specify.<\/li><\/ul>\n\n\n\n<p>The <code>numpy.append()<\/code> method returns a new array which contains your specified item at the end, based on the \u201clist_to_add_item\u201d array. Note that you do not put <code>append()<\/code> after the list to which you want to add an item, like you would in regular Python.<br><\/p>\n\n\n\n<p>Let\u2019s go through an example of this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Situation<\/h2>\n\n\n\n<p>We are building an application that tracks the performance grades a product has received after quality assurance at a factory. The products are scored on a scale of 50 and all products must achieve a score of at least 40 to go out into the world.<br><\/p>\n\n\n\n<p>We are building the part of the application that adds new scores to an array which stores the scores a product has received for the last day. To build this program, we can use the <code>append()<\/code> method:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import numpy as np\n\nscores = np.array([49, 48, 49, 47, 42, 48, 46, 50])\nto_add = 49\n\nscores.append(to_add)\n\nprint(scores)<\/pre><\/div>\n\n\n\n<p>Our program adds the score 39 to our list of scores. In a real-world situation, we may read these scores from a file, but to keep our example simple we have declared an array in our program. Our code prints a list of all the scores to the Python console after the new score is added to our array of scores.<br><\/p>\n\n\n\n<p>Let\u2019s run our code and see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Traceback (most recent call last):\n  File &quot;test.py&quot;, line 6, in &lt;module&gt;\n\tscores.append(to_add)\nAttributeError: 'numpy.ndarray' object has no attribute 'append'<\/pre><\/div>\n\n\n\n<p>Our code returns an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We are trying to use the regular Python <code>append()<\/code> method to add an item to our NumPy array, instead of the custom-build <code>numpy.append()<\/code> method.<br><\/p>\n\n\n\n<p>To solve this error, we need to use the syntax for the <code>numpy.append()<\/code> method:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import numpy as np\n\nscores = np.array([49, 48, 49, 47, 42, 48, 46, 50])\n\nscores = np.append(scores, 49)\n\nprint(scores)<\/pre><\/div>\n\n\n\n<p>We use the np term to refer to the NumPy library. This works because we defined the numpy library as np in our import statement. We pass the list to which we want to add an item as our first argument; the new score to add to our array is our second argument.<br><\/p>\n\n\n\n<p>We have to assign the result of our <code>np.append()<\/code> operation to a new value. This is because <code>np.append()<\/code> does not modify an existing array. Instead, the method creates a new array with your new value added.<br><\/p>\n\n\n\n<p>Let\u2019s run our program and see what happens:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>[49 48 49 47 42 48 46 50 49]<\/pre><\/div>\n\n\n\n<p>The number 49 has been successfully added to the end of our list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019<\/code> error indicates you are using the regular Python <code>append()<\/code> method to add an item to a NumPy array. Instead, you should use the <code>numpy.append()<\/code> method, which uses the syntax: numpy.append(list, item_to_add). This method creates a new list with the specified item added at the end.<br><\/p>\n\n\n\n<p>Do you want to learn more about coding in NumPy? Check out our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-numpy\/\">How to Learn NumPy<\/a> guide. This guide contains top tips on how to build your knowledge of NumPy, alongside a list of learning resources suitable for beginner and intermediate developers.<\/p>\n","protected":false},"excerpt":{"rendered":"In regular Python, you can use the append() method to add an item to the end of a list. You cannot use this method in NumPy. If you try to use the Python append() method to add an item to the end of a NumPy array, you will see the AttributeError: \u2018numpy.ndarray\u2019 object has no&hellip;","protected":false},"author":240,"featured_media":28883,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-29382","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Python AttributeError: &#039;numpy.ndarray&#039; object has no attribute &#039;append&#039; Solution<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution the Python &quot;AttributeError: &#039;numpy.ndarray&#039; object has no attribute &#039;append&#039;&quot; error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution the Python &quot;AttributeError: &#039;numpy.ndarray&#039; object has no attribute &#039;append&#039;&quot; error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-26T18:33:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:09:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution\",\"datePublished\":\"2021-02-26T18:33:48+00:00\",\"dateModified\":\"2023-12-01T12:09:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\"},\"wordCount\":655,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\",\"name\":\"Python AttributeError: 'numpy.ndarray' object has no attribute 'append' Solution\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg\",\"datePublished\":\"2021-02-26T18:33:48+00:00\",\"dateModified\":\"2023-12-01T12:09:01+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution the Python \\\"AttributeError: 'numpy.ndarray' object has no attribute 'append'\\\" error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python AttributeError: 'numpy.ndarray' object has no attribute 'append' Solution","description":"On Career Karma, learn the cause of and the solution the Python \"AttributeError: 'numpy.ndarray' object has no attribute 'append'\" error.","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:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/","og_locale":"en_US","og_type":"article","og_title":"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution","og_description":"On Career Karma, learn the cause of and the solution the Python \"AttributeError: 'numpy.ndarray' object has no attribute 'append'\" error.","og_url":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-02-26T18:33:48+00:00","article_modified_time":"2023-12-01T12:09:01+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution","datePublished":"2021-02-26T18:33:48+00:00","dateModified":"2023-12-01T12:09:01+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/"},"wordCount":655,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/","url":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/","name":"Python AttributeError: 'numpy.ndarray' object has no attribute 'append' Solution","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg","datePublished":"2021-02-26T18:33:48+00:00","dateModified":"2023-12-01T12:09:01+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution the Python \"AttributeError: 'numpy.ndarray' object has no attribute 'append'\" error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/pexels-tranmautritam-326503.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-attributeerror-numpy-append\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"Python AttributeError: \u2018numpy.ndarray\u2019 object has no attribute \u2018append\u2019 Solution"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29382","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29382"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29382\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/28883"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}