{"id":16801,"date":"2017-04-04T12:15:56","date_gmt":"2017-04-04T09:15:56","guid":{"rendered":"https:\/\/www.webcodegeeks.com\/?p=16801"},"modified":"2017-04-03T11:31:06","modified_gmt":"2017-04-03T08:31:06","slug":"aws-lambda-programatically-create-python-hello-world-function","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/","title":{"rendered":"AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function"},"content":{"rendered":"<p>I\u2019ve been playing around with <a href=\"http:\/\/docs.aws.amazon.com\/lambda\/latest\/dg\/welcome.html\">AWS Lambda<\/a> over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding config.<\/p>\n<p>Let\u2019s say we have the following <cite>Hello World<\/cite> function:<\/p>\n<pre class=\"brush:py\">def lambda_handler(event, context):\r\n    print(\"Hello world\")<\/pre>\n<p>To upload it to AWS we need to put it inside a zip file so let\u2019s do that:<\/p>\n<pre class=\"brush:bash\">$ zip HelloWorld.zip HelloWorld.py<\/pre>\n<pre class=\"brush:bash\">$ unzip -l HelloWorld.zip \r\nArchive:  HelloWorld.zip\r\n  Length     Date   Time    Name\r\n --------    ----   ----    ----\r\n       61  04-02-17 22:04   HelloWorld.py\r\n --------                   -------\r\n       61                   1 file<\/pre>\n<p>Now we\u2019re ready to write a script to create our AWS lambda function.<\/p>\n<pre class=\"brush:py\">import boto3\r\n\u00a0\r\nlambda_client = boto3.client('lambda')\r\n\u00a0\r\nfn_name = \"HelloWorld\"\r\nfn_role = 'arn:aws:iam::[your-aws-id]:role\/lambda_basic_execution'\r\n\u00a0\r\nlambda_client.create_function(\r\n    FunctionName=fn_name,\r\n    Runtime='python2.7',\r\n    Role=fn_role,\r\n    Handler=\"{0}.lambda_handler\".format(fn_name),\r\n    Code={'ZipFile': open(\"{0}.zip\".format(fn_name), 'rb').read(), },\r\n)<\/pre>\n<p><cite>[your-aws-id]<\/cite> needs to be replaced with the identifier of our AWS account. We can find that out be running <a href=\"http:\/\/stackoverflow.com\/questions\/33791069\/quick-way-to-get-aws-account-number-from-the-cli-tools\">the following command<\/a> against the AWS CLI:<\/p>\n<pre class=\"brush:bash\">$ aws ec2 describe-security-groups --query 'SecurityGroups[0].OwnerId' --output text\r\n123456789012<\/pre>\n<p>Now we can create our function:<\/p>\n<pre class=\"brush:bash\">$ python CreateHelloWorld.py<\/pre>\n<p><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-07-38.png\"><img decoding=\"async\" class=\"aligncenter size-full wp-image-16809\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-07-38.png\" alt=\"\" width=\"524\" height=\"216\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-07-38.png 524w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-07-38-300x124.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" \/><\/a><\/p>\n<p>And if we test the function we\u2019ll get the expected output:<\/p>\n<p><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-02-59.png\"><img decoding=\"async\" class=\"aligncenter size-full wp-image-16810\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-02-59.png\" alt=\"\" width=\"752\" height=\"166\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-02-59.png 752w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/04\/2017-04-02_23-02-59-300x66.png 300w\" sizes=\"(max-width: 752px) 100vw, 752px\" \/><\/a><\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/www.markhneedham.com\/blog\/2017\/04\/02\/aws-lambda-programatically-create-a-python-hello-world-function\/\">AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function<\/a> from our <a href=\"http:\/\/www.webcodegeeks.com\/join-us\/wcg\/\">WCG partner<\/a> Mark Needham at the <a href=\"http:\/\/www.markhneedham.com\/blog\/\">Mark Needham Blog<\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding config. Let\u2019s say we have the following Hello World function: def lambda_handler(event, context): print(&#8220;Hello world&#8221;) To upload it to AWS we need to put it inside a zip &hellip;<\/p>\n","protected":false},"author":48,"featured_media":1651,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[53],"tags":[325],"class_list":["post-16801","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-amazon-aws"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>AWS Lambda: Programatically create a Python &#039;Hello World&#039; function - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS Lambda: Programatically create a Python &#039;Hello World&#039; function - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-04T09:15:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mark Needham\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Needham\" \/>\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\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\"},\"author\":{\"name\":\"Mark Needham\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/848a54e2ee724e46069ce36c2e52e98e\"},\"headline\":\"AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function\",\"datePublished\":\"2017-04-04T09:15:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\"},\"wordCount\":147,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"keywords\":[\"Amazon AWS\"],\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\",\"name\":\"AWS Lambda: Programatically create a Python 'Hello World' function - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"datePublished\":\"2017-04-04T09:15:56+00:00\",\"description\":\"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/848a54e2ee724e46069ce36c2e52e98e\",\"name\":\"Mark Needham\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g\",\"caption\":\"Mark Needham\"},\"sameAs\":[\"http:\/\/www.markhneedham.com\/blog\/\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/mark-needham\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AWS Lambda: Programatically create a Python 'Hello World' function - Web Code Geeks - 2026","description":"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding","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:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/","og_locale":"en_US","og_type":"article","og_title":"AWS Lambda: Programatically create a Python 'Hello World' function - Web Code Geeks - 2026","og_description":"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding","og_url":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2017-04-04T09:15:56+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","type":"image\/jpeg"}],"author":"Mark Needham","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Mark Needham","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/"},"author":{"name":"Mark Needham","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/848a54e2ee724e46069ce36c2e52e98e"},"headline":"AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function","datePublished":"2017-04-04T09:15:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/"},"wordCount":147,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","keywords":["Amazon AWS"],"articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/","url":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/","name":"AWS Lambda: Programatically create a Python 'Hello World' function - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","datePublished":"2017-04-04T09:15:56+00:00","description":"I\u2019ve been playing around with AWS Lambda over the last couple of weeks and I wanted to automate the creation of these functions and all their surrounding","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/python\/aws-lambda-programatically-create-python-hello-world-function\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/www.webcodegeeks.com\/category\/python\/"},{"@type":"ListItem","position":3,"name":"AWS Lambda: Programatically create a Python &#8216;Hello World&#8217; function"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/848a54e2ee724e46069ce36c2e52e98e","name":"Mark Needham","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g","caption":"Mark Needham"},"sameAs":["http:\/\/www.markhneedham.com\/blog\/"],"url":"https:\/\/www.webcodegeeks.com\/author\/mark-needham\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/16801","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/48"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=16801"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/16801\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/1651"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=16801"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=16801"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=16801"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}