{"id":12784,"date":"2023-06-29T20:00:03","date_gmt":"2023-06-29T14:30:03","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=12784"},"modified":"2025-10-10T11:48:21","modified_gmt":"2025-10-10T11:48:21","slug":"covid-19-tracker-using-python","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/","title":{"rendered":"Covid 19 Tracker Using Python"},"content":{"rendered":"<p>The Covid-19 pandemic has significantly impacted global health, economies, and daily lives. Keeping track of the latest Covid-19 statistics has become crucial for individuals, healthcare professionals, and policymakers alike. In this project, we will develop a Covid-19 Tracker using Python, which will provide up-to-date information on the pandemic&#8217;s global statistics.<\/p>\n<h2>Introduction<\/h2>\n<p>The Covid-19 Tracker will utilize the power of Python programming language and <a href=\"https:\/\/www.techtarget.com\/searchapparchitecture\/definition\/application-program-interface-API#:~:text=An%20application%20programming%20interface%20(API,contexts%20and%20across%20multiple%20channels.\">APIs (Application Programming Interfaces)<\/a> to fetch real-time data from reliable sources. We will make use of the requests library in Python to make API calls and retrieve the necessary information. The project will focus on displaying key statistics such as the total cases, deaths, recoveries, and other relevant information, helping users stay informed about the current situation.<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_58151\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/tNSPMHLBoFM?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&\" class=\"__youtube_prefs__  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<p>&nbsp;<\/p>\n<h2>Objective<\/h2>\n<p>The objective of the Covid-19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic. It aims to help users track the spread of the virus, understand the impact on different regions, and make informed decisions regarding safety measures, health resources, and prevention strategies.<\/p>\n<h2>Requirements<\/h2>\n<p>1. You must have a basic understanding of Python.<\/p>\n<p>2. Any text editor or<a href=\"https:\/\/code.visualstudio.com\/\"> Visual Studio Code<\/a><\/p>\n<p>3. To run and build the Python code on your machine, you will need a <a href=\"https:\/\/docs.python.org\/3\/library\/venv.html\">Python Environment<\/a>.<\/p>\n<p>4. <a href=\"https:\/\/disease.sh\/\">disease.sh<\/a> API to fetch real-time data.<\/p>\n<h2>Source Code<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">\/\/importing required libraries\r\n\r\nimport tkinter as tk\r\n\r\nimport requests\r\n\r\nimport datetime\r\n\r\n\/\/creating a function called getCovidData() which includes HHTP link\r\n\r\ndef getCovidData():\r\n\r\napi = \"https:\/\/disease.sh\/v3\/covid-19\/all\" \/\/API of disease.sh\r\n\r\njson_data = requests.get(api).json() \/\/requesting to get the above API data through JSON file\r\n\r\ntotal_cases = str(json_data['cases']) \/\/assigning total cases as mentioned in the api\r\n\r\ntotal_deaths = str(json_data['deaths']) \/\/ assigning total deaths as mentioned in the api\r\n\r\ntoday_cases = str(json_data['todayCases']) \/\/ assigning today cases as mentioned in the api\r\n\r\ntoday_deaths = str(json_data['todayDeaths']) \/\/ assigning total deaths as mentioned in the api\r\n\r\ntoday_recovered = str(json_data['todayRecovered']) \/\/ assigning today recovered as mentioned in the api\r\n\r\nupdated_at = json_data['updated'] \/\/used to update the given details using time\r\n\r\ndate = datetime.datetime.fromtimestamp(updated_at\/1e3)\r\n\r\n\/\/ retrieving the details from API and displaying the results in Tkinter\r\n\r\nlabel.config(text = \"Total Cases: \"+total_cases+\r\n\r\n\"\\n\"+\"Total Deaths: \"+total_deaths+\r\n\r\n\"\\n\"+\"Today Cases: \"+today_cases+\r\n\r\n\"\\n\"+\"Today Deaths: \"+today_deaths+\r\n\r\n\"\\n\"+\"Today Recovered: \"+today_recovered)\r\n\r\n\/\/ current date is displayed after displaying the required information\r\n\r\nlabel2.config(text = date)\r\n\r\n\/\/declaring tkinter size format in the output\r\n\r\nwindows = tk.Tk()\r\n\r\nwindows.geometry(\"400x400\")\r\n\r\nwindows.title(\"Corona Tracker App\")\r\n\r\nf = (\"poppins\", 15, \"bold\") \/\/alignment of text\r\n\r\n\/\/creating a Button to Load the information and to display once again\r\n\r\nbutton = tk.Button(windows, font = f, text = \"Load\", command = getCovidData)\r\n\r\nbutton.pack(pady = 20)\r\n\r\nlabel = tk.Label(windows, font = f)\r\n\r\nlabel.pack(pady=20)\r\n\r\nlabel2 = tk.Label(windows, font = 8)\r\n\r\nlabel2.pack()\r\n\r\n\/\/function to display the result\r\n\r\ngetCovidData()\r\n\r\n\/\/function to display tkinter window\r\n\r\nwindows.mainloop()<\/pre>\n<h2>Explanation of the Code<\/h2>\n<p>1. The Covid-19 Tracker Using Python involves the Tkinter library to create a GUI application.<\/p>\n<p>2. We created this application to track COVID-19 statistics. We retrieved data including total cases, total deaths, today&#8217;s cases, today&#8217;s deaths, and today&#8217;s recoveries.<\/p>\n<p>3. We displayed the data in a label widget on the GUI. We have set a specific size and titled it &#8220;<em>Corona Tracker App<\/em>&#8220;. It consists of a &#8220;<em>Load<\/em>&#8221; button, a label to display the COVID-19 data, and another label to show the timestamp of the last update.<\/p>\n<p>4. We defined the `<em>getCovidData()<\/em>` function to execute when clicking the &#8220;<em>Load<\/em>&#8221; button. We have made an API request to retrieve the JSON data inside the function.<\/p>\n<p>5. The relevant data fields are extracted from the JSON response. The label widget is updated with the retrieved data. And the timestamp is converted from milliseconds to a human-readable date format.<\/p>\n<p>6. The second label widget is updated with the timestamp. The `<em>getCovidData()<\/em>` function is called once initially to display the data.<\/p>\n<h2>Output<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-17531 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/06\/word-image-12784-1.webp\" alt=\"Covid 19 Tracker using Python\" width=\"556\" height=\"590\" \/><\/p>\n<p><strong>Figure 1:<\/strong>\u00a0Covid-19 details extracted using disease.sh API<\/p>\n<h2>Conclusion<\/h2>\n<p>Hence, we successfully created a Covid 19 Tracker using Python. Retrieving data from a reliable API source enables users to access and monitor real-time COVID-19 statistics. This simple graphical interface facilitates tracking cases, deaths, and recoveries and provides a timestamp for the last update. Such tools are vital in keeping people informed and empowering them to make informed decisions in the face of the ongoing pandemic.<\/p>\n<p><a href=\"https:\/\/rudelabs.ai\/blogs\/category\/python\/\"><em><strong>More Python Projects&gt;&gt;&gt;<\/strong><\/em><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic.<\/p>\n","protected":false},"author":1,"featured_media":12785,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[4,7,5],"tags":[],"class_list":["post-12784","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-coding-basics","category-coding-projects","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Covid 19 Tracker Using Python - RUDE LABS<\/title>\n<meta name=\"description\" content=\"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Covid 19 Tracker Using Python - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-29T14:30:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T11:48:21+00:00\" \/>\n<meta name=\"author\" content=\"rudelabs.ai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:site\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rudelabs.ai\" \/>\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:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Covid 19 Tracker Using Python\",\"datePublished\":\"2023-06-29T14:30:03+00:00\",\"dateModified\":\"2025-10-10T11:48:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\"},\"wordCount\":474,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Coding Basics\",\"Coding Projects\",\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\",\"name\":\"Covid 19 Tracker Using Python - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-06-29T14:30:03+00:00\",\"dateModified\":\"2025-10-10T11:48:21+00:00\",\"description\":\"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Covid 19 Tracker Using Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"name\":\"RUDE LABS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\",\"name\":\"RUDE LABS\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"contentUrl\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"width\":2459,\"height\":414,\"caption\":\"RUDE LABS\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/rudelabs_in\",\"https:\/\/www.linkedin.com\/company\/ru-delabs\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\",\"name\":\"rudelabs.ai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"caption\":\"rudelabs.ai\"},\"sameAs\":[\"https:\/\/rudelabs.ai\/blogs\"],\"url\":\"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Covid 19 Tracker Using Python - RUDE LABS","description":"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic","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:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/","og_locale":"en_US","og_type":"article","og_title":"Covid 19 Tracker Using Python - RUDE LABS","og_description":"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic","og_url":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/","og_site_name":"RUDE LABS","article_published_time":"2023-06-29T14:30:03+00:00","article_modified_time":"2025-10-10T11:48:21+00:00","author":"rudelabs.ai","twitter_card":"summary_large_image","twitter_creator":"@rudelabs_in","twitter_site":"@rudelabs_in","twitter_misc":{"Written by":"rudelabs.ai","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Covid 19 Tracker Using Python","datePublished":"2023-06-29T14:30:03+00:00","dateModified":"2025-10-10T11:48:21+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/"},"wordCount":474,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage"},"thumbnailUrl":"","articleSection":["Coding Basics","Coding Projects","Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/","url":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/","name":"Covid 19 Tracker Using Python - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-06-29T14:30:03+00:00","dateModified":"2025-10-10T11:48:21+00:00","description":"The objective of the Covid 19 Tracker using Python is to provide accurate and up-to-date information about the COVID-19 pandemic","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/covid-19-tracker-using-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Covid 19 Tracker Using Python"}]},{"@type":"WebSite","@id":"https:\/\/rudelabs.ai\/blogs\/#website","url":"https:\/\/rudelabs.ai\/blogs\/","name":"RUDE LABS","description":"","publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rudelabs.ai\/blogs\/#organization","name":"RUDE LABS","url":"https:\/\/rudelabs.ai\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","contentUrl":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","width":2459,"height":414,"caption":"RUDE LABS"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/rudelabs_in","https:\/\/www.linkedin.com\/company\/ru-delabs\/"]},{"@type":"Person","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894","name":"rudelabs.ai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","caption":"rudelabs.ai"},"sameAs":["https:\/\/rudelabs.ai\/blogs"],"url":"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/"}]}},"_links":{"self":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/12784","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/comments?post=12784"}],"version-history":[{"count":3,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/12784\/revisions"}],"predecessor-version":[{"id":17638,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/12784\/revisions\/17638"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=12784"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=12784"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=12784"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}