{"id":29552,"date":"2021-03-10T10:44:16","date_gmt":"2021-03-10T18:44:16","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29552"},"modified":"2022-07-20T08:34:55","modified_gmt":"2022-07-20T15:34:55","slug":"how-to-use-python-get-current-directory","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/","title":{"rendered":"How to Use the Python Get Current Directory Method"},"content":{"rendered":"\n<p>You can use the Python <a href=\"https:\/\/careerkarma.com\/blog\/what-is-a-scripting-language\/\">scripting language<\/a> to interact with your operating system and navigate between files. The process is similar to using a command line interface.<br><\/p>\n\n\n\n<p>Python\u2019s <code>get current directory<\/code>, or Python <code>os.getcwd()<\/code>, allows you to change directories and move files around. This article covers what <code>get current directory<\/code> is and how to use the command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Python \u2018get current directory\u2019?<\/h2>\n\n\n\n<p>The Python <code>get current directory<\/code>, or <code>os.getcwd()<\/code>, method consists of two components: <code>os<\/code>, which stands for <code>operating system<\/code> and <code>.getcwd()<\/code>, which stands for <code>get current working directory<\/code> \u2014 referring to whichever directory (folder) or location your code file is currently stored in.<br><\/p>\n\n\n\n<p>You need to import the os module before using the method. A Python module is pre-built code; you don\u2019t need to install any third-party libraries. The os module allows us to navigate through the operating system\u2019s file system, get file information, and move files around.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Python \u2018get current directory\u2019 works<\/h2>\n\n\n\n<p>Let\u2019s see the Python get current directory method in action.<br><\/p>\n\n\n\n<p>If you open a new code file, say in IDLE (Python\u2019s built-in code editor), you can type this code:&nbsp;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import os\nprint(os.getcwd())<\/pre><\/div>\n\n\n\n<p>With \u201cimport os\u201d, we are importing the os module into our program. With \u201cprint\u201d, we are telling the program to display the file\u2019s current location. When you run this code, the output will be the name of the folder that you are currently in, which is the location of the current directory.<br><\/p>\n\n\n\n<p>If your code file is saved to your desktop, the output may look like this:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>C:\\Users\\name\\Desktop<\/pre><\/div>\n\n\n\n<p>Note that \u201cname\u201d refers to whatever name is associated with your computer\u2019s user account (usually it is your first name).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using \u2018get current directory\u2019 with \u2018change directory\u2019<\/h2>\n\n\n\n<p>Once you know what directory you are working in, you may want to navigate to a different directory. To do this, you can use the \u2018change directory\u2019 method, <code>os.chdir()<\/code>.<br><\/p>\n\n\n\n<p>As an example, let\u2019s suppose that you want to check what directory you are in, then navigate to the Documents directory on your computer (assuming you are not already in the Documents directory), and then confirm that you are in the Documents directory.&nbsp;<br><\/p>\n\n\n\n<p>Here is how you would view your current directory, change directories, and then confirm you are in the Documents directory. Check out this code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import os\nprint(os.getcwd())\nos.chdir('\/Users\/name\/Documents')\nprint(os.getcwd())<\/pre><\/div>\n\n\n\n<p>Note that in the above code we first have to import the os module. Then, we print the current working directory using the \u201cprint\u201d command. Next, we change the directory using the <code>os.chdir()<\/code> method, with the name of the desired directory (Documents) in the target folder path. Finally, we print the current working directory again to confirm that we are in the Documents directory.<br><\/p>\n\n\n\n<p>Here is the output of this code:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>C:\\Users\\name\\Desktop\nC:\\Users\\name\\Documents<\/pre><\/div>\n\n\n\n<p>This means that the first directory was the Desktop, and the new directory is Documents. Again, we used the \u201cprint\u201d command twice&#8211;once to display the current directory before we changed it, and once to display the current directory after we changed it.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Because Python is a scripting language, you can use Python to communicate with your operating system to navigate through, and give you information about, the files on your computer. The Python \u2018get current directory\u2019 method is one Python method that you can use to get information about your files.<\/p>\n\n\n\n<p>Some developers find that interacting with files with a scripting language such as Python is more productive than using an operating system\u2019s GUI (graphical user interface) to create and click into folders and files. Knowing how to use Python or another scripting language to interact with your operating system is a valuable skill to have as a developer.<\/p>\n","protected":false},"excerpt":{"rendered":"You can use the Python scripting language to interact with your operating system and navigate between files. The process is similar to using a command line interface. Python\u2019s get current directory, or Python os.getcwd(), allows you to change directories and move files around. This article covers what get current directory is and how to use&hellip;","protected":false},"author":112,"featured_media":29553,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-29552","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Use the Python Get Current Directory Method | Career Karma<\/title>\n<meta name=\"description\" content=\"The Python os.getcwd() method allows you to access your operating system and check your code file&#039;s location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use the Python Get Current Directory Method\" \/>\n<meta property=\"og:description\" content=\"The Python os.getcwd() method allows you to access your operating system and check your code file&#039;s location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-10T18:44:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:34:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"710\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Karen Schwarze\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Karen Schwarze\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/\"},\"author\":{\"name\":\"Karen Schwarze\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ef4d43031318a0eeb598a44661f304cc\"},\"headline\":\"How to Use the Python Get Current Directory Method\",\"datePublished\":\"2021-03-10T18:44:16+00:00\",\"dateModified\":\"2022-07-20T15:34:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/\"},\"wordCount\":595,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tyler-b-72vLY-QMd3w-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/\",\"name\":\"How to Use the Python Get Current Directory Method | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tyler-b-72vLY-QMd3w-unsplash.jpg\",\"datePublished\":\"2021-03-10T18:44:16+00:00\",\"dateModified\":\"2022-07-20T15:34:55+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ef4d43031318a0eeb598a44661f304cc\"},\"description\":\"The Python os.getcwd() method allows you to access your operating system and check your code file's location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tyler-b-72vLY-QMd3w-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/tyler-b-72vLY-QMd3w-unsplash.jpg\",\"width\":1020,\"height\":710},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-python-get-current-directory\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/python\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use the Python Get Current Directory Method\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ef4d43031318a0eeb598a44661f304cc\",\"name\":\"Karen Schwarze\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"caption\":\"Karen Schwarze\"},\"description\":\"A former educator and edtech marketer, Karen is passionate about computer science education. She\u2019s particularly fascinated by the connections between coding languages and English language\\\/literature structures. This led her to build an edtech app where users create Python programs by manipulating literary devices like similes and metaphors. When she\u2019s not writing, Karen enjoys watching comedy and reading books about history.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/karen-schwarze\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use the Python Get Current Directory Method | Career Karma","description":"The Python os.getcwd() method allows you to access your operating system and check your code file's location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.","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:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/","og_locale":"en_US","og_type":"article","og_title":"How to Use the Python Get Current Directory Method","og_description":"The Python os.getcwd() method allows you to access your operating system and check your code file's location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.","og_url":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-03-10T18:44:16+00:00","article_modified_time":"2022-07-20T15:34:55+00:00","og_image":[{"width":1020,"height":710,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg","type":"image\/jpeg"}],"author":"Karen Schwarze","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Karen Schwarze","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/"},"author":{"name":"Karen Schwarze","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ef4d43031318a0eeb598a44661f304cc"},"headline":"How to Use the Python Get Current Directory Method","datePublished":"2021-03-10T18:44:16+00:00","dateModified":"2022-07-20T15:34:55+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/"},"wordCount":595,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/","url":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/","name":"How to Use the Python Get Current Directory Method | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg","datePublished":"2021-03-10T18:44:16+00:00","dateModified":"2022-07-20T15:34:55+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ef4d43031318a0eeb598a44661f304cc"},"description":"The Python os.getcwd() method allows you to access your operating system and check your code file's location. Using Python to interact with your OS can be a useful strategy over clicking through files via your graphical user interface.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tyler-b-72vLY-QMd3w-unsplash.jpg","width":1020,"height":710},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-python-get-current-directory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"How to Use the Python Get Current Directory Method"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ef4d43031318a0eeb598a44661f304cc","name":"Karen Schwarze","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","caption":"Karen Schwarze"},"description":"A former educator and edtech marketer, Karen is passionate about computer science education. She\u2019s particularly fascinated by the connections between coding languages and English language\/literature structures. This led her to build an edtech app where users create Python programs by manipulating literary devices like similes and metaphors. When she\u2019s not writing, Karen enjoys watching comedy and reading books about history.","url":"https:\/\/careerkarma.com\/blog\/author\/karen-schwarze\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29552","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/112"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29552"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29552\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/29553"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29552"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29552"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29552"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}