{"id":19482,"date":"2021-09-10T11:47:33","date_gmt":"2021-09-10T06:17:33","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=19482"},"modified":"2022-05-05T18:16:45","modified_gmt":"2022-05-05T12:46:45","slug":"python-with-keyword-example-code","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/","title":{"rendered":"Python with keyword | Example code"},"content":{"rendered":"\n<p>In python the with keyword is used when working with unmanaged resources (like file streams). . It provides &#8216;syntactic sugar&#8217; for <a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-try-except-finally-else-print-error-example\/\">try\/finally blocks<\/a>.<\/p>\n\n\n\n<p><strong>Syntax of with keyword<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  with expression &#91;as variable]:\n\t    with-block-statement(s)<\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Python Example of &#8220;with keyword&#8221;<\/strong><\/h2>\n\n\n\n<p>Simple example code. It creates a with-block that executes that usages the variable which is declared with &#8220;<strong>with keyword<\/strong>&#8220;.<\/p>\n\n\n\n<p>The <strong>with keyword<\/strong> is basically used to ensure that the __exit__ method is called at the end of the block.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Example<\/strong>: Open a file and write the text.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>file_name = \"file.txt\"\n\n# opening a file and creating with-block\nwith open(file_name, \"w\") as myfile:\n    myfile.write(\"Welcome Developer\")\n\n# ensure that file is closed or not\nif myfile.closed:\n    print(\"File is closed\")\n<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>: <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"963\" height=\"601\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?resize=963%2C601&#038;ssl=1\" alt=\"Python with keyword example\" class=\"wp-image-19506\" srcset=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?w=963&amp;ssl=1 963w, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?resize=768%2C479&amp;ssl=1 768w\" sizes=\"auto, (max-width: 963px) 100vw, 963px\" \/><\/figure><\/div>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Do comment if you have any doubts or suggestions on this Python keyword tutorial.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note:<\/strong> IDE:&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.jetbrains.com\/pycharm\/\" target=\"_blank\">PyCharm<\/a>&nbsp;2021.3.3 (Community Edition)<\/p><p>Windows 10<\/p><p><strong>Python 3.10.1<\/strong><\/p><p>All<strong>&nbsp;Python Examples&nbsp;are in&nbsp;Python&nbsp;3<\/strong>, so Maybe its different from python 2 or upgraded versions.<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>In python the with keyword is used when working with unmanaged resources (like file streams). . It provides &#8216;syntactic sugar&#8217; for try\/finally blocks. Syntax of with keyword Python Example of &#8220;with keyword&#8221; Simple example code. It creates a with-block that executes that usages the variable which is declared with &#8220;with keyword&#8220;. The with keyword is&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">Python with keyword | Example code<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[30],"tags":[97,196],"post_series":[],"class_list":["post-19482","post","type-post","status-publish","format-standard","hentry","category-python","tag-python-keywords","tag-python-with"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python with keyword | Example code<\/title>\n<meta name=\"description\" content=\"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides &#039;syntactic sugar&#039; for try\/finally\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python with keyword | Example code\" \/>\n<meta property=\"og:description\" content=\"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides &#039;syntactic sugar&#039; for try\/finally\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-10T06:17:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-05T12:46:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg\" \/>\n<meta name=\"author\" content=\"Rohit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rohit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\",\"name\":\"Python with keyword | Example code\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg\",\"datePublished\":\"2021-09-10T06:17:33+00:00\",\"dateModified\":\"2022-05-05T12:46:45+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides 'syntactic sugar' for try\/finally\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?fit=963%2C601&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?fit=963%2C601&ssl=1\",\"width\":963,\"height\":601},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python with keyword | Example code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\",\"url\":\"https:\/\/tutorial.eyehunts.com\/\",\"name\":\"Tutorial\",\"description\":\"By EyeHunts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\",\"name\":\"Rohit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"contentUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"caption\":\"Rohit\"},\"description\":\"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.\",\"url\":\"https:\/\/tutorial.eyehunts.com\/author\/rohit\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python with keyword | Example code","description":"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides 'syntactic sugar' for try\/finally","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:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/","og_locale":"en_US","og_type":"article","og_title":"Python with keyword | Example code","og_description":"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides 'syntactic sugar' for try\/finally","og_url":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/","og_site_name":"Tutorial","article_published_time":"2021-09-10T06:17:33+00:00","article_modified_time":"2022-05-05T12:46:45+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/","url":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/","name":"Python with keyword | Example code","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg","datePublished":"2021-09-10T06:17:33+00:00","dateModified":"2022-05-05T12:46:45+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"In python the with keyword is used when working with unmanaged resources (like file streams). . It provides 'syntactic sugar' for try\/finally","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?fit=963%2C601&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-with-keyword-example.jpg?fit=963%2C601&ssl=1","width":963,"height":601},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/python\/python-with-keyword-example-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"Python with keyword | Example code"}]},{"@type":"WebSite","@id":"https:\/\/tutorial.eyehunts.com\/#website","url":"https:\/\/tutorial.eyehunts.com\/","name":"Tutorial","description":"By EyeHunts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1","name":"Rohit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/","url":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","contentUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","caption":"Rohit"},"description":"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.","url":"https:\/\/tutorial.eyehunts.com\/author\/rohit\/"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":34790,"url":"https:\/\/tutorial.eyehunts.com\/python\/try-keyword-in-python\/","url_meta":{"origin":19482,"position":0},"title":"Try keyword in Python","author":"Rohit","date":"December 9, 2022","format":false,"excerpt":"The Python Try keyword is used to check errors in a block of code. It is used with try\u2026except blocks. In Python, exceptions can be handled using a try statement. Try keywords in Python A simple example code will raise an error because the variable \"price\" is not defined. try:\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Try keywords in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/12\/Try-keywords-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":20014,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-global-keyword-change-scope-of-variables\/","url_meta":{"origin":19482,"position":1},"title":"Python global keyword | Change scope of variables","author":"Rohit","date":"September 19, 2021","format":false,"excerpt":"Python global keyword is used to change the scope of variables. By default variables inside the function has local scope. Means you can't use it outside the function. Simple use global keyword to read and write a global variable inside a function. Note: If a variable defines outside the function\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python global keyword example","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-global-keyword-example.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":3060,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-with-statement-keyword-examples\/","url_meta":{"origin":19482,"position":2},"title":"Python With Statement | Keyword | Examples","author":"Rohit","date":"November 15, 2018","format":false,"excerpt":"Python With statement will auto close the nested block of code. It has guaranteed to close the file\u00a0(if using in file handling) or nested loop, this is the main advantage of it. And\u00a0also get better syntax and exception handling. The With Statement added in python\u00a0Python 2.5, as an optional feature.\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python With Statement Keyword Examples","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2018\/11\/Python-With-Statement-Keyword-Examples.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":20030,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-nonlocal-keyword-statement-example-code\/","url_meta":{"origin":19482,"position":3},"title":"Python nonlocal keyword (statement) | Example code","author":"Rohit","date":"September 24, 2021","format":false,"excerpt":"Python nonlocal keyword (statement) is used to work with variables inside nested functions. It gives access to variables inside the inner function to the outer function. Python nonlocal variable example A simple example code uses the nonlocal keyword to declare that the variable is not local. def shopping_bill(promo=False): items_prices =\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python nonlocal keyword","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/Python-nonlocal-keyword.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":18452,"url":"https:\/\/tutorial.eyehunts.com\/python\/none-keyword-in-python-example-code\/","url_meta":{"origin":19482,"position":4},"title":"None keyword in Python | Example code","author":"Rohit","date":"September 6, 2021","format":false,"excerpt":"\"None keyword\" is used to define variables or objects without any values. If you assign a None value to a variable or object then it same as a null value, or no value at all. var = None Note: The \"None\" is not the same as zero, False, or an\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"None keyword in Python","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2021\/09\/None-keyword-in-Python.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":34623,"url":"https:\/\/tutorial.eyehunts.com\/python\/python-this-keyword\/","url_meta":{"origin":19482,"position":5},"title":"Python this keyword","author":"Rohit","date":"December 9, 2022","format":false,"excerpt":"Python doesn't have this keyword. Python has a self that represents the instance of the class. Use the \u201cself\u201d to access the attributes and methods of the class in python. It binds the attributes with the given arguments. this, self, and Me are keywords used in computer programming languages to\u2026","rel":"","context":"In &quot;Python&quot;","block_context":{"text":"Python","link":"https:\/\/tutorial.eyehunts.com\/category\/python\/"},"img":{"alt_text":"Python this keyword","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/12\/Python-this-keyword.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/19482","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/comments?post=19482"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/19482\/revisions"}],"predecessor-version":[{"id":29126,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/19482\/revisions\/29126"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=19482"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=19482"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=19482"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=19482"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}