

{"id":108120,"date":"2022-03-10T09:00:26","date_gmt":"2022-03-10T03:30:26","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=108120"},"modified":"2026-06-01T14:00:03","modified_gmt":"2026-06-01T08:30:03","slug":"read-data-from-google-sheets-using-python","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/","title":{"rendered":"Read Data From Google Sheets using Python"},"content":{"rendered":"<p>In this project, we will read the data from Google Sheets using Python. In addition to this, we will create a GUI window where this data will be displayed.<\/p>\n<p>The user will have the option to enter the name of the google sheet that the user wants to read. So let\u2019s get started.<\/p>\n<h3>Project to Read Data From Google Sheets using Python Details<\/h3>\n<p>The objective of the project is to create a GUI Window that will display data. This displayed data is read from a google sheet. For creating the GUI Window, we are using the Tkinter Module. And we are going to use the gspread library and oauth2client.service_account to create a connection between the python program and the google sheet and display the content.<\/p>\n<h3>Project Prerequisites<\/h3>\n<p>We will have to create a project and do some setup before going to the code. Let\u2019s look at the setup we need to make step by step.<\/p>\n<p>1. Create a project &#8211; Let us create a project in google drive. You need to give a suitable name to your project<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-project.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-108165\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-project.webp\" alt=\"create project\" width=\"1366\" height=\"656\" \/><\/a><\/p>\n<p>2. Enable the APIs &#8211; Now we will enable two APIs &#8211; Google drive API and Google Sheets API. Search these and click on the enable button. This is how an enabled api looks like<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/enable-api.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-108166\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/enable-api.webp\" alt=\"enable api\" width=\"434\" height=\"359\" \/><\/a><\/p>\n<p>3. Create Credentials &#8211; Click on create credentials and create a Json Key<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-credentials.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-108167\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-credentials.webp\" alt=\"create credentials\" width=\"794\" height=\"307\" \/><\/a><\/p>\n<p>4. Create a Json Key &#8211; As soon as we create a Json key, a json file gets downloaded automatically to the system. Save this json file where the code is saved already<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-json-key.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-108169\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/create-json-key.webp\" alt=\"create json key\" width=\"1008\" height=\"514\" \/><\/a><\/p>\n<p>5. Access to the google sheet &#8211; Now you need to go to the google sheet and give access to the client_email which is given in the json file.<\/p>\n<p>We are done with the initial setup here.<\/p>\n<p>Now for the coding part, we need to import these modules using the commands given along with them.<\/p>\n<ul>\n<li>Tkinter Module &#8211; pip install tkinter<\/li>\n<li>Gspread Module &#8211; pip install gspread<\/li>\n<\/ul>\n<p>Now that we are done with installing all the modules. Let\u2019s have a look at the code.<\/p>\n<h3>Download Project Source Code<\/h3>\n<p>For the implementation of Read Data From Google Sheets using Python, please download the code from the following link: <a href=\"https:\/\/drive.google.com\/file\/d\/1Mwe811FYRh0kXq0hT5Bu4T1cxCmfgHQg\/view?usp=drive_link\"><strong>Python Read Data From Google Sheets Project<\/strong><\/a><\/p>\n<h3>Steps to Read Data From a Google Sheet using Python<\/h3>\n<p>These are the steps to build this project.<\/p>\n<ol>\n<li>Importing the required modules<\/li>\n<li>Creating the GUI Window<\/li>\n<li>Reading the Data<\/li>\n<li>Widgets &#8211; Button, Entry, and Message.<\/li>\n<\/ol>\n<p>Let\u2019s have a look at each step in detail<\/p>\n<h4>1. Importing the required Libraries and Modules:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">#importing libraries\r\nimport gspread\r\nfrom oauth2client.service_account import ServiceAccountCredentials\r\nimport tkinter as tk\r\nfrom tkinter import *\r\n<\/pre>\n<ul>\n<li>Tkinter Module &#8211; This module helps us to create GUI for our project. Tkinter Module has many inbuilt functions like Button(), Entry(), Label() etc which will be used to create different widgets in our GUI window.<\/li>\n<li>Gspread &#8211; Gspread is an API for Google Sheets. This will help us open and read the contents of the Google Sheet.<\/li>\n<li>ServiceAccountCredentials &#8211; This gives us access and makes a copy of the credentials.<\/li>\n<\/ul>\n<h4>2. Creating a GUI Window:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">root = Tk()\r\nroot.geometry('600x650')#geometry of window\r\nroot.title('DataFlair')#title for window\r\nLabel(root,text='Lets Display the Content of This File',font='arial 10').pack()\r\n<\/pre>\n<ul>\n<li>Now we are going to create the GUI Window for our project. Using the Tk() method, we have created a window and given it the name root.<\/li>\n<li>After creating the window, we have specified the size and given a title to our window using the geometry() and title() functions respectively.<\/li>\n<li>Label() &#8211; Label is a widget that helps us to display a text on our window. Inside a Label() function, we can define the size, font, color, background color, foreground color etc of the text we are displaying.<\/li>\n<\/ul>\n<h4>3. Reading the Data from Google Sheet:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">def read_the_sheet():\r\n    sheet_to_display=s.get()#get the value of s\r\n# use creds to create a client to interact with the Google Drive API\r\n    scope = ['https:\/\/spreadsheets.google.com\/feeds','https:\/\/www.googleapis.com\/auth\/drive']\r\n    creds = ServiceAccountCredentials.from_json_keyfile_name('json file.json', scope)\r\n    client = gspread.authorize(creds)\r\n# Find a workbook by name and open the first sheet\r\n# Make sure you use the right name here.\r\n    sheet = client.open(sheet_to_display).sheet1\r\n# Extract and print all of the values\r\n    display_record = sheet.get_all_records()\r\n    for i in display_record:\r\n        Message(root,text=i).pack()#display the details in sheet\r\n<\/pre>\n<ul>\n<li>We have created a function that will be triggered and will read the data from the Google Sheet.<\/li>\n<li>get() &#8211; Using the get method we get the name of the google sheet entered by the user and save it in another variable (sheet_to_display).<\/li>\n<li>Scope will define the scope of our application. from_json_keyfile_name() application helps us adding the json file and adding the credentials to the code.<\/li>\n<li>authorize() &#8211; Here we authorize the sheet. After these steps, we have established a connection between the client and the google sheet.<\/li>\n<li>open() &#8211; After establishing the connection, using the open() function we are going to open the sheet.<\/li>\n<li>get_all_records() &#8211; Using this method, we read all the details of the file.<\/li>\n<li>To display the details in the file we make a loop and using the Message() we display the record in the google sheet row-wise.<\/li>\n<\/ul>\n<h4>4. Create Entry and Button:<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\"> \r\nEntry(root,textvariable=s).pack()#entry field\r\nButton(root,text='Display',bg='red',command=read_the_sheet).pack()#button widget on the window\r\n<\/pre>\n<p>Entry() &#8211; This method will help us create an Entry Field where the user will enter the name of the google sheet that needs to be read. Textvariable = s means that whatever value is entered by the user is saved in the variable s.<\/p>\n<p>Button() &#8211; This method will help us create a Button on the Window. Whenever this button is clicked the function to read data is triggered. Same as in the Label, we can specify the font, size, color etc of the button.<\/p>\n<p>pack() &#8211; To display each widget of this project we use the pack() method. The pack() method is used to display without specifying the x and y coordinates.<\/p>\n<p>We have finally completed the project. Now let us have a look at the output.<\/p>\n<h3>Python Read Data From Google Sheets Output<\/h3>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets-output.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-108164\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets-output.webp\" alt=\"python read data from google sheets output\" width=\"599\" height=\"672\" \/><\/a><\/p>\n<h3>Summary<\/h3>\n<p>We have successfully Read Data from the Google Sheets using Python. For creating the GUI of the project we used Tkinter Module. And we have done a little setup and using oauth2 library, we have established connection with the google sheet. In this way now we know how to read data from a google sheet using Python.<span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:2583,&quot;href&quot;:&quot;https:\\\/\\\/drive.google.com\\\/file\\\/d\\\/1Mwe811FYRh0kXq0hT5Bu4T1cxCmfgHQg\\\/view?usp=drive_link&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20260601084448\\\/https:\\\/\\\/drive.google.com\\\/file\\\/d\\\/1Mwe811FYRh0kXq0hT5Bu4T1cxCmfgHQg\\\/view?usp=drive_link&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-06-02 07:15:42&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-06 07:17:07&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-11 03:47:34&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-06-11 03:47:34&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this project, we will read the data from Google Sheets using Python. In addition to this, we will create a GUI window where this data will be displayed. The user will have the&#46;&#46;&#46;<\/p>\n","protected":false},"author":5,"featured_media":108170,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[46],"tags":[26678,21082,22734,21095,21099,26667],"class_list":["post-108120","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python-google-sheets","tag-python-project","tag-python-project-for-beginners","tag-python-project-ideas","tag-python-project-with-source-code","tag-read-data-from-google-sheets-using-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Read Data From Google Sheets using Python - DataFlair<\/title>\n<meta name=\"description\" content=\"Develop Python project to Read Data From Google Sheets using Tkinter module for GUI &amp; Gspread to open &amp; read the contents of the Google Sheet.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Read Data From Google Sheets using Python - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Develop Python project to Read Data From Google Sheets using Tkinter module for GUI &amp; Gspread to open &amp; read the contents of the Google Sheet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-10T03:30:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-01T08:30:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Read Data From Google Sheets using Python - DataFlair","description":"Develop Python project to Read Data From Google Sheets using Tkinter module for GUI & Gspread to open & read the contents of the Google Sheet.","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:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/","og_locale":"en_US","og_type":"article","og_title":"Read Data From Google Sheets using Python - DataFlair","og_description":"Develop Python project to Read Data From Google Sheets using Tkinter module for GUI & Gspread to open & read the contents of the Google Sheet.","og_url":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2022-03-10T03:30:26+00:00","article_modified_time":"2026-06-01T08:30:03+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp","type":"image\/webp"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823"},"headline":"Read Data From Google Sheets using Python","datePublished":"2022-03-10T03:30:26+00:00","dateModified":"2026-06-01T08:30:03+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/"},"wordCount":948,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp","keywords":["python google sheets","Python project","python project for beginners","python project ideas","python project with source code","Read Data From Google Sheets using Python"],"articleSection":["Python Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/","url":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/","name":"Read Data From Google Sheets using Python - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp","datePublished":"2022-03-10T03:30:26+00:00","dateModified":"2026-06-01T08:30:03+00:00","description":"Develop Python project to Read Data From Google Sheets using Tkinter module for GUI & Gspread to open & read the contents of the Google Sheet.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2022\/03\/python-read-data-from-google-sheets.webp","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/read-data-from-google-sheets-using-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Python Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/python\/"},{"@type":"ListItem","position":3,"name":"Read Data From Google Sheets using Python"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team creates expert-level guides on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our goal is to empower learners with easy-to-understand content. Explore our resources for career growth and practical learning.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam1\/"}]}},"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/108120","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=108120"}],"version-history":[{"count":5,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/108120\/revisions"}],"predecessor-version":[{"id":148666,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/108120\/revisions\/148666"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/108170"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=108120"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=108120"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=108120"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}