{"id":1129,"date":"2022-05-05T02:20:28","date_gmt":"2022-05-05T02:20:28","guid":{"rendered":"https:\/\/ltecnologia.com.br\/blog\/?p=1129"},"modified":"2022-05-05T02:21:53","modified_gmt":"2022-05-05T02:21:53","slug":"gerador-de-senhas-fortes-em-python","status":"publish","type":"post","link":"http:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/","title":{"rendered":"Gerador de senhas fortes em Python"},"content":{"rendered":"\n<p>Fallaaaaaaa seus Nerd\u00e3o! Blz? <\/p>\n\n\n\n<p>Neste post eu vou deixar um programinha gerador de senhas fortes em Python totalmente comentado para quem ta iniciando na programa\u00e7\u00e3o dar uma olhada e estudar.<\/p>\n\n\n\n<p>Ele utiliza tamb\u00e9m a biblioteca <strong>pyperclip<\/strong> para realizar a c\u00f3pia da String para a \u00e1rea de transfer\u00eancia.<\/p>\n\n\n\n<p>Com isso estou inagurando tamb\u00e9m uma categoria nova aqui no blog #rapidinhasdepython<\/p>\n\n\n\n<p>Importante: instalem o pyperclip no ambiente python de voc\u00eas com o comando:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li> pip install pyperclip<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>#Programa Gerador de Senhas Fortes em Python\r\n#Instagram: @luanoliveira.ti\r\n#Acessa meu canal do Youtube pra mais conte\u00fado como este: T.I. na pr\u00e1tica\r\n\r\n#Biblioteca que permite utilizar a principal fun\u00e7\u00e3o do programa random.sample()\r\nimport random\r\n#Esta \u00e9 a Biblioteca carrega a fun\u00e7\u00e3o de copiar strings para a \u00e1rea de transfer\u00eancia\r\nimport pyperclip \r\n\r\n#Variavel que armazena o alfabeto em min\u00fasculo\r\nminusculo = \"abcdefghijklmnopqrstuvxyz\"\r\n\r\n#Variavel que armazena o alfabeto em maiusculo D\u00c3\u00c2\u00c2\u00c2\u00c2\r\nmaiusculo = \"ABCDEFGHIJKLMNOPQRSTUVXYZ\"\r\n\r\n#Variavel recebendo os n\u00fameros \r\n#Repare que por estar entre aspas \u00e9 uma STRING!\r\nnumeros= \"1234567890\"\r\n\r\n#Variavel recebendo caracteres especiais\r\nespeciais= \"!_-.;:&#91;]()\"\r\n\r\n#Vamos juntar tudo em uma \u00fanica vari\u00e1vel\r\ntudo = minusculo+maiusculo+numeros+especiais\r\n\r\n#Definindo o tamanho da nossa senha\r\ntamanho = 12\r\n\r\n#Finalmente a vari\u00e1vel que ir\u00e1 receber nossa senha\r\nsenha=\"\".join(random.sample(tudo,tamanho))\r\n\r\n#J\u00e1 que temos uma senha definida vamos utilizar a fun\u00e7\u00e3o que copia a nossa vari\u00e1vel (string) para a \u00e1rea de transfer\u00eancia\r\npyperclip.copy(senha)\r\n\r\n#SAIDA DO NOSSO PROGRAMA COM FIRULA\r\nprint(\"=========================================\")\r\nprint(\"\\nTa aqui a senha seu pregui\u00e7oso: \"+senha)\r\nprint(\"\\nA senha gerada foi copiada para a \u00e1rea de Transferencia!\")\r\nprint(\"=========================================\")<\/code><\/pre>\n\n\n\n<p>Eu tamb\u00e9m postei um v\u00eddeo no <a href=\"http:\/\/instagram.com\/luanoliveira.ti\" target=\"_blank\" rel=\"noreferrer noopener\">meu instagram<\/a> com ele em funcionamento. <\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Fallaaaaaaa seus Nerd\u00e3o! Blz? Neste post eu vou deixar um programinha gerador de senhas fortes em Python totalmente comentado para quem ta iniciando na programa\u00e7\u00e3o dar uma olhada e estudar. Ele utiliza tamb\u00e9m a biblioteca pyperclip para realizar a c\u00f3pia da String para a \u00e1rea de transfer\u00eancia. Com isso estou inagurando tamb\u00e9m uma categoria nova&hellip; <a href=\"http:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\" class=\"more-link\">Leia mais <span class=\"screen-reader-text\">Gerador de senhas fortes em Python<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":1131,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"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":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false},"version":2}},"categories":[1],"tags":[],"class_list":["post-1129","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-futuro"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Gerador de senhas fortes em Python - Luan Oliveira<\/title>\n<meta name=\"description\" content=\"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gerador de senhas fortes em Python - Luan Oliveira\" \/>\n<meta property=\"og:description\" content=\"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Luan Oliveira\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-05T02:20:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-05T02:21:53+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Luan Oliveira\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Luan Oliveira\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\"},\"author\":{\"name\":\"Luan Oliveira\",\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40\"},\"headline\":\"Gerador de senhas fortes em Python\",\"datePublished\":\"2022-05-05T02:20:28+00:00\",\"dateModified\":\"2022-05-05T02:21:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\"},\"wordCount\":101,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40\"},\"image\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png\",\"articleSection\":[\"Futuro\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\",\"url\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\",\"name\":\"Gerador de senhas fortes em Python - Luan Oliveira\",\"isPartOf\":{\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png\",\"datePublished\":\"2022-05-05T02:20:28+00:00\",\"dateModified\":\"2022-05-05T02:21:53+00:00\",\"description\":\"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip\",\"breadcrumb\":{\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage\",\"url\":\"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png\",\"contentUrl\":\"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png\",\"width\":600,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"http:\/\/ltecnologia.com.br\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gerador de senhas fortes em Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#website\",\"url\":\"http:\/\/ltecnologia.com.br\/blog\/\",\"name\":\"Luan Oliveira\",\"description\":\"Linux | Programa\u00e7\u00e3o | Seguran\u00e7a\",\"publisher\":{\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/ltecnologia.com.br\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-BR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40\",\"name\":\"Luan Oliveira\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f333f4f98204ee523e984e240be5b77b?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f333f4f98204ee523e984e240be5b77b?s=96&d=retro&r=g\",\"caption\":\"Luan Oliveira\"},\"logo\":{\"@id\":\"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Me chamo Luan Oliveira, P\u00f3s-graduado em Projetos e Arquitetura de Cloud Computing e bacharel em Sistemas de Informa\u00e7\u00e3o pela UFPA. Atualmente, trabalho como Analista de Sistemas na For\u00e7a A\u00e9rea Brasileira.\",\"sameAs\":[\"http:\/\/www.ltecnologia.com.br\"],\"url\":\"http:\/\/ltecnologia.com.br\/blog\/author\/ltecnologia\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Gerador de senhas fortes em Python - Luan Oliveira","description":"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip","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:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/","og_locale":"pt_BR","og_type":"article","og_title":"Gerador de senhas fortes em Python - Luan Oliveira","og_description":"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip","og_url":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/","og_site_name":"Luan Oliveira","article_published_time":"2022-05-05T02:20:28+00:00","article_modified_time":"2022-05-05T02:21:53+00:00","og_image":[{"width":600,"height":300,"url":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","type":"image\/png"}],"author":"Luan Oliveira","twitter_card":"summary_large_image","twitter_misc":{"Escrito por":"Luan Oliveira","Est. tempo de leitura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#article","isPartOf":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/"},"author":{"name":"Luan Oliveira","@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40"},"headline":"Gerador de senhas fortes em Python","datePublished":"2022-05-05T02:20:28+00:00","dateModified":"2022-05-05T02:21:53+00:00","mainEntityOfPage":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/"},"wordCount":101,"commentCount":0,"publisher":{"@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40"},"image":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage"},"thumbnailUrl":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","articleSection":["Futuro"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/","url":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/","name":"Gerador de senhas fortes em Python - Luan Oliveira","isPartOf":{"@id":"http:\/\/ltecnologia.com.br\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage"},"image":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage"},"thumbnailUrl":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","datePublished":"2022-05-05T02:20:28+00:00","dateModified":"2022-05-05T02:21:53+00:00","description":"Gerador de Senhas fortes em Python para iniciantes utilizando a fun\u00e7\u00e3o random.sample() e a biblioteca pyperclip","breadcrumb":{"@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#primaryimage","url":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","contentUrl":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","width":600,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/ltecnologia.com.br\/blog\/gerador-de-senhas-fortes-em-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"http:\/\/ltecnologia.com.br\/blog\/"},{"@type":"ListItem","position":2,"name":"Gerador de senhas fortes em Python"}]},{"@type":"WebSite","@id":"http:\/\/ltecnologia.com.br\/blog\/#website","url":"http:\/\/ltecnologia.com.br\/blog\/","name":"Luan Oliveira","description":"Linux | Programa\u00e7\u00e3o | Seguran\u00e7a","publisher":{"@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/ltecnologia.com.br\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-BR"},{"@type":["Person","Organization"],"@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/b692f08d20eee7bee61862cf98a2cb40","name":"Luan Oliveira","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f333f4f98204ee523e984e240be5b77b?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f333f4f98204ee523e984e240be5b77b?s=96&d=retro&r=g","caption":"Luan Oliveira"},"logo":{"@id":"http:\/\/ltecnologia.com.br\/blog\/#\/schema\/person\/image\/"},"description":"Me chamo Luan Oliveira, P\u00f3s-graduado em Projetos e Arquitetura de Cloud Computing e bacharel em Sistemas de Informa\u00e7\u00e3o pela UFPA. Atualmente, trabalho como Analista de Sistemas na For\u00e7a A\u00e9rea Brasileira.","sameAs":["http:\/\/www.ltecnologia.com.br"],"url":"http:\/\/ltecnologia.com.br\/blog\/author\/ltecnologia\/"}]}},"jetpack_featured_media_url":"http:\/\/ltecnologia.com.br\/blog\/wp-content\/uploads\/2022\/05\/GERADOR-DE-SENHAS-FORTES-EM-PYTHON.png","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p6BRyf-id","_links":{"self":[{"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/posts\/1129","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/comments?post=1129"}],"version-history":[{"count":3,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/posts\/1129\/revisions"}],"predecessor-version":[{"id":1133,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/posts\/1129\/revisions\/1133"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/media\/1131"}],"wp:attachment":[{"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/media?parent=1129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/categories?post=1129"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/ltecnologia.com.br\/blog\/wp-json\/wp\/v2\/tags?post=1129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}