{"id":21919,"date":"2020-08-31T11:10:14","date_gmt":"2020-08-31T18:10:14","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21919"},"modified":"2023-12-01T03:58:58","modified_gmt":"2023-12-01T11:58:58","slug":"python-nonetype-object-is-not-callable","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/","title":{"rendered":"Python TypeError: \u2018nonetype\u2019 object is not callable Solution"},"content":{"rendered":"\n<p>Objects with the value None cannot be called. This is because None values are not associated with a function. If you try to call an object with the value None, you\u2019ll encounter the error \u201cTypeError: &#8216;nonetype&#8217; object is not callable\u201d.<br><\/p>\n\n\n\n<p>In this guide, we discuss why this error is raised and what it means. We\u2019ll walk through an example of this error to help you understand how you can solve it in your program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TypeError: \u2018nonetype\u2019 object is not callable<\/h2>\n\n\n\n<p>When you <a href=\"https:\/\/careerkarma.com\/blog\/python-functions\/\">call a function<\/a>, the code inside the function is executed by the Python interpreter.<br><\/p>\n\n\n\n<p>Only functions can be called. To call a function, you need to specify the name of a function, followed by a set of parentheses. Those parenthesis can optionally contain <a href=\"https:\/\/careerkarma.com\/blog\/python-args-kwargs\/\">arguments<\/a> that are passed through to a function.<br><\/p>\n\n\n\n<p>Consider the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>def show_languages():\n\tprint(&quot;Python, Java, C, C++&quot;)\n\nshow_languages()<\/pre><\/div>\n\n\n\n<p>First, declare a function called \u201cshow_languages\u201d.<br><\/p>\n\n\n\n<p>On the last line of our code, we call our function. This executes all the code in the block where we declare the \u201cshow_languages\u201d function.<br><\/p>\n\n\n\n<p>Similar to how you cannot call a string, a tuple, or a dictionary, you cannot call a None value. These data types do not respond to a function call because they are not functions. The result of calling a None value is always \u201cTypeError: \u2018nonetype\u2019 object is not callable\u201d.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Let\u2019s build a program that reads a file with a leaderboard for a poker tournament and prints out each player\u2019s position on the leaderboard to the console.<br><\/p>\n\n\n\n<p>We have a file called poker.txt which contains the following:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>1: Greg Daniels\n2: Lucy Scott\n3: Hardy Graham\n4: Jenny Carlton\n5: Hunter Patterson<\/pre><\/div>\n\n\n\n<p>We start by writing a function that <a href=\"https:\/\/careerkarma.com\/blog\/python-read-file\/\">reads the file<\/a> with leaderboard information:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>def tournament_results():\n\twith open(&quot;poker.txt&quot;, &quot;r&quot;) as file:\n\t\ttournament = file.readlines()\n\t\treturn tournament<\/pre><\/div>\n\n\n\n<p>This function opens the \u201cpoker.txt\u201d file in read mode and reads its contents into a variable called \u201ctournament\u201d. We return this variable to the main program.<br><\/p>\n\n\n\n<p>Until we call our function, \u201ctournament_results\u201d will not have a value. So, we\u2019re going to initialize a <a href=\"https:\/\/careerkarma.com\/blog\/python-variables\/\">variable<\/a> that stores our tournament scores:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>tournament_results = None<\/pre><\/div>\n\n\n\n<p>Now that we\u2019ve initialized this variable, we can move on to the next part of our program. We call our <code>tournament_results()<\/code> function to get the tournament data. We then use a for loop to print each value to the console:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>tournament_results = tournament_results()\n\nfor t in tournament_results:\n\tprint(t)<\/pre><\/div>\n\n\n\n<p>Our <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a> prints each line from our file to the console. 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;main.py&quot;, line 8, in &lt;module&gt;\n\ttournament_results = tournament_results()\nTypeError: 'NoneType' object is not callable<\/pre><\/div>\n\n\n\n<p>Our code returns an error message.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>In our code, we have declared two values with the name \u201ctournament_results\u201d: a function and a variable. We first declare our function and then we declare our variable.<br><\/p>\n\n\n\n<p>When we declare the \u201ctournament_results\u201d variable, we override the function. This means that whenever we reference \u201ctournament_results\u201d, our program will refer to the variable.<br><\/p>\n\n\n\n<p>This causes a problem when we try to call our function:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>tournament_results = tournament_results()<\/pre><\/div>\n\n\n\n<p>To solve this error, we should rename the variable \u201ctournament_results\u201d to something else:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>final_results = None\n\nfinal_results = tournament_results()\n\nfor f in final_results:\n\tprint(f)<\/pre><\/div>\n\n\n\n<p>We have renamed the \u201ctournament_results\u201d variable to \u201cfinal_results\u201d. Let\u2019s see whether this solves the error we experienced:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>1: Greg Daniels\n\n2: Lucy Scott\n\n3: Hardy Graham\n\n4: Jenny Carlton\n\n5: Hunter Patterson<\/pre><\/div>\n\n\n\n<p>Our code successfully prints out all of the text in our file. This is because we\u2019re no longer overriding the \u201ctournament_results\u201d with the value None.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>\u201cTypeError: \u2018nonetype&#8217; object is not callable\u201d occurs when you try to call a None value as if it were a function.<br><\/p>\n\n\n\n<p>To solve it, make sure that you do not override the names of any functions with a None value. Now you have the knowledge you need to fix this error like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"Objects with the value None cannot be called. This is because None values are not associated with a function. If you try to call an object with the value None, you\u2019ll encounter the error \u201cTypeError: 'nonetype' object is not callable\u201d. In this guide, we discuss why this error is raised and what it means. We\u2019ll&hellip;","protected":false},"author":240,"featured_media":21920,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21919","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 TypeError: \u2018nonetype\u2019 object is not callable Solution | CK<\/title>\n<meta name=\"description\" content=\"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this 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-nonetype-object-is-not-callable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python TypeError: \u2018nonetype\u2019 object is not callable Solution\" \/>\n<meta property=\"og:description\" content=\"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\" \/>\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=\"2020-08-31T18:10:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:58:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python TypeError: \u2018nonetype\u2019 object is not callable Solution\",\"datePublished\":\"2020-08-31T18:10:14+00:00\",\"dateModified\":\"2023-12-01T11:58:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\"},\"wordCount\":590,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\",\"name\":\"Python TypeError: \u2018nonetype\u2019 object is not callable Solution | CK\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg\",\"datePublished\":\"2020-08-31T18:10:14+00:00\",\"dateModified\":\"2023-12-01T11:58:58+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#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 TypeError: \u2018nonetype\u2019 object is not callable 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 TypeError: \u2018nonetype\u2019 object is not callable Solution | CK","description":"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this 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-nonetype-object-is-not-callable\/","og_locale":"en_US","og_type":"article","og_title":"Python TypeError: \u2018nonetype\u2019 object is not callable Solution","og_description":"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this error.","og_url":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-31T18:10:14+00:00","article_modified_time":"2023-12-01T11:58:58+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python TypeError: \u2018nonetype\u2019 object is not callable Solution","datePublished":"2020-08-31T18:10:14+00:00","dateModified":"2023-12-01T11:58:58+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/"},"wordCount":590,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/","url":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/","name":"Python TypeError: \u2018nonetype\u2019 object is not callable Solution | CK","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg","datePublished":"2020-08-31T18:10:14+00:00","dateModified":"2023-12-01T11:58:58+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python TypeError: \u2018nonetype\u2019 object is not callable error is raised when you try to call a None value as if it were a function. On Career Karma, learn how to fix this error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/nordwood-themes-EZSm8xRjnX0-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-nonetype-object-is-not-callable\/#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 TypeError: \u2018nonetype\u2019 object is not callable 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\/21919","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=21919"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21919\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21920"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21919"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21919"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21919"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}