{"id":86759,"date":"2023-02-20T09:00:22","date_gmt":"2023-02-20T03:30:22","guid":{"rendered":"https:\/\/techvidvan.com\/tutorials\/?p=86759"},"modified":"2023-02-20T09:00:22","modified_gmt":"2023-02-20T03:30:22","slug":"python-pandas-introduction","status":"publish","type":"post","link":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/","title":{"rendered":"Python Pandas Introduction"},"content":{"rendered":"<p><span style=\"font-weight: 400\">Pandas is an open-source library designed primarily for quickly and logically processing relational or labelled data. It offers a variety of data formats and methods for working with time series and numerical data. Pandas&#8217; users benefit from great performance, efficiency, and quick response.<\/span><\/p>\n<p><span style=\"font-weight: 400\">It was developed in 2008 by Wes McKinney, who utilizes Python to analyze data. All of the essential and advanced Python Pandas concepts, such as Numpy, Data Operation, and Time Series, are covered in our tutorial.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Data analysis requires several processing processes, including combining, cleaning, and restructuring. There are many tools available for rapid data processing, including Numpy, Scipy, Cython, and Panda. But we prefer utilizing Pandas because it&#8217;s quicker, simpler, and more expressive than using other tools.<\/span><\/p>\n<h3><span style=\"font-weight: 400\">Key Features of Python Pandas<\/span><\/h3>\n<p><span style=\"font-weight: 400\">1. It comes with a quick and effective DataFrame object with both standard and custom indexing.<\/span><\/p>\n<p><span style=\"font-weight: 400\">2. It is utilized to reshape and pivot data sets.<\/span><\/p>\n<p><span style=\"font-weight: 400\">3. Useful for aggregations and transformations, group by data.<\/span><\/p>\n<p><span style=\"font-weight: 400\">4. It is utilized for data integration and data alignment.<\/span><\/p>\n<p><span style=\"font-weight: 400\">5. Provide Time Series functionality.<\/span><\/p>\n<p><span style=\"font-weight: 400\">6. Process a range of data types in various formats, such as time series, tabular heterogeneous data, and matrix data.<\/span><\/p>\n<p><span style=\"font-weight: 400\">7. Multiple data set actions, such as subsetting, slicing, filtering, groupBy, re-ordering, and re-shaping should be handled.<\/span><\/p>\n<p><span style=\"font-weight: 400\">8. It works in conjunction with other libraries like SciPy and Scikit-Learn.<\/span><\/p>\n<p><span style=\"font-weight: 400\">9. This delivers quick performance, and You can utilize Cython to speed it up even further.<\/span><\/p>\n<h3><span style=\"font-weight: 400\">How does pandas fit into the toolbox for data science?<\/span><\/h3>\n<p><span style=\"font-weight: 400\">The pandas library is not only an essential part of the data science toolkit, but it also works in tandem with the other libraries in that group.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Because Pandas is built on top of the NumPy package, it makes use of or replicates a lot of NumPy&#8217;s structure. Data in pandas is frequently used to feed machine learning algorithms in Scikit-learn, graphing functions from Matplotlib, and statistical analysis in SciPy.<\/span><\/p>\n<h3><span style=\"font-weight: 400\">Benefits of Python Pandas<\/span><\/h3>\n<p><span style=\"font-weight: 400\">The following are some advantages of using pandas over other languages:<\/span><\/p>\n<p><strong>1. Data Representation: <\/strong><\/p>\n<p><span style=\"font-weight: 400\">Through its DataFrame and Series, it shows the data in a way appropriate for data analysis.<\/span><\/p>\n<p><strong>2. Clear code: <\/strong><\/p>\n<p><span style=\"font-weight: 400\">You may concentrate on the essential portion of the code thanks to Pandas&#8217; simple API. As a result, it offers the user concise and unambiguous code.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Before Pandas, Python could manage data preparation, but it only provided a limited set of capabilities for data analysis. When Pandas arrived, data analysis capabilities improved. No matter where the data originated from, it can do the five essential steps\u2014load, edit, prepare, model, and analyze\u2014that are required for data processing and analysis.<\/span><\/p>\n<h3><span style=\"font-weight: 400\">Python Pandas Installation<\/span><\/h3>\n<h4><span style=\"font-weight: 400\">1. Install and import Pandas<\/span><\/h4>\n<h4><span style=\"font-weight: 400\">Installing the Pandas package is simple. Use one of the following commands to install it after your terminal programme (for Mac users) or command line (for PC users) is open:<\/span><\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">conda install pandas\n\nOr\n\npip install pandas\n<\/pre>\n<p><span style=\"font-weight: 400\">Checking to see if pandas are installed in the Python folder is the first step in using it. If not, we must use the pip command to install it on our machine. Enter the command cmd in the search box, and then use the cd command to find where the python-pip file is installed. <\/span><\/p>\n<p><span style=\"font-weight: 400\">You must import the library after installing pandas on your computer. Typically, this module is imported as:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import pandas as pd<\/pre>\n<h3><span style=\"font-weight: 400\">Pandas are abbreviated as Pd in this sentence. Using the alias to import the library is not necessary, but it is useful to write less code each time a method or property is used.<\/span><\/h3>\n<h3>Pandas Building Blocks<\/h3>\n<p><span style=\"font-weight: 400\">In general, Pandas offers two data structures for data manipulation, namely:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Series\u00a0<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">DataFrame<\/span><\/li>\n<\/ul>\n<h4><span style=\"font-weight: 400\">1. Series:<\/span><\/h4>\n<p><span style=\"font-weight: 400\">It is described as a one-dimensional array that can store several forms of data. The term &#8220;index&#8221; refers to a series of row labels. Using the &#8220;series&#8221; method, we can quickly turn a list, a tuple, or a dictionary into a series. A Series cannot have more than one column. One parameter governs it:<\/span><\/p>\n<h4><span style=\"font-weight: 400\">Creating Series from Array:<\/span><\/h4>\n<p><span style=\"font-weight: 400\">A Pandas Series will be built in the real world by loading the datasets from pre-existing storage, which can be an Excel file, CSV file, or SQL database. The creation of the Pandas Series is possible from lists, dictionaries, scalar values, etc.<\/span><\/p>\n<p><strong>Example:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import pandas as pd\nimport numpy as np\n \n \n# Creating empty series\nser = pd.Series()\n   \nprint(ser)\n \n# simple array\ndata = np.array(['a', 'r', 'y', 'k', 's'])\n   \nser = pd.Series(data)\nprint(ser)\n<\/pre>\n<p><strong>Output:<\/strong><\/p>\n<p><span style=\"font-weight: 400\">Series([], dtype: float64)<\/span><\/p>\n<p><span style=\"font-weight: 400\">0\u00a0 \u00a0 a<\/span><\/p>\n<p><span style=\"font-weight: 400\">1\u00a0 \u00a0 r<\/span><\/p>\n<p><span style=\"font-weight: 400\">2\u00a0 \u00a0 y<\/span><\/p>\n<p><span style=\"font-weight: 400\">3\u00a0 \u00a0 k<\/span><\/p>\n<p><span style=\"font-weight: 400\">4\u00a0 \u00a0 s<\/span><\/p>\n<p><span style=\"font-weight: 400\">dtype: object<\/span><\/p>\n<h4><span style=\"font-weight: 400\">2. DataFrame<\/span><\/h4>\n<p><span style=\"font-weight: 400\">It utilizes a two-dimensional array with named axes and is one of the most used data structures in pandas (rows and columns). As a common method of storing data, DataFrame has two separate indexes: row index and column index. It has the following characteristics:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">The columns could be of various types, including int, bool, and others.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Similar to a series structure dictionary when both the columns and rows are indexed, it can be compared. It is referred to as &#8220;columns&#8221; in the case of columns and &#8220;index&#8221; in the case of rows.<\/span><\/li>\n<\/ul>\n<h4><span style=\"font-weight: 400\">Starting from scratch with DataFrames<\/span><\/h4>\n<p><span style=\"font-weight: 400\">A Pandas DataFrame will be formed in the real world by importing the datasets from the storage, which can be an Excel file, CSV file, or SQL database. A Pandas DataFrame can be produced from lists, dictionaries, and lists of dictionaries, among other sources.<\/span><\/p>\n<p><strong>Example 1:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import pandas as pd\n   \n# Calling DataFrame constructor\ndf = pd.DataFrame()\nprint(df)\n \n# list of strings\nlst = ['welcome', 'to', 'TechVidvan', 'Python', \n            'Pandas', 'tutorial']\n   \n# Calling DataFrame constructor on list\ndf = pd.DataFrame(lst)\nprint(df)\n<\/pre>\n<p><strong>Output:<\/strong><\/p>\n<p><span style=\"font-weight: 400\">Empty DataFrame<\/span><\/p>\n<p><span style=\"font-weight: 400\">Columns: []<\/span><\/p>\n<p><span style=\"font-weight: 400\">Index: []<\/span><\/p>\n<p><span style=\"font-weight: 400\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a00<\/span><\/p>\n<p><span style=\"font-weight: 400\">0 \u00a0 welcome<\/span><\/p>\n<p><span style=\"font-weight: 400\">1 \u00a0 \u00a0 to<\/span><\/p>\n<p><span style=\"font-weight: 400\">2 \u00a0 TechVidvan<\/span><\/p>\n<p><span style=\"font-weight: 400\">3\u00a0 \u00a0 \u00a0 Python<\/span><\/p>\n<p><span style=\"font-weight: 400\">4 \u00a0 Pandas<\/span><\/p>\n<p><span style=\"font-weight: 400\">5 \u00a0 \u00a0 tutorial<\/span><\/p>\n<p><strong>Example:2<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import pandas as pd  \n# a list of strings  \nx = ['Panda', 'Data']  \n  \n# Calling DataFrame constructor on list  \ndf = pd.DataFrame(x)  \nprint(df) \n<\/pre>\n<p><span style=\"font-weight: 400\"><strong>Output<\/strong>:<\/span><\/p>\n<p><span style=\"font-weight: 400\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a00<\/span><\/p>\n<p><span style=\"font-weight: 400\">0 \u00a0 Panda<\/span><\/p>\n<p><span style=\"font-weight: 400\">1\u00a0 \u00a0 Data<\/span><\/p>\n<h3><span style=\"font-weight: 400\">Essential DataFrame operations in Pandas<\/span><\/h3>\n<p><span style=\"font-weight: 400\">But have you ever wondered why? Pandas are frequently employed in data science. This is due to the fact that other data science libraries are utilised in addition to pandas. Numerous NumPy structures are utilised or duplicated in Pandas because it is built on top of the NumPy library. Pandas data is often used as the source for Matplotlib plotting routines, SciPy statistical analysis, and Scikit-learn machine learning methods.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Pandas can be run from any text editor, but Jupyter Notebook is recommended because Jupyter allows you to execute code in a specific cell rather than the entire file. Jupyter also makes it simple to view pandas data frames and plots.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Many of the tedious, time-consuming activities involved in working with data are made simple with Pandas, including:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">data purging<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Data entry<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Normalization of data<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">connects and combines<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">visualisation of data<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Statistic evaluation<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">data analysis<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">data loading and archiving<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">And a lot more<\/span><\/li>\n<\/ul>\n<h3><span style=\"font-weight: 400\">Conclusion<\/span><\/h3>\n<p><span style=\"font-weight: 400\">The Python Pandas module is a terrific tool. In this essay, what is possible using the Pandas API is merely the tip of the iceberg. You can begin to realise Pandas&#8217; full potential once you begin using it to manipulate data in Python. Knowing Pandas and how it works can help you become more proficient in Python data science by giving you more control over your input data. This will provide you more freedom and control over how you engage with and study data to achieve your programmatic, computational, or scientific goals.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Pandas is an open-source library designed primarily for quickly and logically processing relational or labelled data. It offers a variety of data formats and methods for working with time series and numerical data. Pandas&#8217;&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":87205,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1053],"tags":[4837],"class_list":["post-86759","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python-pandas"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Python Pandas Introduction - TechVidvan<\/title>\n<meta name=\"description\" content=\"Learn about Python Pandas library. Knowing Pandas and how it works can help you become more proficient in Python data science.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Pandas Introduction - TechVidvan\" \/>\n<meta property=\"og:description\" content=\"Learn about Python Pandas library. Knowing Pandas and how it works can help you become more proficient in Python data science.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/\" \/>\n<meta property=\"og:site_name\" content=\"TechVidvan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/TechVidvan\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-20T03:30:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.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=\"TechVidvan Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:site\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TechVidvan 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":"Python Pandas Introduction - TechVidvan","description":"Learn about Python Pandas library. Knowing Pandas and how it works can help you become more proficient in Python data science.","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:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/","og_locale":"en_US","og_type":"article","og_title":"Python Pandas Introduction - TechVidvan","og_description":"Learn about Python Pandas library. Knowing Pandas and how it works can help you become more proficient in Python data science.","og_url":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/","og_site_name":"TechVidvan","article_publisher":"https:\/\/www.facebook.com\/TechVidvan\/","article_published_time":"2023-02-20T03:30:22+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.webp","type":"image\/webp"}],"author":"TechVidvan Team","twitter_card":"summary_large_image","twitter_creator":"@vidvantech","twitter_site":"@vidvantech","twitter_misc":{"Written by":"TechVidvan Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#article","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/"},"author":{"name":"TechVidvan Team","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22"},"headline":"Python Pandas Introduction","datePublished":"2023-02-20T03:30:22+00:00","mainEntityOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/"},"wordCount":1110,"commentCount":0,"publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.webp","keywords":["Python Pandas"],"articleSection":["Python Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/","url":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/","name":"Python Pandas Introduction - TechVidvan","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#primaryimage"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.webp","datePublished":"2023-02-20T03:30:22+00:00","description":"Learn about Python Pandas library. Knowing Pandas and how it works can help you become more proficient in Python data science.","breadcrumb":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#primaryimage","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/python-pandas.webp","width":1200,"height":628,"caption":"python pandas"},{"@type":"BreadcrumbList","@id":"https:\/\/techvidvan.com\/tutorials\/python-pandas-introduction\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techvidvan.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"Python Pandas Introduction"}]},{"@type":"WebSite","@id":"https:\/\/techvidvan.com\/tutorials\/#website","url":"https:\/\/techvidvan.com\/tutorials\/","name":"TechVidvan Blogs","description":"","publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techvidvan.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techvidvan.com\/tutorials\/#organization","name":"TechVidvan","url":"https:\/\/techvidvan.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","width":200,"height":50,"caption":"TechVidvan"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/TechVidvan\/","https:\/\/x.com\/vidvantech"]},{"@type":"Person","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22","name":"TechVidvan Team","description":"The TechVidvan Team delivers practical, beginner-friendly tutorials on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our experts are here to help you upskill and excel in today\u2019s tech industry."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/86759","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/comments?post=86759"}],"version-history":[{"count":0,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/86759\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media\/87205"}],"wp:attachment":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media?parent=86759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/categories?post=86759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/tags?post=86759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}