{"id":4308,"date":"2013-11-16T00:15:09","date_gmt":"2013-11-15T15:15:09","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=4308"},"modified":"2013-11-16T00:19:30","modified_gmt":"2013-11-15T15:19:30","slug":"python-%ec%9c%88%eb%8f%84%ec%9a%b0%ec%9a%a9-%ec%8b%a4%ed%96%89%ed%8c%8c%ec%9d%bcexe-%eb%a7%8c%eb%93%a4%ea%b8%b0-py2exe","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=4308","title":{"rendered":"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)"},"content":{"rendered":"<p>&nbsp;<br \/>\n<strong>Notice : \ud574\ub2f9 \uc790\ub8cc\uac00 \uc800\uc791\uad8c\ub4f1\uc5d0 \uc758\ud574\uc11c \ubb38\uc81c\uac00 \uc788\ub2e4\uba74 \ubc14\ub85c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\ub2e4.<br \/>\n\uc5f0\uad6c\ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 \uc545\uc758\uc801\uc778 \ubaa9\uc801\uc73c\ub85c \uc774\uc6a9\ud560 \uacbd\uc6b0 \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \ubc95\uc801\uc740 \ucc45\uc784\uc740 \ubaa8\ub450 \ubcf8\uc778\uc5d0\uac8c \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n<\/strong><\/p>\n<p>Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)<\/p>\n<p>\uc791\uc131\ud55c python \ud504\ub85c\uadf8\ub7a8\uc744 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc5d0\ub294 \uc5ec\ub7ec\uac00\uc9c0\uac00 \uc788\uc9c0\ub9cc,<br \/>\nPython\uc774 \uc124\uce58\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc740 \ucef4\ud4e8\ud130\uc5d0\uc11c\ub3c4 Python \ud504\ub85c\uadf8\ub7a8\uc744 \uc2e4\ud589\ud558\uae30 \uc704\ud55c \ubc29\ubc95\uc911 py2exe \uc774\uc6a9\ud560 \uc218 \uc788\ub2e4.(Windows \uc758 \uacbd\uc6b0)<\/p>\n<p>\ud648\ud398\uc774\uc9c0\ub294 <a href=\"http:\/\/www.py2exe.org\/\" target=\"_blank\">http:\/\/www.py2exe.org\/<\/a> \uc774\uba70, <\/p>\n<p><a href=\"http:\/\/sourceforge.net\/projects\/py2exe\/files\/py2exe\/0.6.9\/\" target=\"_blank\">http:\/\/sourceforge.net\/projects\/py2exe\/files\/py2exe\/0.6.9\/<\/a> \uc5d0\uc11c \ub2e4\uc6b4\ubc1b\uc544\uc11c \uc124\uce58\ud558\uba74 \ub41c\ub2e4.<\/p>\n<p><a href=\"http:\/\/apollo89.com\/wordpress\/?p=4304\" target=\"_blank\">Python GUI \ud504\ub85c\uadf8\ub7a8 \ub9cc\ub4e4\uae30(wxpython)<\/a> \uc5d0\uc11c \ub9cc\ub4e0 python \ud504\ub85c\uadf8\ub7a8\uc744 exe\uc73c\ub85c \ub9cc\ub4e4\uc5b4 \ubcf4\uc790<\/p>\n<pre class=\"lang:python decode:true \" ># -*- coding: utf-8 -*-\r\n \r\nfrom distutils.core import setup\r\nimport py2exe\r\nimport glob\r\n \r\nexcludes = [\r\n    \"pywin\",\r\n    \"pywin.debugger\",\r\n    \"pywin.debugger.dbgcon\",\r\n    \"pywin.dialogs\",\r\n    \"pywin.dialogs.list\",\r\n    \"win32com.server\",\r\n]\r\n\r\noptions = {\r\n    \"bundle_files\": 1,                    # create singlefile exe\r\n    \"compressed\"  : 1,                 # compress the library archive\r\n    \"excludes\"    : excludes,\r\n    \"dll_excludes\": [\"w9xpopen.exe\", \"MSVCP90.dll\"]   # we don't need this\r\n}\r\n\r\nsetup(\r\n    options = {\"py2exe\": options},\r\n    zipfile = None,                    # append zip-archive to the executable\r\n    #console = [\"apollo_image.py\"],\r\n    windows = [\"apollo_image.py\"],\r\n    data_files=[(\"images\",glob.glob(\"images\/*\"))]\r\n)<\/pre>\n<p>\uc2e4\ud589<\/p>\n<pre class=\"lang:default decode:true \" >python apollo_image_setup.py py2exe<\/pre>\n<p>\uc0dd\uc131\ub41c \ub514\ub809\ud1a0\ub9ac \uad6c\uc870\ub294 \uc544\ub798\uc640 \uac19\ub2e4.<\/p>\n<pre class=\"lang:default decode:true \" >tree\r\n\u251c\u2500build\r\n\u2502  \u2514\u2500bdist.win32\r\n\u2502      \u2514\u2500winexe\r\n\u2502          \u251c\u2500bundle-2.7\r\n\u2502          \u251c\u2500collect-2.7\r\n\u2502          \u2502  \u251c\u2500encodings\r\n\u2502          \u2502  \u251c\u2500logging\r\n\u2502          \u2502  \u251c\u2500unittest\r\n\u2502          \u2502  \u2514\u2500wx\r\n\u2502          \u2514\u2500temp\r\n\u251c\u2500dist\r\n\u2502  \u251c\u2500images\r\n\u2502  \u2502  \u2514\u2500apollo.bmp\r\n\u2502  \u2514\u2500apollo_image.exe\r\n\u251c\u2500images\r\n\u2502  \u2514\u2500apollo.bmp\r\n\u251c\u2500apollo_image.py\r\n\u2514\u2500apollo_image_setup.py<\/pre>\n<p>\uc2e4\uc81c\ub85c \ubc30\ud3ec\ud560\ub54c\ub294 dist \ud3f4\ub354\uc758 \uc774\ub984\uc744 \ubc14\uafd4\uc11c zip\uc73c\ub85c \ubb36\uc5b4 \ubc30\ud3ec\ud558\uba74 \ub41c\ub2e4.<\/p>\n<p>\ucc38\uace0 : <a href=\"http:\/\/cshong.tistory.com\/350\" target=\"_blank\">http:\/\/cshong.tistory.com\/350<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Notice : \ud574\ub2f9 \uc790\ub8cc\uac00 \uc800\uc791\uad8c\ub4f1\uc5d0 \uc758\ud574\uc11c \ubb38\uc81c\uac00 \uc788\ub2e4\uba74 \ubc14\ub85c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc5f0\uad6c\ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 \uc545\uc758\uc801\uc778 \ubaa9\uc801\uc73c\ub85c \uc774\uc6a9\ud560 \uacbd\uc6b0 \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \ubc95\uc801\uc740 \ucc45\uc784\uc740 \ubaa8\ub450 \ubcf8\uc778\uc5d0\uac8c \uc788\uc2b5\ub2c8\ub2e4. Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) \uc791\uc131\ud55c python \ud504\ub85c\uadf8\ub7a8\uc744 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc5d0\ub294 \uc5ec\ub7ec\uac00\uc9c0\uac00 \uc788\uc9c0\ub9cc, Python\uc774 \uc124\uce58\ub418\uc5b4 &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=4308\">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":[1263,140],"class_list":["post-4308","post","type-post","status-publish","format-standard","hentry","category-python-","tag-py2exe","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 \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - 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=4308\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&nbsp; Notice : \ud574\ub2f9 \uc790\ub8cc\uac00 \uc800\uc791\uad8c\ub4f1\uc5d0 \uc758\ud574\uc11c \ubb38\uc81c\uac00 \uc788\ub2e4\uba74 \ubc14\ub85c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc5f0\uad6c\ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 \uc545\uc758\uc801\uc778 \ubaa9\uc801\uc73c\ub85c \uc774\uc6a9\ud560 \uacbd\uc6b0 \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \ubc95\uc801\uc740 \ucc45\uc784\uc740 \ubaa8\ub450 \ubcf8\uc778\uc5d0\uac8c \uc788\uc2b5\ub2c8\ub2e4. Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) \uc791\uc131\ud55c python \ud504\ub85c\uadf8\ub7a8\uc744 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc5d0\ub294 \uc5ec\ub7ec\uac00\uc9c0\uac00 \uc788\uc9c0\ub9cc, Python\uc774 \uc124\uce58\ub418\uc5b4 &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=4308\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-15T15:15:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-11-15T15:19:30+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=4308#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)\",\"datePublished\":\"2013-11-15T15:15:09+00:00\",\"dateModified\":\"2013-11-15T15:19:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308\"},\"wordCount\":42,\"commentCount\":0,\"keywords\":[\"py2exe\",\"\ud30c\uc774\uc36c\"],\"articleSection\":[\"Python\\\/Ruby\\\/Perl\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308\",\"name\":\"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2013-11-15T15:15:09+00:00\",\"dateModified\":\"2013-11-15T15:19:30+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=4308#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)\"}]},{\"@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 \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - 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=4308","og_locale":"ko_KR","og_type":"article","og_title":"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - Apollo89.com","og_description":"&nbsp; Notice : \ud574\ub2f9 \uc790\ub8cc\uac00 \uc800\uc791\uad8c\ub4f1\uc5d0 \uc758\ud574\uc11c \ubb38\uc81c\uac00 \uc788\ub2e4\uba74 \ubc14\ub85c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc5f0\uad6c\ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 \uc545\uc758\uc801\uc778 \ubaa9\uc801\uc73c\ub85c \uc774\uc6a9\ud560 \uacbd\uc6b0 \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \ubc95\uc801\uc740 \ucc45\uc784\uc740 \ubaa8\ub450 \ubcf8\uc778\uc5d0\uac8c \uc788\uc2b5\ub2c8\ub2e4. Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) \uc791\uc131\ud55c python \ud504\ub85c\uadf8\ub7a8\uc744 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc5d0\ub294 \uc5ec\ub7ec\uac00\uc9c0\uac00 \uc788\uc9c0\ub9cc, Python\uc774 \uc124\uce58\ub418\uc5b4 &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=4308","og_site_name":"Apollo89.com","article_published_time":"2013-11-15T15:15:09+00:00","article_modified_time":"2013-11-15T15:19:30+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=4308#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=4308"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)","datePublished":"2013-11-15T15:15:09+00:00","dateModified":"2013-11-15T15:19:30+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=4308"},"wordCount":42,"commentCount":0,"keywords":["py2exe","\ud30c\uc774\uc36c"],"articleSection":["Python\/Ruby\/Perl"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=4308#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=4308","url":"https:\/\/apollo89.com\/wordpress\/?p=4308","name":"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe) - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2013-11-15T15:15:09+00:00","dateModified":"2013-11-15T15:19:30+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=4308#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=4308"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=4308#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"Python \uc708\ub3c4\uc6b0\uc6a9 \uc2e4\ud589\ud30c\uc77c(exe) \ub9cc\ub4e4\uae30 (py2exe)"}]},{"@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\/4308","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=4308"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/4308\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}