{"id":133263,"date":"2023-04-21T15:08:04","date_gmt":"2023-04-21T15:08:04","guid":{"rendered":"https:\/\/blog.finxter.com\/?p=1309624"},"modified":"2023-04-21T15:08:04","modified_gmt":"2023-04-21T15:08:04","slug":"python-list-of-tuples-to-dataframe-%f0%9f%90%bc","status":"publish","type":"post","link":"https:\/\/sickgaming.net\/blog\/2023\/04\/21\/python-list-of-tuples-to-dataframe-%f0%9f%90%bc\/","title":{"rendered":"Python List of Tuples to DataFrame \ud83d\udc3c"},"content":{"rendered":"\n<div class=\"kk-star-ratings kksr-auto kksr-align-left kksr-valign-top\" data-payload='{&quot;align&quot;:&quot;left&quot;,&quot;id&quot;:&quot;1309624&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;top&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;1&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;Rate this post&quot;,&quot;legend&quot;:&quot;5\\\/5 - (1 vote)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Python List of Tuples to DataFrame \\ud83d\\udc3c&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;{score}\\\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}'>\n<div class=\"kksr-stars\">\n<div class=\"kksr-stars-inactive\">\n<div class=\"kksr-star\" data-star=\"1\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" data-star=\"2\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" data-star=\"3\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" data-star=\"4\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" data-star=\"5\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div class=\"kksr-stars-active\" style=\"width: 142.5px;\">\n<div class=\"kksr-star\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<div class=\"kksr-star\" style=\"padding-right: 5px\">\n<div class=\"kksr-icon\" style=\"width: 24px; height: 24px;\"><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/div>\n<div class=\"kksr-legend\" style=\"font-size: 19.2px;\"> 5\/5 &#8211; (1 vote) <\/div>\n<\/p><\/div>\n<p class=\"has-global-color-8-background-color has-background\"><strong>To convert a list of tuples to a Pandas DataFrame, import the <code>pandas<\/code> library, call the DataFrame constructor, and pass the list of tuples as the data argument such as in <code>pd.DataFrame(tuples_list, columns=['Number', 'Letter'])<\/code>.<\/strong><\/p>\n<p>Here&#8217;s a minimal example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pandas as pd\ntuples_list = [(1, 'A'), (2, 'B'), (3, 'C')]\ndf = pd.DataFrame(tuples_list, columns=['Number', 'Letter'])\n<\/pre>\n<p>The output of the given code will be a Pandas DataFrame with two columns, <code>'Number'<\/code> and <code>'Letter'<\/code>, as follows:<\/p>\n<pre class=\"wp-block-preformatted\"><code> Number Letter\n0 1 A\n1 2 B\n2 3 C<\/code><\/pre>\n<p>After the Panda image, let&#8217;s dive deeper into this conversion technique so you can improve your skills and learn more on Pandas&#8217; assume capabilities! <\/p>\n<p>I&#8217;ll also show you how to convert a list of <strong><em>named <\/em><\/strong>tuples &#8212; and how to <strong><em>convert the DataFrame back to a list of tuples <\/em><\/strong>(key-value pairs). <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f447.png\" alt=\"\ud83d\udc47\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/><\/p>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"911\" height=\"911\" src=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-143.png\" alt=\"\" class=\"wp-image-1293960\" srcset=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-143.png 911w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-143-300x300.png 300w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-143-150x150.png 150w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-143-768x768.png 768w\" sizes=\"auto, (max-width: 911px) 100vw, 911px\" \/><\/figure>\n<h2 class=\"wp-block-heading\">Converting a List of Tuples to DataFrame<\/h2>\n<p>First, let&#8217;s explore how to <strong>convert a list of tuples into a DataFrame<\/strong> using Python&#8217;s Pandas library. <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f40d.png\" alt=\"\ud83d\udc0d\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/><\/p>\n<h3 class=\"wp-block-heading\">Using DataFrame Constructor<\/h3>\n<p>The simplest way to convert a list of tuples into a DataFrame is by using the <code>DataFrame()<\/code> constructor provided by the Pandas library. This method is straightforward and can be achieved in just a few lines of code. <\/p>\n<p>Here&#8217;s an example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"3\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pandas as pd\ntuple_list = [('A', 1), ('B', 2), ('C', 3)]\ndf = pd.DataFrame(tuple_list)\nprint(df)\n<\/pre>\n<p>Executing this code will create a DataFrame with the following structure:<\/p>\n<\/p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<td>0<\/td>\n<td>1<\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>A<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>B<\/td>\n<td>2<\/td>\n<\/tr>\n<tr>\n<td>C<\/td>\n<td>3<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<h3 class=\"wp-block-heading\">Handling Data with Column Names<\/h3>\n<p>When converting a list of tuples to a DataFrame, it&#8217;s often useful to include column names to make the data more readable and understandable. To do this, you can add the <code>columns<\/code> parameter when calling the <code>DataFrame()<\/code> constructor. <\/p>\n<p>Here&#8217;s an example:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"4\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pandas as pd\ntuple_list = [('A', 1), ('B', 2), ('C', 3)]\ncolumn_names = ['Letter', 'Number']\ndf = pd.DataFrame(tuple_list, columns=column_names)\nprint(df)\n<\/pre>\n<p>With the column names specified, the resulting DataFrame will look like this:<\/p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<td>Letter<\/td>\n<td>Number<\/td>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>A<\/td>\n<td>1<\/td>\n<\/tr>\n<tr>\n<td>B<\/td>\n<td>2<\/td>\n<\/tr>\n<tr>\n<td>C<\/td>\n<td>3<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>By using the DataFrame constructor and handling data with column names, you can easily convert a list of tuples into a DataFrame that is more organized and easier to understand. Keep working with these techniques, and soon enough, you&#8217;ll be a master of DataFrames! <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f60e.png\" alt=\"\ud83d\ude0e\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/><\/p>\n<h2 class=\"wp-block-heading\">Examples and Use Cases<\/h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-147-1024x683.png\" alt=\"\" class=\"wp-image-1293964\" srcset=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-147-1024x683.png 1024w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-147-300x200.png 300w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-147-768x512.png 768w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-147.png 1168w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n<p>When working with Python, one often encounters data stored in lists of tuples. These data structures are lightweight and easy to use, but sometimes, it&#8217;s beneficial to convert them into a more structured format, such as a DataFrame <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f4a1.png\" alt=\"\ud83d\udca1\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/>. In this section, we will explore some examples and use cases for converting a list of tuples into a DataFrame in Python, using the pandas library.<\/p>\n<p>Here&#8217;s a simple example that demonstrates how to create a DataFrame from a list of tuples:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pandas as pd data = [('Peter', 18, 7), ('Riff', 15, 6), ('John', 17, 8), ('Michel', 18, 7), ('Sheli', 17, 5)]\ndf = pd.DataFrame(data, columns=['Name', 'Age', 'Score'])\n<\/pre>\n<p>In this example, we have a list of tuples representing student data, with each tuple containing a name, age, and score. By passing this list to the DataFrame constructor along with the column names, we can easily convert it into a DataFrame <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f680.png\" alt=\"\ud83d\ude80\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/>.<\/p>\n<p>Consider another use case, where we need to filter and manipulate data before converting it into a DataFrame. For instance, let&#8217;s imagine we have a list of sales data, with each tuple representing an item, its price, and the number of sales:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">data = [('Item A', 35, 20), ('Item B', 45, 15), ('Item C', 50, 30), ('Item D', 25, 10)]\n<\/pre>\n<p>In this case, we can use list comprehensions to filter items with sales greater than 20 and update the price by applying a 10% discount:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">filtered_data = [(item, price * 0.9, sales) for item, price, sales in data if sales > 20]\ndf = pd.DataFrame(filtered_data, columns=['Item', 'Discounted Price', 'Sales'])\n<\/pre>\n<p>Now, our DataFrame contains only the filtered items with the discounted prices <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f389.png\" alt=\"\ud83c\udf89\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/>.<\/p>\n<h2 class=\"wp-block-heading\">Python List of Named Tuples to DataFrame<\/h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"804\" src=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-141-1024x804.png\" alt=\"\" class=\"wp-image-1293955\" srcset=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-141-1024x804.png 1024w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-141-300x235.png 300w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-141-768x603.png 768w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-141.png 1161w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n<p>Converting a list of <strong><em><a rel=\"noreferrer noopener\" href=\"https:\/\/blog.finxter.com\/python-namedtuple\/\" data-type=\"post\" data-id=\"37911\" target=\"_blank\">named tuples<\/a><\/em><\/strong> to a DataFrame in Python can be done efficiently using the <code>pandas<\/code> library&#8217;s default functions as well. <\/p>\n<p class=\"has-global-color-8-background-color has-background\"><img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f4a1.png\" alt=\"\ud83d\udca1\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/> <strong>Info<\/strong>: A named tuple is a subclass of a tuple, which allows you to access elements by name, making it highly readable and practical for data manipulation. <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f40d.png\" alt=\"\ud83d\udc0d\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/> <\/p>\n<p>First, create a list of named tuples using Python&#8217;s built-in <code>collections<\/code> module. <\/p>\n<p>Let&#8217;s assume we have a list of students with their names, ages, and test scores:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">from collections import namedtuple Student = namedtuple('Student', ['name', 'age', 'score'])\nstudents = [ Student('Alice', 23, 89), Student('Bob', 22, 92), Student('Charlie', 24, 85)\n]\n<\/pre>\n<p>With the list of named tuples prepared, proceed to import the pandas library and use the <code>pd.DataFrame()<\/code> method to convert the list to a DataFrame:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import pandas as pd dataframe = pd.DataFrame(students, columns=Student._fields)\n<\/pre>\n<p>This process creates a DataFrame with columns corresponding to the named tuple fields. The final result appears as follows:<\/p>\n<pre class=\"wp-block-preformatted\"><code> name age score\n0 Alice 23 89\n1 Bob 22 92\n2 Charlie 24 85\n<\/code><\/pre>\n<p>In summary, simply define the list with the named tuple structure, and then call the <code>pd.DataFrame()<\/code> method to create the DataFrame.<\/p>\n<h2 class=\"wp-block-heading\">Create a List of Tuples From a DataFrame<\/h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"607\" height=\"911\" src=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-142.png\" alt=\"\" class=\"wp-image-1293959\" srcset=\"https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-142.png 607w, https:\/\/blog.finxter.com\/wp-content\/uploads\/2023\/04\/image-142-200x300.png 200w\" sizes=\"auto, (max-width: 607px) 100vw, 607px\" \/><\/figure>\n<\/div>\n<p>When working with data in Python, you may need to convert a DataFrame <strong><em>back<\/em><\/strong> into a list of tuples.<\/p>\n<p>To begin, import the library in your Python code using <code>import pandas as pd<\/code>. <\/p>\n<p>Now, let&#8217;s say you have a DataFrame, and you want to extract its data as a list of tuples. The simplest approach is to use the <code>itertuples()<\/code> function, which is a built-in method in Pandas <a href=\"https:\/\/pandas.pydata.org\/pandas-docs\/stable\/reference\/api\/pandas.DataFrame.itertuples.html\" target=\"_blank\" rel=\"noreferrer noopener\">(source)<\/a>.<\/p>\n<p>To use this method, call the <code>itertuples()<\/code> function on the DataFrame object, and then pass the output to the <code>list()<\/code> function to convert it into a list: <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">python import pandas as pd # Sample DataFrame data = {'Name': ['John', 'Alice', 'Tim'], 'Age': [28, 22, 27]}\ndf = pd.DataFrame(data) # Convert DataFrame to list of tuples list_of_tuples = list(df.itertuples(index=False, name=None))\nprint(list_of_tuples) <\/pre>\n<p>This code will output: <\/p>\n<pre class=\"wp-block-preformatted\"><code> [('John', 28), ('Alice', 22), ('Tim', 27)] <\/code><\/pre>\n<p>The <code>itertuples()<\/code> method has two optional parameters: <code>index<\/code> and <code>name<\/code>. Setting <code>index=False<\/code> excludes the DataFrame index from the tuples, and setting <code>name=None<\/code> returns regular <a rel=\"noreferrer noopener\" href=\"https:\/\/blog.finxter.com\/the-ultimate-guide-to-python-tuples\/\" data-type=\"post\" data-id=\"12043\" target=\"_blank\">tuples<\/a> instead of <a rel=\"noreferrer noopener\" href=\"https:\/\/blog.finxter.com\/python-namedtuple\/\" data-type=\"post\" data-id=\"37911\" target=\"_blank\">named tuples<\/a>.<\/p>\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n<p>So there you go! You now know how to convert a DataFrame into a list of tuples using the Pandas library in Python <img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/1f40d.png\" alt=\"\ud83d\udc0d\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/>. To keep learning and improving your Python skills, feel free to download our cheat sheets and visit the recommended Pandas tutorial:<\/p>\n<p class=\"has-base-2-background-color has-background\"><img decoding=\"async\" src=\"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/2b50.png\" alt=\"\u2b50\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" \/> <strong>Recommended<\/strong>: <a href=\"https:\/\/blog.finxter.com\/pandas-quickstart\/\" data-type=\"post\" data-id=\"16511\" target=\"_blank\" rel=\"noreferrer noopener\">10 Minutes to Pandas (in 5 Minutes)<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>5\/5 &#8211; (1 vote) To convert a list of tuples to a Pandas DataFrame, import the pandas library, call the DataFrame constructor, and pass the list of tuples as the data argument such as in pd.DataFrame(tuples_list, columns=[&#8216;Number&#8217;, &#8216;Letter&#8217;]). Here&#8217;s a minimal example: import pandas as pd tuples_list = [(1, &#8216;A&#8217;), (2, &#8216;B&#8217;), (3, &#8216;C&#8217;)] df [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[857],"tags":[73,468,528],"class_list":["post-133263","post","type-post","status-publish","format-standard","hentry","category-python-tut","tag-programming","tag-python","tag-tutorial"],"_links":{"self":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts\/133263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/comments?post=133263"}],"version-history":[{"count":0,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/posts\/133263\/revisions"}],"wp:attachment":[{"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/media?parent=133263"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/categories?post=133263"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sickgaming.net\/blog\/wp-json\/wp\/v2\/tags?post=133263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}