{"id":494,"date":"2023-05-08T22:40:37","date_gmt":"2023-05-08T13:40:37","guid":{"rendered":"https:\/\/blog.peddals.com\/?p=494"},"modified":"2023-05-20T15:05:56","modified_gmt":"2023-05-20T06:05:56","slug":"pythonista3_ver3_4released","status":"publish","type":"post","link":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/","title":{"rendered":"Pythonista 3.4 is out now (supporting Python 3.10)"},"content":{"rendered":"\n<p>I thought the development discontinued&#8230;, but I was wrong!<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"528\" src=\"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/IMG_0189-1024x528.jpg\" alt=\"\" class=\"wp-image-477\" srcset=\"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/IMG_0189-1024x528.jpg 1024w, https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/IMG_0189-300x155.jpg 300w, https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/IMG_0189-768x396.jpg 768w, https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/IMG_0189.jpg 1536w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption class=\"wp-element-caption\">Running on iPad. Output of Stash version command. See Python is 3.10.4.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Python is now 3.10.4. Python 2 is no longer included.<\/h2>\n\n\n\n<p>After 3 years of silence, the great Python IDE for iOS\/iPadOS, <strong>Pythonista 3<\/strong> is finally released. You can now execute your Python 3.10 codes.<\/p>\n\n\n\n<p><a href=\"https:\/\/apps.apple.com\/jp\/app\/pythonista-3\/id1085978097\">Pythonista 3<\/a> \u2190 Link to the App Store<\/p>\n\n\n\n<p>For details (not very much, tough), visit the official website below:<\/p>\n\n\n\n<p><a href=\"https:\/\/omz-software.com\/pythonista\/docs-3.4\/py3\/ios\/new.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/omz-software.com\/pythonista\/docs-3.4\/py3\/ios\/new.html<\/a><\/p>\n\n\n\n<p>Since Python 2.7 is no longer included, you cannot run codes written in Python 2.x directly. E.g. SSH command in StaSh does not run unless you make a few changes (I&#8217;ll post another article how you can make the ssh command work).<\/p>\n\n\n\n<p>StaSh, a bash-like shell environment for Pythonista is not fully compatible yet. Installer works, and pip command is able to install packages, but somehow entries in the .stashrc file is not fully loaded &#8211; only the fist line becomes available.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">StaSh installation<\/h2>\n\n\n\n<p>It is recommended to cleaninstall Pythonista 3 to install StaSh. Even in the last few days the installation process changed, so I recommend to visit the official <a href=\"https:\/\/github.com\/ywangd\/stash\">Github<\/a> constantly. For me the dev version works better (mainly &#8216;ls -l&#8217;). You can copy the command below and execute in Console to install the dev version.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>url = &#39;https:\/\/raw.githubusercontent.com\/ywangd\/stash\/dev\/getstash.py&#39;; import requests as r; exec(r.get(url).text.replace(&#39;master&#39;, &#39;dev&#39;))<\/code><\/pre><\/div>\n\n\n\n<p>As advised, exit and relaunch Pythonista 3, and run launch_stash.py located in &#8220;This iPhone&#8221; to execute the StaSh shell.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Let&#8217;s install Django 4.0 (latest 4.2.1 won&#8217;t work.)<\/h2>\n\n\n\n<p>As far as I testd, Django version 4.0 can build the test page. Latest version 4.2.1 will be installed if you do not specify the version number, however it won&#8217;t run with an error regarding openssl_md5 when you launch django-admin. Copy and execute the below in StaSh.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>pip install django==4.0<\/code><\/pre><\/div>\n\n\n\n<p>In my case, StaSh installation logs and <code>pip show Django<\/code> reads version 4.2.1 but in Console, <code>import django <\/code>then<code> print(django.__version__)<\/code> shows &#8220;4.0&#8221; correctly.<\/p>\n\n\n\n<p>Anyways, after a successful installation of Django, restart Pythonista 3, launch StaSh and execute the below:<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>django-admin startproject mysite<\/code><\/pre><\/div>\n\n\n\n<p>You can now add an argument below to manage.py in the editor window (press and hold \u25b7 button then add the arg) and run.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-plain\"><code>runserver --noreload<\/code><\/pre><\/div>\n\n\n\n<p>If you see an error message &#8220;<strong>CommandError: You must set settings. ALLOWED_HOSTS if DEBUG is False<\/strong>&#8220;, simply ignore for now and restart Pythonista 3 then run manage.py again. Also, allow network access if asked by iOS.<\/p>\n\n\n\n<p>If all goes well you see the URL <a href=\"http:\/\/127.0.0.1:8000\/\">http:\/\/127.0.0.1:8000\/<\/a> . Either tap to open in Pythonista built-in browser or copy-paste in a web browser to open the page. Congrats! A rocket GIF image means your Django site is working! I have a few Django in StaSh\/Pythonista articles in my website for little more detailed instructions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">I never expected an update so I&#8217;m happy.<\/h2>\n\n\n\n<p>Recently I was playing anotehr iOS app, a-Shell which is a Unix\/Linux-like shell environment where you can write and run Python 3.11 codes. I like it as it&#8217;s more like a standard CLI shell with multiple programming languages, you can edit code in vim editor, etc. One thing I was disappointed about is the behavior of Django and Flask web apps &#8212; you need to open web browser and a-Shell back and forth to process the code. Pythonista 3 is a great IDE and StaSh is a nice tiny shell to play with. I expect StaSh will catch up soon. I&#8217;m back to Pythonista 3 and will post more articles.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Image by Stable Diffusion<\/h2>\n\n\n\n<p>This is totally off topic &#8212; I start adding details of Mochi Diffusion generated image when I add one as an eye-catching image. This one was generated with only 20 steps so looks bit scary, kinda typical AI generated image, but when I increased to the max 50 steps of Mochi Diffusion, people didn&#8217;t that look happy. Decided to go with more passionated image. And it should be more suitable than a free-of-use beautiful photograph of nature which isn&#8217;t related to the article at all.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Date:\n2023\u5e745\u67086\u65e5 14:35:09\n\nModel:\nrealisticVision-v20_split-einsum\n\nSize:\n512 x 512\n\nInclude in Image:\ncartoon, people happy with a new release of software\n\nExclude from Image:\n\n\nSeed:\n3343127351\n\nSteps:\n20\n\nGuidance Scale:\n11.0\n\nScheduler:\nDPM-Solver++\n\nML Compute Unit:\nCPU &amp; Neural Engine<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Pythonista 3 \u304c 3\u5e74\u3076\u308a\u306b\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3002StaSh \u306f\u307e\u3060\u30ad\u30e3\u30c3\u30c1\u30a2\u30c3\u30d7\u4e2d\u306a\u304c\u3089\u3001Python 3.10 \u304c\u4f7f\u3048\u307e\u3059\u3002<\/p>\n","protected":false},"author":1,"featured_media":485,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_locale":"en_US","_original_post":"https:\/\/blog.peddals.com\/?p=476","footnotes":""},"categories":[6,7,4,5],"tags":[17,18,19],"class_list":["post-494","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-django","category-ios","category-python","category-pythonista3","tag-cli","tag-python","tag-stash","en-US"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog<\/title>\n<meta name=\"description\" content=\"iOS app Pythonista 3 released. Python 3.10 supported.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog\" \/>\n<meta property=\"og:description\" content=\"iOS app Pythonista 3 released. Python 3.10 supported.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/\" \/>\n<meta property=\"og:site_name\" content=\"Peddals Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-08T13:40:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-20T06:05:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Handsome\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Handsome\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/\"},\"author\":{\"name\":\"Handsome\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#\\\/schema\\\/person\\\/81b2dabca748c3d11a45722f02d9d994\"},\"headline\":\"Pythonista 3.4 is out now (supporting Python 3.10)\",\"datePublished\":\"2023-05-08T13:40:37+00:00\",\"dateModified\":\"2023-05-20T06:05:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/\"},\"wordCount\":649,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#\\\/schema\\\/person\\\/81b2dabca748c3d11a45722f02d9d994\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.peddals.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg\",\"keywords\":[\"CLI\",\"Python\",\"StaSh\"],\"articleSection\":[\"Django\",\"iOS\",\"Python\",\"Pythonista3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/\",\"url\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/\",\"name\":\"Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.peddals.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg\",\"datePublished\":\"2023-05-08T13:40:37+00:00\",\"dateModified\":\"2023-05-20T06:05:56+00:00\",\"description\":\"iOS app Pythonista 3 released. Python 3.10 supported.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.peddals.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.peddals.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/en\\\/pythonista3_ver3_4released\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/blog.peddals.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pythonista 3.4 is out now (supporting Python 3.10)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#website\",\"url\":\"https:\\\/\\\/blog.peddals.com\\\/\",\"name\":\"Peddals Blog\",\"description\":\"AI, LLM, Python, Mac, Pythonista3, iOS, etc. in Japanese and English\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#\\\/schema\\\/person\\\/81b2dabca748c3d11a45722f02d9d994\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.peddals.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/blog.peddals.com\\\/#\\\/schema\\\/person\\\/81b2dabca748c3d11a45722f02d9d994\",\"name\":\"Handsome\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g\",\"caption\":\"Handsome\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog","description":"iOS app Pythonista 3 released. Python 3.10 supported.","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:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/","og_locale":"en_US","og_type":"article","og_title":"Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog","og_description":"iOS app Pythonista 3 released. Python 3.10 supported.","og_url":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/","og_site_name":"Peddals Blog","article_published_time":"2023-05-08T13:40:37+00:00","article_modified_time":"2023-05-20T06:05:56+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg","type":"image\/jpeg"}],"author":"Handsome","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Handsome","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#article","isPartOf":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/"},"author":{"name":"Handsome","@id":"https:\/\/blog.peddals.com\/#\/schema\/person\/81b2dabca748c3d11a45722f02d9d994"},"headline":"Pythonista 3.4 is out now (supporting Python 3.10)","datePublished":"2023-05-08T13:40:37+00:00","dateModified":"2023-05-20T06:05:56+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/"},"wordCount":649,"commentCount":0,"publisher":{"@id":"https:\/\/blog.peddals.com\/#\/schema\/person\/81b2dabca748c3d11a45722f02d9d994"},"image":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg","keywords":["CLI","Python","StaSh"],"articleSection":["Django","iOS","Python","Pythonista3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/","url":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/","name":"Pythonista 3.4 is out now (supporting Python 3.10) | Peddals Blog","isPartOf":{"@id":"https:\/\/blog.peddals.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#primaryimage"},"image":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg","datePublished":"2023-05-08T13:40:37+00:00","dateModified":"2023-05-20T06:05:56+00:00","description":"iOS app Pythonista 3 released. Python 3.10 supported.","breadcrumb":{"@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#primaryimage","url":"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg","contentUrl":"https:\/\/blog.peddals.com\/wp-content\/uploads\/2023\/05\/cartoon-people-happy-with-a-new-release-of-software.504.3343127351.jpg","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/blog.peddals.com\/en\/pythonista3_ver3_4released\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/blog.peddals.com\/"},{"@type":"ListItem","position":2,"name":"Pythonista 3.4 is out now (supporting Python 3.10)"}]},{"@type":"WebSite","@id":"https:\/\/blog.peddals.com\/#website","url":"https:\/\/blog.peddals.com\/","name":"Peddals Blog","description":"AI, LLM, Python, Mac, Pythonista3, iOS, etc. in Japanese and English","publisher":{"@id":"https:\/\/blog.peddals.com\/#\/schema\/person\/81b2dabca748c3d11a45722f02d9d994"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.peddals.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.peddals.com\/#\/schema\/person\/81b2dabca748c3d11a45722f02d9d994","name":"Handsome","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g","caption":"Handsome"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/51d7363349ec538c4d62c9ebe89488fd7388729ad0c9dfeebd8bb32ebfb11f17?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/posts\/494","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/comments?post=494"}],"version-history":[{"count":8,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/posts\/494\/revisions"}],"predecessor-version":[{"id":556,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/posts\/494\/revisions\/556"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/media\/485"}],"wp:attachment":[{"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/media?parent=494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/categories?post=494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.peddals.com\/wp-json\/wp\/v2\/tags?post=494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}