{"id":2426,"date":"2013-05-20T09:13:41","date_gmt":"2013-05-20T00:13:41","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=2426"},"modified":"2013-05-20T09:15:27","modified_gmt":"2013-05-20T00:15:27","slug":"python-%ec%a0%95%ec%a0%81-%eb%a9%94%ec%86%8c%eb%93%9c%ec%99%80-%ed%81%b4%eb%9e%98%ec%8a%a4-%eb%a9%94%ec%86%8c%eb%93%9c","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=2426","title":{"rendered":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>\uc815\uc801 \uba54\uc18c\ub4dc : \uc778\uc2a4\ud134\uc2a4 \uac1d\uccb4\ub97c \uc774\uc6a9 \ud558\uc9c0\uc54a\uace0 \ud074\ub798\uc2a4 \uc774\ub984\uc744 \uc774\uc6a9\ud558\uc5ec \uc9c1\uc811 \ud638\ucd9c\ud574\uc57c \ud558\ub294 \uc0c1\ud669\uc5d0 \uc0ac\uc6a9<\/p>\n<p>\uc815\uc801 \uba54\uc18c\ub4dc\ub294 \uc77c\ubc18 \uba54\uc18c\ub4dc\uc640\ub294 \ub2ec\ub9ac \uccab \uc778\uc218\ub85c self\ub97c \ubc1b\uc9c0 \uc54a\uc73c\uba70 \ud544\uc694\ud55c \ub9cc\ud07c\uc758 \uc778\uc218\ub97c \uc120\uc5b8\ud574\uc11c \uc0ac\uc6a9.<\/p>\n<p>staticmethod() \ub97c \uc0ac\uc6a9\ud574 \uc815\uc801 \uba54\uc18c\ub4dc \ub4f1\ub85d<\/p>\n<p>\uc608\uc81c\ub97c \uc791\uc131\ud574\ubcf4\uc790.<\/p>\n<p>\ud074\ub798\uc2a4\ub85c\ubd80\ud130 \uc0dd\uc0c1\ub418\ub294 \uc778\uc2a4\ud134\uc2a4\uc758 \uac1c\uc218\ub97c \uad00\ub9ac\ud558\ub294 class \ub97c \ub9cc\ub4e4\uc5b4\ubcf4\uc790<\/p>\n<pre class=\"lang:python decode:true \" >class InstanceManager :\r\n\tcnt=0\r\n \r\n\tdef __init__(self):\r\n\t\tInstanceManager.cnt += 1\r\n \r\n\tdef s_print_count():\r\n\t\tprint('instance count : '+str(InstanceManager.cnt))\r\n\tsprintcount=staticmethod(s_print_count)\r\n\r\na=InstanceManager()\r\nInstanceManager.s_print_count()\r\na.s_print_count()<\/pre>\n<p>\uc18c\uc2a4\ub97c \uac04\ub2e8\ud788 \uc124\uba85\ud558\uba74&#8230;<\/p>\n<p>instance \uac1d\uccb4 \uc0dd\uc131\uc2dc, instance \uac1c\uc218\ub97c \uc800\uc7a5\ud558\ub294 \ud074\ub798\uc2a4 \uba64\ubc84 \ubcc0\uc218 cnt\uac00 \uc99d\uac00 \ub418\ub3c4\ub85d \uc124\uc815.<br \/>\ns_print_count() \uba54\uc18c\ub4dc\uc5d0\uc11c\ub294 instance \uac1c\uc218\ub97c \ucd9c\ub825.<br \/>\ns_print_count() \uba54\uc18c\ub4dc\ub294 \uc815\uc801\uba54\uc18c\ub4dc\ub85c \ub4f1\ub85d \ud558\uc600\ub2e4.<\/p>\n<p>\uacb0\uacfc\ub294 \uc544\ub798\uc640 \uac19\ub2e4.<\/p>\n<pre class=\"lang:default decode:true \" >C:\\Python33&gt;python InstanceManager.py\r\ninstance count : 1\r\nTraceback (most recent call last):\r\n  File \"InstanceManager.py\", line 14, in &lt;module&gt;\r\n    a.s_print_count()\r\nTypeError: s_print_count() takes 0 positional arguments but 1 was given<\/pre>\n<p>\uacb0\uacfc\uc640 \uac19\uc774 \ud074\ub798\uc2a4\ub97c \ud1b5\ud558\uc5ec \ud638\ucd9c\ud558\ub294 \uacbd\uc6b0\ub294 \uc815\uc0c1\uc801\uc73c\ub85c \uc218\ud589(\uc815\uc801\uba54\uc18c\ub4dc)\ub418\ub098, \uc778\uc2a4\ud134\uc2a4 \uac1d\uccb4\ub97c \uc774\uc6a9\ud558\uc5ec \ud638\ucd9c\ud558\ub294 \uacbd\uc6b0\uc5d0\ub294 TypeError\uac00 \ubc1c\uc0dd\ud558\ub294 \uac83\uc744 \ud655\uc778\ud560 \uc218 \uc788\ub2e4.<\/p>\n<p>\uc704\uc640 \uac19\uc740 Error\uac00 \ubc1c\uc0dd\ud558\uc9c0 \uc54a\ub3c4\ub85d \ud558\uae30 \uc704\ud574\uc11c \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc\ub97c \uc774\uc6a9\ud558\uba74 \ub2e4\uc74c\uacfc \uac19\uc774 \ub2e4\uc2dc \uc791\uc131\ud560\uc218 \uc788\ub2e4.<\/p>\n<pre class=\"lang:default decode:true \" >class InstanceManager :\r\n\tcnt=0\r\n \r\n\tdef __init__(self):\r\n\t\tInstanceManager.cnt += 1\r\n \r\n\tdef s_print_count() :\r\n\t\tprint('[staticmethod] instance count : '+str(InstanceManager.cnt))\r\n\tsprintcount=staticmethod(s_print_count)\r\n\r\n\tdef c_print_count(cls) :\r\n\t\tprint(\"[classmethod] instance count : \"+str(cls.cnt))\r\n\tcprintcount=classmethod(c_print_count)\r\n\r\na=InstanceManager()\r\n\r\nInstanceManager.sprintcount()\r\n#InstanceManager.s_print_count()\r\n\r\na.cprintcount()\r\n#a.c_print_count()<\/pre>\n<p>\uc989 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc\ub294 \uc778\uc2a4\ud134\uc2a4\uc5d0\uc11c \uc815\uc801 \uba54\uc18c\ub4dc\ucc98\ub7fc \uc0ac\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d \ub9cc\ub4e4\uc5b4\uc8fc\uba70, \uc554\ubb35\uc801\uc73c\ub85c \uc778\uc2a4\ud134\uc2a4\uc758 class \uac00 \ub9e4\uac1c\ubcc0\uc218\ub85c \ub118\uc5b4\uac04\ub2e4.<\/p>\n<p>\ucc38\uace0 : http:\/\/blog.naver.com\/dudwo567890?Redirect=Log&#038;logNo=130164152571<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; \uc815\uc801 \uba54\uc18c\ub4dc : \uc778\uc2a4\ud134\uc2a4 \uac1d\uccb4\ub97c \uc774\uc6a9 \ud558\uc9c0\uc54a\uace0 \ud074\ub798\uc2a4 \uc774\ub984\uc744 \uc774\uc6a9\ud558\uc5ec \uc9c1\uc811 \ud638\ucd9c\ud574\uc57c \ud558\ub294 \uc0c1\ud669\uc5d0 \uc0ac\uc6a9 \uc815\uc801 \uba54\uc18c\ub4dc\ub294 \uc77c\ubc18 \uba54\uc18c\ub4dc\uc640\ub294 \ub2ec\ub9ac \uccab \uc778\uc218\ub85c self\ub97c \ubc1b\uc9c0 \uc54a\uc73c\uba70 \ud544\uc694\ud55c \ub9cc\ud07c\uc758 \uc778\uc218\ub97c \uc120\uc5b8\ud574\uc11c \uc0ac\uc6a9. staticmethod() \ub97c \uc0ac\uc6a9\ud574 \uc815\uc801 \uba54\uc18c\ub4dc \ub4f1\ub85d \uc608\uc81c\ub97c \uc791\uc131\ud574\ubcf4\uc790. \ud074\ub798\uc2a4\ub85c\ubd80\ud130 &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=2426\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[663],"tags":[140],"class_list":["post-2426","post","type-post","status-publish","format-standard","hentry","category-python-","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com<\/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:\/\/apollo89.com\/wordpress\/?p=2426\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&nbsp; \uc815\uc801 \uba54\uc18c\ub4dc : \uc778\uc2a4\ud134\uc2a4 \uac1d\uccb4\ub97c \uc774\uc6a9 \ud558\uc9c0\uc54a\uace0 \ud074\ub798\uc2a4 \uc774\ub984\uc744 \uc774\uc6a9\ud558\uc5ec \uc9c1\uc811 \ud638\ucd9c\ud574\uc57c \ud558\ub294 \uc0c1\ud669\uc5d0 \uc0ac\uc6a9 \uc815\uc801 \uba54\uc18c\ub4dc\ub294 \uc77c\ubc18 \uba54\uc18c\ub4dc\uc640\ub294 \ub2ec\ub9ac \uccab \uc778\uc218\ub85c self\ub97c \ubc1b\uc9c0 \uc54a\uc73c\uba70 \ud544\uc694\ud55c \ub9cc\ud07c\uc758 \uc778\uc218\ub97c \uc120\uc5b8\ud574\uc11c \uc0ac\uc6a9. staticmethod() \ub97c \uc0ac\uc6a9\ud574 \uc815\uc801 \uba54\uc18c\ub4dc \ub4f1\ub85d \uc608\uc81c\ub97c \uc791\uc131\ud574\ubcf4\uc790. \ud074\ub798\uc2a4\ub85c\ubd80\ud130 &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=2426\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2013-05-20T00:13:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-05-20T00:15:27+00:00\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"apollo89\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc\",\"datePublished\":\"2013-05-20T00:13:41+00:00\",\"dateModified\":\"2013-05-20T00:15:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426\"},\"wordCount\":27,\"commentCount\":0,\"keywords\":[\"\ud30c\uc774\uc36c\"],\"articleSection\":[\"Python\\\/Ruby\\\/Perl\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426\",\"name\":\"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2013-05-20T00:13:41+00:00\",\"dateModified\":\"2013-05-20T00:15:27+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=2426#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=2426","og_locale":"ko_KR","og_type":"article","og_title":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com","og_description":"&nbsp; \uc815\uc801 \uba54\uc18c\ub4dc : \uc778\uc2a4\ud134\uc2a4 \uac1d\uccb4\ub97c \uc774\uc6a9 \ud558\uc9c0\uc54a\uace0 \ud074\ub798\uc2a4 \uc774\ub984\uc744 \uc774\uc6a9\ud558\uc5ec \uc9c1\uc811 \ud638\ucd9c\ud574\uc57c \ud558\ub294 \uc0c1\ud669\uc5d0 \uc0ac\uc6a9 \uc815\uc801 \uba54\uc18c\ub4dc\ub294 \uc77c\ubc18 \uba54\uc18c\ub4dc\uc640\ub294 \ub2ec\ub9ac \uccab \uc778\uc218\ub85c self\ub97c \ubc1b\uc9c0 \uc54a\uc73c\uba70 \ud544\uc694\ud55c \ub9cc\ud07c\uc758 \uc778\uc218\ub97c \uc120\uc5b8\ud574\uc11c \uc0ac\uc6a9. staticmethod() \ub97c \uc0ac\uc6a9\ud574 \uc815\uc801 \uba54\uc18c\ub4dc \ub4f1\ub85d \uc608\uc81c\ub97c \uc791\uc131\ud574\ubcf4\uc790. \ud074\ub798\uc2a4\ub85c\ubd80\ud130 &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=2426","og_site_name":"Apollo89.com","article_published_time":"2013-05-20T00:13:41+00:00","article_modified_time":"2013-05-20T00:15:27+00:00","author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=2426#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=2426"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc","datePublished":"2013-05-20T00:13:41+00:00","dateModified":"2013-05-20T00:15:27+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=2426"},"wordCount":27,"commentCount":0,"keywords":["\ud30c\uc774\uc36c"],"articleSection":["Python\/Ruby\/Perl"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=2426#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=2426","url":"https:\/\/apollo89.com\/wordpress\/?p=2426","name":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2013-05-20T00:13:41+00:00","dateModified":"2013-05-20T00:15:27+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=2426#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=2426"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=2426#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"Python \uc815\uc801 \uba54\uc18c\ub4dc\uc640 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc"}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/2426","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2426"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/2426\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2426"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2426"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2426"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}