{"id":100256,"date":"2026-02-05T17:05:02","date_gmt":"2026-02-05T11:35:02","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=100256"},"modified":"2026-03-02T09:52:31","modified_gmt":"2026-03-02T04:22:31","slug":"what-is-streamlit-in-python","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-is-streamlit-in-python\/","title":{"rendered":"What is Streamlit in Python? A Beginner-Friendly Guide"},"content":{"rendered":"\n<p>If you\u2019re learning Python and you\u2019ve reached a point where scripts and terminal outputs feel limiting, here\u2019s the thing: Streamlit is often the bridge between \u201cI wrote some Python\u201d and \u201cI built something people can actually use.\u201d<\/p>\n\n\n\n<p>Streamlit lets you turn plain Python code into interactive web apps with almost zero frontend work. No HTML, no CSS, no JavaScript. Just Python.<\/p>\n\n\n\n<p>This article is written for Python beginners who understand basic concepts like variables, functions, and libraries, and want to build something visual and practical. We\u2019ll walk through what Streamlit is, how it works, why it exists, and how you can start using it confidently. So, let us get started!<\/p>\n\n\n\n<p><strong>Quick Answer:<\/strong><strong><br><\/strong>Streamlit is an open-source Python library that lets you build interactive web applications directly from Python scripts, without needing HTML, CSS, or JavaScript, making it ideal for beginners who want to turn data or logic into visual, shareable apps quickly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is Streamlit in Python?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-1200x630.webp\" alt=\"What is Streamlit in Python?\" class=\"wp-image-102822\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-1200x630.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-300x158.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-768x403.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-1536x806.webp 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-2048x1075.webp 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/What-Is-Streamlit-in-Python_@2x-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Streamlit was launched in 2019 as a tool for <strong>data scientists and developers<\/strong> to create web apps using only Python. <a href=\"https:\/\/streamlit.io\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Streamlit<\/a> is an open-source Python framework used to build interactive web applications directly from Python scripts.<\/p>\n\n\n\n<p>In simple terms:<\/p>\n\n\n\n<ul>\n<li>You write <a href=\"https:\/\/www.guvi.in\/hub\/python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python<\/a> code<\/li>\n\n\n\n<li>Streamlit runs it<\/li>\n\n\n\n<li>That code instantly becomes a web app<\/li>\n<\/ul>\n\n\n\n<p>You don\u2019t design pages. You don\u2019t manage routes. You don\u2019t worry about frontend frameworks. You focus on <strong>logic and data<\/strong>, and Streamlit handles the UI layer for you.<\/p>\n\n\n\n<p>Its core idea is that <em>\u201capps were just scripts\u201d<\/em>: you don\u2019t need to learn <a href=\"https:\/\/www.guvi.in\/blog\/html-tutorial-guide-for-web-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">HTML<\/a>\/JS \u2013 instead, you write Python code and Streamlit turns it into an interactive webpage.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Use Streamlit?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-1200x630.webp\" alt=\"Why Use Streamlit?\" class=\"wp-image-102823\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-1200x630.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-300x158.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-768x403.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-1536x806.webp 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-2048x1075.webp 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Why-Use-Streamlit_-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>You might ask, <em>\u201cWhy would I use Streamlit instead of just writing a script or notebook?\u201d<\/em> The biggest advantages are <strong>interactivity<\/strong> and <strong>simplicity<\/strong>. With Streamlit, your Python script instantly becomes a web app with minimal effort.<\/p>\n\n\n\n<ul>\n<li><strong>Instant visual feedback:<\/strong> When you run a Streamlit app, any code that draws charts or writes output is shown live in the browser. You can place text, plots, data tables, and widgets on it using st. commands.<br><\/li>\n\n\n\n<li><strong>Automatic updates:<\/strong> Streamlit watches for changes. Whenever you edit and save your script (or a user manipulates a widget), Streamlit will <em>rerun the entire script<\/em> from the top. This reactive flow ensures the app UI is always up-to-date with the code.<br><\/li>\n\n\n\n<li><strong>Built-in components:<\/strong> Streamlit comes with many ready-made UI elements for data apps. This includes layout helpers, text formatting, charts, images, and widgets (sliders, buttons, file uploaders, etc.).<br><\/li>\n\n\n\n<li><strong>No web framework needed:<\/strong> Unlike general web frameworks, you don\u2019t have to set up routes, HTML templates, or styling. One of Streamlit\u2019s selling points is that you can <em>\u201cbuild interactive web apps using only Python\u201d<\/em>.<br><\/li>\n\n\n\n<li><strong>Easy sharing and deployment:<\/strong> Once an app is written, you can share it as easily as sharing code. Streamlit offers a <strong>free community cloud<\/strong> where you push your GitHub repo and deploy with one click.<br><\/li>\n\n\n\n<li><strong>Great Community: <\/strong>Streamlit\u2019s community and adoption have grown rapidly. By late 2021, it had millions of users and downloads. In fact, by 2021 it saw <strong>4.5 million downloads<\/strong> and <strong>16,000 stars on GitHub<\/strong>; by 2023 it reported over <strong>20,000 GitHub stars<\/strong> and <strong>10 million app views<\/strong>, with companies like Uber, Spotify, NASA, and WHO using it.<\/li>\n<\/ul>\n\n\n\n<p>In short, Streamlit is popular because it lets <em>you<\/em> go from Python script to a shareable interactive app in minutes, all with minimal effort.&nbsp;<\/p>\n\n\n\n<p>If you want to read more about how Python works and its use cases, consider reading HCL GUVI\u2019s Free <a href=\"https:\/\/www.guvi.in\/mlp\/python-ebook?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=streamlit-in-python\" target=\"_blank\" rel=\"noreferrer noopener\">Python eBook<\/a>: A Beginner&#8217;s Guide to Coding &amp; Beyond, which covers the key concepts of Python, including OOPs, File Handling, and even database connectivity.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Getting Started with Streamlit<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-1200x630.webp\" alt=\"Getting Started with Streamlit\" class=\"wp-image-102824\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-1200x630.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-300x158.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-768x403.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-1536x806.webp 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-2048x1075.webp 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Getting-Started-with-Streamlit-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Getting started is very simple.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Install Streamlit.&nbsp;<\/strong><\/h3>\n\n\n\n<p>In a terminal or command prompt, run:<\/p>\n\n\n\n<p><code>pip install streamlit<\/code><\/p>\n\n\n\n<p>This installs the Streamlit library (along with its dependencies) into your Python environment. It works with any Python setup (virtualenv, Conda, etc.).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Write a Streamlit script.&nbsp;<\/strong><\/h3>\n\n\n\n<p>Create a new Python file (e.g. app.py). At the top, import Streamlit: import streamlit as st. Then you can use Streamlit commands in that script to build your interface. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import streamlit as st\n\nst.title(\"My First Streamlit App\")\n\nst.write(\"Hello, welcome to my app!\")\n\nx = st.slider(\"Select a value\", 0, 100, 50)\n\nst.write(f\"You selected {x}\")<\/code><\/pre>\n\n\n\n<p>Each st. function adds something to the page. In this snippet, st.title sets a large title, st.write displays text, and st.slider creates an interactive slider. (We\u2019ll explain more of these commands below.)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Run your app.&nbsp;<\/strong><\/h3>\n\n\n\n<p>In the terminal, navigate to the directory of your script and type:<\/p>\n\n\n\n<p><code>streamlit run app.py<\/code><\/p>\n\n\n\n<p>This command starts a local web server and opens your app in the browser. You should see the title, text, and slider from the code above. Try moving the slider and notice that the page updates the selected value. Under the hood, Streamlit reruns your script each time you change something. You can stop the app by pressing Ctrl+C in the terminal.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Develop interactively.&nbsp;<\/strong><\/h3>\n\n\n\n<p>With the app running, edit app.py in your editor (for example, change the title or add more widgets) and save. Streamlit will usually ask \u201cRerun app?\u201d \u2013 click \u201cAlways rerun\u201d (or it may auto-update). Your changes appear almost instantly in the browser.&nbsp;<\/p>\n\n\n\n<p>This tight feedback loop is a major feature: one doc notes that you \u201ctype some code, save it, try it out live, then type some more code, save it, try it out\u201d.<\/p>\n\n\n\n<p><em>If you are just now starting your journey on Python, then this blog is for you &#8211; <\/em><a href=\"https:\/\/www.guvi.in\/blog\/beginner-roadmap-for-python-basics-to-web-frameworks\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Python Beginner Roadmap: Basics to Web in 3 Months<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Building a Simple App<\/strong><\/h2>\n\n\n\n<p>Let\u2019s walk through a very basic example to see Streamlit in action:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Create app.py:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>import streamlit as st\n\nst.title(\"My First App\")\n\nst.write(\"This is a simple Streamlit application.\")\n\nnumber = st.slider(\"Pick a number\", 0, 100, 25)\n\nst.write(f\"You selected {number}\")<\/code><\/pre>\n\n\n\n<ul>\n<li>We import Streamlit (import streamlit as st).<br><\/li>\n\n\n\n<li>st.title and st.write add static text.<br><\/li>\n\n\n\n<li>st.slider creates a slider widget for user input.=<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Run the app:<\/strong><\/h3>\n\n\n\n<p>In the terminal, run:<br><code>streamlit run app.py<\/code><\/p>\n\n\n\n<p>The browser will open showing \u201cMy First App\u201d as a header, the explanatory text, and a slider. As you move the slider, the number displayed updates automatically. This interactivity happens without any extra wiring \u2013 Streamlit reruns the script behind the scenes whenever the slider value changes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Add more components:<\/strong><\/h3>\n\n\n\n<p>You can keep expanding the app. For example, add:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name = st.text_input(\"Enter your name\")\n\nif st.button(\"Greet\"):\n\n&nbsp;&nbsp;&nbsp;&nbsp;st.write(f\"Hello, {name}!\")<\/code><\/pre>\n\n\n\n<p>This adds a text box and a button. When the user types a name and clicks the button, the greeting appears. Again, this requires no web coding \u2013 just Python.<\/p>\n\n\n\n<p>Each new st. call you add will appear in your app in that order. This step-by-step code approach makes it very clear how the UI is built. According to the official tutorial, with just a handful of Streamlit commands, <em>\u201craw CSV files can be transformed into an interactive web app\u201d<\/em>, illustrating how little code is needed to go from data to a working app.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Tips and Best Practices For Using Streamlit in Python<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-1200x630.webp\" alt=\"Tips and Best Practices For Using Streamlit in Python\" class=\"wp-image-102825\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-1200x630.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-300x158.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-768x403.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-1536x806.webp 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-2048x1075.webp 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/03\/Tips-and-Best-Practices-For-Using-Streamlit-in-Python-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<ul>\n<li><strong>Run and Save Often:<\/strong> Keep Streamlit running while you code. It\u2019s best to split your screen or window so you can edit code in an editor on one side and immediately see changes in the browser. Save the Python file frequently; Streamlit detects the save and asks if it should rerun. For convenience, enable <em>\u201cAlways rerun\u201d<\/em> so you don\u2019t have to confirm each time.<br><\/li>\n\n\n\n<li><strong>Use Markdown:<\/strong> st.markdown() lets you write <strong>Markdown<\/strong> text, which can include headings, bold\/italic text, lists, and links. This is handy for formatting instructions or explanations in your app.<br><\/li>\n\n\n\n<li><strong>Cache Data:<\/strong> If your app loads or computes expensive data (like reading a large file or training a model), use @st.cache_data (or older @st.cache) to cache the result. This way, Streamlit won\u2019t redo the computation on every rerun, which keeps the app responsive. (This is an advanced feature you can learn about later.)<br><\/li>\n\n\n\n<li><strong>Check the Console:<\/strong> Streamlit outputs helpful logs in the terminal. If something breaks, look at the terminal for error messages. Also, Streamlit shows your script name and lines it is running in the browser\u2019s status bar; this can help with debugging.<br><\/li>\n\n\n\n<li><strong>Keep It Simple:<\/strong> For a beginner-friendly experience, stick to fundamental features first. Don\u2019t try to implement complex web designs immediately. Focus on quickly turning your Python logic into visible elements.<\/li>\n<\/ul>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\"><strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> <br \/><br \/><b>LLMs Can Write Your App:<\/b> Streamlit is so straightforward that even AI can use it easily. The official Streamlit site notes \u201cLLMs are genius at writing apps. Streamlit is a breeze for humans and AI alike\u201d \u2013 they demonstrated that ChatGPT can generate a Streamlit app in seconds. (In practice, you can indeed prompt GPT to help write Streamlit code for you.)<\/div>\n\n\n\n<p>If you want to learn more about Python through a structured course material, consider enrolling in HCL GUVI\u2019s Free Self-Paced IITM Pravartak Certified<a href=\"https:\/\/www.guvi.in\/courses\/programming\/python\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=streamlit-in-python\" target=\"_blank\" rel=\"noreferrer noopener\"> Python Course<\/a> that lets you start from scratch and gradually move towards the level where you can write programs to gather, clean, analyze, and visualize data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In conclusion, Streamlit turns your Python scripts into interactive web apps with minimal effort. It\u2019s open-source, designed for data people, and comes with a rich set of UI elements out of the box.&nbsp;<\/p>\n\n\n\n<p>To use it, you simply install it via pip, write a script using import streamlit as st, and include commands like st.title(), st.write(), charts, and widgets. Running streamlit run your_app.py launches the app locally. You can then explore your data and code in an iterative, visual way.<\/p>\n\n\n\n<p>If you\u2019ve learned the basics here, you can now start experimenting: try building a small dashboard for your data or a simple ML model demo. Streamlit\u2019s documentation and community gallery have many more examples to inspire you. As you grow more comfortable, you can explore advanced features like caching, session state, or even deploying to Streamlit\u2019s cloud platform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1770209924869\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is Streamlit used for in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Streamlit is used to build interactive web applications using only Python. It\u2019s commonly used for data visualization, dashboards, and showcasing machine learning models without frontend development.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209927879\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. Is Streamlit good for Python beginners?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Streamlit is beginner-friendly because you don\u2019t need HTML, CSS, or JavaScript. If you know basic Python, you can start building apps almost immediately.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209931794\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. Do I need web development knowledge to use Streamlit?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No. Streamlit abstracts away frontend complexity. You write Python code, and Streamlit automatically handles the web interface and interactions.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209935973\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. How do I run a Streamlit app?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You run a Streamlit app using the command streamlit run app.py. This starts a local server and opens the app in your web browser.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770209940309\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Can Streamlit apps be deployed online for free?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Streamlit provides a free Community Cloud where you can deploy apps directly from GitHub and share them with others via a public link.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>If you\u2019re learning Python and you\u2019ve reached a point where scripts and terminal outputs feel limiting, here\u2019s the thing: Streamlit is often the bridge between \u201cI wrote some Python\u201d and \u201cI built something people can actually use.\u201d Streamlit lets you turn plain Python code into interactive web apps with almost zero frontend work. No HTML, [&hellip;]<\/p>\n","protected":false},"author":22,"featured_media":102820,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"1145","authorinfo":{"name":"Lukesh S","url":"https:\/\/www.guvi.in\/blog\/author\/lukesh\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/What-is-Streamlit-in-Python_-A-Beginner-Friendly-Guide-300x116.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/What-is-Streamlit-in-Python_-A-Beginner-Friendly-Guide.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100256"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=100256"}],"version-history":[{"count":6,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100256\/revisions"}],"predecessor-version":[{"id":102826,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100256\/revisions\/102826"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/102820"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=100256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=100256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=100256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}