{"id":4811,"date":"2023-06-06T21:24:55","date_gmt":"2023-06-06T15:54:55","guid":{"rendered":"https:\/\/nolowiz.com\/?p=4811"},"modified":"2023-06-07T07:20:09","modified_gmt":"2023-06-07T01:50:09","slug":"reactpy-is-the-react-for-python","status":"publish","type":"post","link":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/","title":{"rendered":"ReactPy is the React for Python"},"content":{"rendered":"\n<p>For building rich user interfaces we use React, in this article, we will discuss a new Python library ReactPy to build the user interfaces.<\/p>\n\n\n\n<p>The <a href=\"https:\/\/react.dev\/\" target=\"_blank\" rel=\"noreferrer noopener\">ReactJS <\/a>library allows developers to create reusable UI components and manage the state of these components efficiently. Similarly, ReactPy is a library for building user interfaces in Python without Javascript. ReactPy interfaces are made using components. So we can easily build web GUI with ReactPy.<\/p>\n\n\n\n<p>To install ReactPy run the following command :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install \"reactpy&#91;starlette]\"<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-2735334721002354\" crossorigin=\"anonymous\"><\/script>\n<!-- article-horizontal -->\n<ins class=\"adsbygoogle\" style=\"display:block\" data-ad-client=\"ca-pub-2735334721002354\" data-ad-slot=\"8835878737\" data-ad-format=\"auto\" data-full-width-responsive=\"true\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<p><\/p>\n\n\n\n<p>Here <a href=\"https:\/\/www.starlette.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">starlette<\/a> is used as the backend. Le&#8217;s try a simple example.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom reactpy import component, html, run\n\n@component\ndef HelloWorld():\n    return html.h1(&quot;Hello, World!&quot;)\n\nrun(HelloWorld)\n<\/pre><\/div>\n\n\n<p>Save the above content to <span class=\"has-inline-color has-vivid-red-color\">main.py<\/span> file and run it using the below command :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python main.py<\/code><\/pre>\n\n\n\n<p>Open the URL http:\/\/127.0.0.1:8000 in the browser. We can see the &#8220;hello world&#8221; message.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"322\" height=\"159\" src=\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-output-helloworld.png\" alt=\"ReactPy hello world output\" class=\"wp-image-4817\" srcset=\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-output-helloworld.png 322w, https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-output-helloworld-300x148.png 300w, https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-output-helloworld-150x74.png 150w\" sizes=\"(max-width: 322px) 100vw, 322px\" \/><\/figure>\n\n\n\n<h2>So what is a component in ReactPy?<\/h2>\n\n\n\n<p>As per the ReactPy documentation, components are normal Python functions and it returns HTML. In order to make a component just add <em><span class=\"has-inline-color has-vivid-red-color\">@component<\/span><\/em> decorator to the top of the function. See the below example :<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\n@component\ndef Title():\n    return html.h1(&quot;Nolowiz&quot;)\n<\/pre><\/div>\n\n\n<p>The above function title is a ReactPy component.<\/p>\n\n\n\n<p>We can use multiple components to create a complex one see the below code.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom reactpy import component, html, run\n\n@component\ndef Title(title):\n    return html.h1(title)\n    \n@component\ndef Photo():\n    return html.img(\n        {\n            &quot;src&quot;: &quot;https:\/\/picsum.photos\/id\/152\/500\/300&quot;,\n            &quot;style&quot;: {&quot;width&quot;: &quot;30%&quot;},\n        }\n    ) \n    \n@component\ndef PhotographerName(caption):\n    return html.h4(caption)\n    \n@component\ndef PhotoViewer():\n    return html.section(\n        Title(&quot;Photo of the day&quot;),\n        Photo(),\n        PhotographerName(&quot;Steven Spassov&quot;)\n    )\n\nrun(PhotoViewer)\n<\/pre><\/div>\n\n\n<p>The output of the above code is shown below<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"431\" height=\"406\" src=\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-components.png\" alt=\"ReactPy complex component\" class=\"wp-image-4826\" srcset=\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-components.png 431w, https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-components-300x283.png 300w, https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy-components-150x141.png 150w\" sizes=\"(max-width: 431px) 100vw, 431px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-2735334721002354\" crossorigin=\"anonymous\"><\/script>\n<!-- article-horizontal -->\n<ins class=\"adsbygoogle\" style=\"display:block\" data-ad-client=\"ca-pub-2735334721002354\" data-ad-slot=\"8835878737\" data-ad-format=\"auto\" data-full-width-responsive=\"true\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<p><\/p>\n\n\n\n<h2>ReactPy backends<\/h2>\n\n\n\n<p>ReactPy supports the following backend implementations.<\/p>\n\n\n\n<ul><li><a href=\"https:\/\/fastapi.tiangolo.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">fastapi<\/a><\/li><li><a href=\"https:\/\/palletsprojects.com\/p\/flask\/\" target=\"_blank\" rel=\"noreferrer noopener\">flask<\/a><\/li><li><a href=\"https:\/\/sanic.dev\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">sanic<\/a><\/li><li><a href=\"https:\/\/www.starlette.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">starlette<\/a><\/li><li><a href=\"https:\/\/www.tornadoweb.org\/en\/stable\/\" target=\"_blank\" rel=\"noreferrer noopener\">tornado<\/a><\/li><\/ul>\n\n\n\n<p>To install ReactPy with fastapi backend run the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install \"reactpy&#91;fastapi]\"<\/code><\/pre>\n\n\n\n<h2>Conclusion<\/h2>\n\n\n\n<p>In conclusion, ReactPy enables us to easily create better user interfaces in Python. <a href=\"https:\/\/nolowiz.com\/mojo-a-fast-new-programming-language-for-ai-subset-of-python\/\" target=\"_blank\" rel=\"noreferrer noopener\">You can read about the new programming language Mojo <\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For building rich user interfaces we use React, in this article, we will discuss a new Python library ReactPy to build the user interfaces. The ReactJS library allows developers to create reusable UI components and manage the state of these components efficiently. Similarly, ReactPy is a library for building user interfaces in Python without Javascript. &#8230; <a title=\"ReactPy is the React for Python\" class=\"read-more\" href=\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/\" aria-label=\"More on ReactPy is the React for Python\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":4845,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[25],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v16.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ReactPy is the React for Python - NoloWiz<\/title>\n<meta name=\"description\" content=\"For building rich user interfaces we use React, in this article, we&#039;ll discuss a new Python library ReactPy to build the user interfaces.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ReactPy is the React for Python - NoloWiz\" \/>\n<meta property=\"og:description\" content=\"For building rich user interfaces we use React, in this article, we&#039;ll discuss a new Python library ReactPy to build the user interfaces.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/\" \/>\n<meta property=\"og:site_name\" content=\"NoloWiz\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-06T15:54:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-07T01:50:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rupesh Sreeraman\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/nolowiz.com\/#organization\",\"name\":\"NoloWiz\",\"url\":\"https:\/\/nolowiz.com\/\",\"sameAs\":[],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/nolowiz.com\/#logo\",\"inLanguage\":\"en\",\"url\":\"https:\/\/nolowiz.com\/wp-content\/uploads\/2021\/01\/cropped-android-chrome-512x512-2.png\",\"contentUrl\":\"https:\/\/nolowiz.com\/wp-content\/uploads\/2021\/01\/cropped-android-chrome-512x512-2.png\",\"width\":512,\"height\":512,\"caption\":\"NoloWiz\"},\"image\":{\"@id\":\"https:\/\/nolowiz.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/nolowiz.com\/#website\",\"url\":\"https:\/\/nolowiz.com\/\",\"name\":\"NoloWiz\",\"description\":\"Technology news, tips and tutorials\",\"publisher\":{\"@id\":\"https:\/\/nolowiz.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/nolowiz.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage\",\"inLanguage\":\"en\",\"url\":\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg\",\"contentUrl\":\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg\",\"width\":1200,\"height\":628,\"caption\":\"react py reacr for the python feature image\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage\",\"url\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/\",\"name\":\"ReactPy is the React for Python - NoloWiz\",\"isPartOf\":{\"@id\":\"https:\/\/nolowiz.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage\"},\"datePublished\":\"2023-06-06T15:54:55+00:00\",\"dateModified\":\"2023-06-07T01:50:09+00:00\",\"description\":\"For building rich user interfaces we use React, in this article, we'll discuss a new Python library ReactPy to build the user interfaces.\",\"breadcrumb\":{\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/nolowiz.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ReactPy is the React for Python\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage\"},\"author\":{\"@id\":\"https:\/\/nolowiz.com\/#\/schema\/person\/6ef6f57a69193ce0993d74a8b6ac4414\"},\"headline\":\"ReactPy is the React for Python\",\"datePublished\":\"2023-06-06T15:54:55+00:00\",\"dateModified\":\"2023-06-07T01:50:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage\"},\"wordCount\":238,\"publisher\":{\"@id\":\"https:\/\/nolowiz.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/nolowiz.com\/#\/schema\/person\/6ef6f57a69193ce0993d74a8b6ac4414\",\"name\":\"Rupesh Sreeraman\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/nolowiz.com\/#personlogo\",\"inLanguage\":\"en\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0b6c0696ed1695a540102a80daa94ad0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0b6c0696ed1695a540102a80daa94ad0?s=96&d=mm&r=g\",\"caption\":\"Rupesh Sreeraman\"},\"sameAs\":[\"http:\/\/nolowiz.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ReactPy is the React for Python - NoloWiz","description":"For building rich user interfaces we use React, in this article, we'll discuss a new Python library ReactPy to build the user interfaces.","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:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/","og_locale":"en_US","og_type":"article","og_title":"ReactPy is the React for Python - NoloWiz","og_description":"For building rich user interfaces we use React, in this article, we'll discuss a new Python library ReactPy to build the user interfaces.","og_url":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/","og_site_name":"NoloWiz","article_published_time":"2023-06-06T15:54:55+00:00","article_modified_time":"2023-06-07T01:50:09+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg","path":"\/home\/rupeshsreeraman\/public_html\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg","size":"full","id":4845,"alt":"react py reacr for the python feature image","pixels":753600,"type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rupesh Sreeraman","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/nolowiz.com\/#organization","name":"NoloWiz","url":"https:\/\/nolowiz.com\/","sameAs":[],"logo":{"@type":"ImageObject","@id":"https:\/\/nolowiz.com\/#logo","inLanguage":"en","url":"https:\/\/nolowiz.com\/wp-content\/uploads\/2021\/01\/cropped-android-chrome-512x512-2.png","contentUrl":"https:\/\/nolowiz.com\/wp-content\/uploads\/2021\/01\/cropped-android-chrome-512x512-2.png","width":512,"height":512,"caption":"NoloWiz"},"image":{"@id":"https:\/\/nolowiz.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/nolowiz.com\/#website","url":"https:\/\/nolowiz.com\/","name":"NoloWiz","description":"Technology news, tips and tutorials","publisher":{"@id":"https:\/\/nolowiz.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nolowiz.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en"},{"@type":"ImageObject","@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage","inLanguage":"en","url":"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg","contentUrl":"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg","width":1200,"height":628,"caption":"react py reacr for the python feature image"},{"@type":"WebPage","@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage","url":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/","name":"ReactPy is the React for Python - NoloWiz","isPartOf":{"@id":"https:\/\/nolowiz.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage"},"datePublished":"2023-06-06T15:54:55+00:00","dateModified":"2023-06-07T01:50:09+00:00","description":"For building rich user interfaces we use React, in this article, we'll discuss a new Python library ReactPy to build the user interfaces.","breadcrumb":{"@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nolowiz.com\/"},{"@type":"ListItem","position":2,"name":"ReactPy is the React for Python"}]},{"@type":"Article","@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#article","isPartOf":{"@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage"},"author":{"@id":"https:\/\/nolowiz.com\/#\/schema\/person\/6ef6f57a69193ce0993d74a8b6ac4414"},"headline":"ReactPy is the React for Python","datePublished":"2023-06-06T15:54:55+00:00","dateModified":"2023-06-07T01:50:09+00:00","mainEntityOfPage":{"@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#webpage"},"wordCount":238,"publisher":{"@id":"https:\/\/nolowiz.com\/#organization"},"image":{"@id":"https:\/\/nolowiz.com\/reactpy-is-the-react-for-python\/#primaryimage"},"thumbnailUrl":"https:\/\/nolowiz.com\/wp-content\/uploads\/2023\/06\/reactpy_react_for_python_feature_image.jpg","articleSection":["Python"],"inLanguage":"en"},{"@type":"Person","@id":"https:\/\/nolowiz.com\/#\/schema\/person\/6ef6f57a69193ce0993d74a8b6ac4414","name":"Rupesh Sreeraman","image":{"@type":"ImageObject","@id":"https:\/\/nolowiz.com\/#personlogo","inLanguage":"en","url":"https:\/\/secure.gravatar.com\/avatar\/0b6c0696ed1695a540102a80daa94ad0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b6c0696ed1695a540102a80daa94ad0?s=96&d=mm&r=g","caption":"Rupesh Sreeraman"},"sameAs":["http:\/\/nolowiz.com"]}]}},"_links":{"self":[{"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/posts\/4811"}],"collection":[{"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/comments?post=4811"}],"version-history":[{"count":30,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/posts\/4811\/revisions"}],"predecessor-version":[{"id":4844,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/posts\/4811\/revisions\/4844"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/media\/4845"}],"wp:attachment":[{"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/media?parent=4811"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/categories?post=4811"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nolowiz.com\/wp-json\/wp\/v2\/tags?post=4811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}