{"id":15488,"date":"2023-12-25T22:22:44","date_gmt":"2023-12-25T22:22:44","guid":{"rendered":"https:\/\/hatchjs.com\/?p=15488"},"modified":"2024-01-05T11:02:28","modified_gmt":"2024-01-05T11:02:28","slug":"attributeerror-float-object-has-no-attribute-split","status":"publish","type":"post","link":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/","title":{"rendered":"AttributeError: float object has no attribute &#8216;split&#8217;"},"content":{"rendered":"<p>Have you ever tried to split a float in Python and gotten an AttributeError? If so, you&#8217;re not alone. This common error occurs when you try to use the split() method on a float object, which doesn&#8217;t have that attribute.<\/p>\n<p>In this article, we&#8217;ll take a look at what causes this error and how you can avoid it. We&#8217;ll also discuss some workarounds that you can use if you need to split a float.<\/p>\n<p>So if you&#8217;re ever wondering why you&#8217;re getting an AttributeError when you try to split a float, read on!<\/p>\n<table>\n<tr>\n<th>Attribute<\/th>\n<th>Expected Type<\/th>\n<th>Actual Type<\/th>\n<\/tr>\n<tr>\n<td>split<\/td>\n<td>string<\/td>\n<td>float<\/td>\n<\/tr>\n<\/table>\n<h2>What is the AttributeError `float object has no attribute split`?<\/h2>\n<p>The AttributeError `float object has no attribute split` occurs when you try to call the `split()` method on a float object. The `split()` method is used to split a string into a list of substrings, based on a delimiter character. However, float objects are not strings, so they do not have a `split()` method.<\/p>\n<h2>What causes the AttributeError `float object has no attribute split`?<\/h2>\n<p>The AttributeError `float object has no attribute split` is usually caused by one of the following:<\/p>\n<ul>\n<li><b>You are trying to call the `split()` method on a float object.<\/b> Float objects do not have a `split()` method, so this will always cause an error.<\/li>\n<li><b>You are trying to pass a float object to the `split()` method.<\/b> The `split()` method expects a string as its argument, so passing a float object will cause an error.<\/li>\n<li><b>You are using the wrong version of Python.<\/b> The `split()` method was added to Python in version 3.0. If you are using an older version of Python, the `split()` method will not be available.<\/li>\n<\/ul>\n<p>The AttributeError `float object has no attribute split` is a common error that can be caused by a number of different things. By understanding what causes this error, you can avoid it in your own code.<\/p>\n<\/p>\n<h2>3. How to fix the AttributeError `float object has no attribute split`?<\/h2>\n<p>The `AttributeError` `float object has no attribute split` occurs when you try to call the `split()` method on a `float` object. This is because the `split()` method is not defined for `float` objects. To fix this error, you can either cast the `float` object to a `str` object or use a different method to split the string.<\/p>\n<p><b>Casting the `float` object to a `str` object<\/b><\/p>\n<p>To cast the `float` object to a `str` object, you can use the `str()` function. For example:<\/p>\n<p>python<br \/>\nfloat_object = 1.234<br \/>\nstr_object = str(float_object)<\/p>\n<p>Once the `float` object has been cast to a `str` object, you can call the `split()` method on it. For example:<\/p>\n<p>python<br \/>\nstr_object.split(&#8216;,&#8217;)<\/p>\n<p><b>Using a different method to split the string<\/b><\/p>\n<p>Instead of casting the `float` object to a `str` object, you can use a different method to split the string. For example, you can use the `re.split()` function from the `re` module. The `re.split()` function takes a regular expression as its first argument and a string as its second argument. The regular expression specifies the pattern that the string should be split on. For example, the following code uses the `re.split()` function to split the string `&#8221;1.234,5.678&#8243;` on the comma character:<\/p>\n<p>python<br \/>\nimport re<\/p>\n<p>string = &#8220;1.234,5.678&#8221;<\/p>\n<p>pattern = r&#8221;,&#8221;<\/p>\n<p>split_string = re.split(pattern, string)<\/p>\n<p>print(split_string)<\/p>\n<p>This code will print the following output:<\/p>\n<p>[&#8216;1.234&#8217;, &#8216;5.678&#8217;]<\/p>\n<p>The `AttributeError` `float object has no attribute split` can be fixed by either casting the `float` object to a `str` object or using a different method to split the string. Casting the `float` object to a `str` object is the simplest solution, but using a different method to split the string may be more efficient in some cases.<\/p>\n<h2>4. Examples of the AttributeError `float object has no attribute split`<\/h2>\n<p>The following are some examples of the `AttributeError` `float object has no attribute split`:<\/p>\n<ul>\n<li>python<\/li>\n<\/ul>\n<p>>>> float_object = 1.234<br \/>\n>>> float_object.split(&#8216;,&#8217;)<br \/>\nAttributeError: &#8216;float&#8217; object has no attribute &#8216;split&#8217;<\/p>\n<ul>\n<li>python<\/li>\n<\/ul>\n<p>import re<\/p>\n<p>string = &#8220;1.234,5.678&#8221;<\/p>\n<p>pattern = r&#8221;,&#8221;<\/p>\n<p>split_string = re.split(pattern, string)<\/p>\n<p>print(split_string)<\/p>\n<p>This code will print the following output:<\/p>\n<p>Traceback (most recent call last):<br \/>\n  File &#8220;<stdin>&#8220;, line 1, in <module><br \/>\n  File &#8220;\/usr\/lib\/python3.9\/re.py&#8221;, line 181, in split<br \/>\n    return _compile(pattern, flags).split(string, maxsplit)<br \/>\nAttributeError: &#8216;float&#8217; object has no attribute &#8216;split&#8217;<\/p>\n<ul>\n<li>python<\/li>\n<\/ul>\n<p>import numpy as np<\/p>\n<p>array = np.array([1.234, 5.678])<\/p>\n<p>print(array.split(&#8216;,&#8217;))<\/p>\n<p>This code will print the following output:<\/p>\n<p>Traceback (most recent call last):<br \/>\n  File &#8220;<stdin>&#8220;, line 1, in <module><br \/>\nAttributeError: &#8216;numpy.ndarray&#8217; object has no attribute &#8216;split&#8217;<\/p>\n<p>The `AttributeError` `float object has no attribute split` can occur when you try to call the `split()` method on a `float` object. This is because the `split()` method is not defined for `float` objects. To fix this error, you can either cast the `float` object to a `str` object or use a different method to split the string.<\/p>\n<p><b>Q: What does the AttributeError &#8220;float object has no attribute split&#8221; mean?<\/b><\/p>\n<p>A: The AttributeError &#8220;float object has no attribute split&#8221; means that you are trying to call the `split()` method on a float object, which does not have that method.<\/p>\n<p><b>Q: How can I fix the AttributeError &#8220;float object has no attribute split&#8221;?<\/b><\/p>\n<p>A: There are a few ways to fix this error.<\/p>\n<ul>\n<li><b>Make sure that you are calling the `split()` method on a string, not a float.<\/b> If you are trying to split a float, you can use the `str()` function to convert it to a string first.<\/li>\n<li><b>Use a different method to split the float.<\/b> There are a number of other ways to split a float, such as using the `re.split()` function or the `os.linesep` constant.<\/li>\n<li><b>Check the documentation for the library or function that you are using to see if it supports splitting floats.<\/b> Some libraries or functions do not support splitting floats, so you may need to use a different library or function.<\/li>\n<\/ul>\n<p><b>Q: What are some common causes of the AttributeError &#8220;float object has no attribute split&#8221;?<\/b><\/p>\n<p>A: There are a few common causes of the AttributeError &#8220;float object has no attribute split&#8221;:<\/p>\n<ul>\n<li><b>Mistyping the method name.<\/b> Make sure that you are spelling the `split()` method correctly.<\/li>\n<li><b>Passing a float to the `split()` method.<\/b> The `split()` method only works on strings, so you must pass a string to the method.<\/li>\n<li><b>Using a library or function that does not support splitting floats.<\/b> Some libraries or functions do not support splitting floats, so you may need to use a different library or function.<\/li>\n<\/ul>\n<p><b>Q: How can I prevent the AttributeError &#8220;float object has no attribute split&#8221; in the future?<\/b><\/p>\n<p>A: There are a few things you can do to prevent the AttributeError &#8220;float object has no attribute split&#8221; in the future:<\/p>\n<ul>\n<li><b>Be careful when typing method names.<\/b> Make sure that you are spelling the method name correctly.<\/li>\n<li><b>Check the documentation for the library or function that you are using to see if it supports splitting floats.<\/b> Some libraries or functions do not support splitting floats, so you may need to use a different library or function.<\/li>\n<li><b>Use a different method to split the float.<\/b> There are a number of other ways to split a float, such as using the `re.split()` function or the `os.linesep` constant.\n<\/p>\n<p>In this blog post, we discussed the AttributeError: &#8216;float&#8217; object has no attribute &#8216;split&#8217;. We first explained what the error is and why it occurs. Then, we provided two solutions to the problem.<\/li>\n<\/ul>\n<p>The first solution is to use the `str()` function to convert the float object to a string. This will allow you to use the `split()` method on the string.<\/p>\n<p>The second solution is to use the `numpy.array()` function to create a numpy array from the float object. This will also allow you to use the `split()` method on the array.<\/p>\n<p>We hope that this blog post has been helpful. If you have any other questions, please feel free to contact us.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever tried to split a float in Python and gotten an AttributeError? If so, you&#8217;re not alone. This common error occurs when you try to use the split() method on a float object, which doesn&#8217;t have that attribute. In this article, we&#8217;ll take a look at what causes this error and how you&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-15488","post","type-post","status-publish","format-standard","hentry","category-error-fixing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AttributeError: float object has no attribute &#039;split&#039;<\/title>\n<meta name=\"description\" content=\"AttributeError: &#039;float&#039; object has no attribute &#039;split&#039; * What is the error? * Why does it happen? * How to fix it?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AttributeError: float object has no attribute &#039;split&#039;\" \/>\n<meta property=\"og:description\" content=\"AttributeError: &#039;float&#039; object has no attribute &#039;split&#039; * What is the error? * Why does it happen? * How to fix it?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/\" \/>\n<meta property=\"og:site_name\" content=\"HatchJS.com\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/marcusgreenwood\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-25T22:22:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-05T11:02:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hatchjs.com\/wp-content\/uploads\/2023\/12\/Hatch.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tony Becker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@inventur_es\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tony Becker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/\"},\"author\":{\"name\":\"Tony Becker\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\"},\"headline\":\"AttributeError: float object has no attribute &#8216;split&#8217;\",\"datePublished\":\"2023-12-25T22:22:44+00:00\",\"dateModified\":\"2024-01-05T11:02:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/\"},\"wordCount\":1317,\"articleSection\":[\"Error Fixing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/\",\"url\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/\",\"name\":\"AttributeError: float object has no attribute 'split'\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#website\"},\"datePublished\":\"2023-12-25T22:22:44+00:00\",\"dateModified\":\"2024-01-05T11:02:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\"},\"description\":\"AttributeError: 'float' object has no attribute 'split' * What is the error? * Why does it happen? * How to fix it?\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/attributeerror-float-object-has-no-attribute-split\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hatchjs.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AttributeError: float object has no attribute &#8216;split&#8217;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#website\",\"url\":\"https:\\\/\\\/hatchjs.com\\\/\",\"name\":\"HatchJS.com\",\"description\":\"Cracking the Shell of Mystery\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hatchjs.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hatchjs.com\\\/#\\\/schema\\\/person\\\/0bb989e8d318f81bd8660b0f6b33c6a8\",\"name\":\"Tony Becker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g\",\"caption\":\"Tony Becker\"},\"sameAs\":[\"http:\\\/\\\/hatchjs.com\",\"https:\\\/\\\/www.facebook.com\\\/marcusgreenwood\\\/\",\"https:\\\/\\\/uk.linkedin.com\\\/in\\\/marcusgreenwood\",\"https:\\\/\\\/www.pinterest.com\\\/hatchjs\\\/\",\"https:\\\/\\\/x.com\\\/inventur_es\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/hatchjs\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AttributeError: float object has no attribute 'split'","description":"AttributeError: 'float' object has no attribute 'split' * What is the error? * Why does it happen? * How to fix it?","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:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/","og_locale":"en_US","og_type":"article","og_title":"AttributeError: float object has no attribute 'split'","og_description":"AttributeError: 'float' object has no attribute 'split' * What is the error? * Why does it happen? * How to fix it?","og_url":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/","og_site_name":"HatchJS.com","article_author":"https:\/\/www.facebook.com\/marcusgreenwood\/","article_published_time":"2023-12-25T22:22:44+00:00","article_modified_time":"2024-01-05T11:02:28+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/hatchjs.com\/wp-content\/uploads\/2023\/12\/Hatch.png","type":"image\/png"}],"author":"Tony Becker","twitter_card":"summary_large_image","twitter_creator":"@inventur_es","twitter_misc":{"Written by":"Tony Becker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/#article","isPartOf":{"@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/"},"author":{"name":"Tony Becker","@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8"},"headline":"AttributeError: float object has no attribute &#8216;split&#8217;","datePublished":"2023-12-25T22:22:44+00:00","dateModified":"2024-01-05T11:02:28+00:00","mainEntityOfPage":{"@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/"},"wordCount":1317,"articleSection":["Error Fixing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/","url":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/","name":"AttributeError: float object has no attribute 'split'","isPartOf":{"@id":"https:\/\/hatchjs.com\/#website"},"datePublished":"2023-12-25T22:22:44+00:00","dateModified":"2024-01-05T11:02:28+00:00","author":{"@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8"},"description":"AttributeError: 'float' object has no attribute 'split' * What is the error? * Why does it happen? * How to fix it?","breadcrumb":{"@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hatchjs.com\/attributeerror-float-object-has-no-attribute-split\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hatchjs.com\/"},{"@type":"ListItem","position":2,"name":"AttributeError: float object has no attribute &#8216;split&#8217;"}]},{"@type":"WebSite","@id":"https:\/\/hatchjs.com\/#website","url":"https:\/\/hatchjs.com\/","name":"HatchJS.com","description":"Cracking the Shell of Mystery","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hatchjs.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/hatchjs.com\/#\/schema\/person\/0bb989e8d318f81bd8660b0f6b33c6a8","name":"Tony Becker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/50d58e00a32df2da0d0ca3199a0d87520e5fbade8058eb2748acf312c3516cc3?s=96&d=mm&r=g","caption":"Tony Becker"},"sameAs":["http:\/\/hatchjs.com","https:\/\/www.facebook.com\/marcusgreenwood\/","https:\/\/uk.linkedin.com\/in\/marcusgreenwood","https:\/\/www.pinterest.com\/hatchjs\/","https:\/\/x.com\/inventur_es","https:\/\/www.youtube.com\/user\/hatchjs"]}]}},"_links":{"self":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/15488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/comments?post=15488"}],"version-history":[{"count":1,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/15488\/revisions"}],"predecessor-version":[{"id":15489,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/posts\/15488\/revisions\/15489"}],"wp:attachment":[{"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/media?parent=15488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/categories?post=15488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hatchjs.com\/wp-json\/wp\/v2\/tags?post=15488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}