{"id":107958,"date":"2023-05-30T08:57:07","date_gmt":"2023-05-30T08:57:07","guid":{"rendered":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/?p=107958"},"modified":"2026-07-12T19:49:07","modified_gmt":"2026-07-12T11:49:07","slug":"valueerror-could-not-convert-tuple-of-form-to-variable","status":"publish","type":"post","link":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/","title":{"rendered":"Valueerror: could not convert tuple of form to variable"},"content":{"rendered":"<p class=\"wp-block-paragraph\">In Python programming, <strong>ValueError: Could not Convert Tuple of Form to Variable<\/strong> is an error message that occurs if you are trying to assign a value to a variable using a tuple, but the tuple structure does not match the expected variable structure. <\/p>\n<p class=\"wp-block-paragraph\">This error often occurs when attempting to unpack values from a tuple into individual variables.<\/p>\n<p class=\"wp-block-paragraph\">In this article, we will show different examples of this ValueError and provide solutions to resolve the error. <\/p>\n<p class=\"wp-block-paragraph\">We will also answer the frequently asked questions that related to this error and conclude with a summary.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-examples-and-solutions\">Examples and Solutions<\/h2>\n<p class=\"wp-block-paragraph\">Here are the examples and solutions to resolve the error <strong>Valueerror could not convert tuple of form to variable<\/strong>.<\/p>\n<h3 class=\"wp-block-heading\" id=\"h-example-1-incorrect-tuple-assignment\"><strong>Example 1: Incorrect Tuple Assignment<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">Let&#8217;s take a look at a simple example where you want to assign values from a tuple to multiple variables. <\/p>\n<p class=\"wp-block-paragraph\">However, the tuple has a different number of elements than the variables.<\/p>\n<pre class=\"wp-block-code\"><code><strong>tuple_data = (1, 2, 3)\na, b, c, d = tuple_data  \n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h3 class=\"wp-block-heading\" id=\"h-solution\"><strong>Solution:<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">To fix this error, make sure that the number of variables matches the number of elements in the tuple. <\/p>\n<p class=\"wp-block-paragraph\">In the above example, you can either add an extra variable or modify the tuple to match the number of variables:<\/p>\n<pre class=\"wp-block-code\"><code><strong># Option 1: Adding an extra variable\na, b, c, d = tuple_data, None\n\n# Option 2: Modifying the tuple\ntuple_data = (1, 2, 3, 4)\na, b, c, d = tuple_data\n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h3 class=\"wp-block-heading\" id=\"h-example-2-unpacking-nested-tuples\"><strong>Example 2: Unpacking Nested Tuples<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">Sometimes, the ValueError can occur when trying to unpack nested tuples.<\/p>\n<pre class=\"wp-block-code\"><code><strong>tuple_data = (1, (2, 3))\na, b, c = tuple_data  \n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h3 class=\"wp-block-heading\" id=\"h-solution-1\"><strong>Solution:<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">To fix this error, make sure that the structure of the variables matches the structure of the nested tuples:<\/p>\n<pre class=\"wp-block-code\"><code><strong># Option 1: Modify the variables\na, (b, c) = tuple_data\n\n# Option 2: Flatten the nested tuple\ntuple_data = (1, 2, 3)\na, b, c = tuple_data\n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h3 class=\"wp-block-heading\" id=\"h-example-3-assigning-values-to-unpacking\"><strong>Example 3: Assigning Values to Unpacking<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">The ValueError can also occur when trying to assign values directly to an unpacking expression.<\/p>\n<pre class=\"wp-block-code\"><code><strong>a, b, c = 1, 2, 3\na, b, c = 4, 5, 6  \n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h3 class=\"wp-block-heading\" id=\"h-solution-2\"><strong>Solution:<\/strong><\/h3>\n<p class=\"wp-block-paragraph\">To avoid this error, make sure that you don&#8217;t accidentally assign values to an unpacking expression. Instead, assign values individually to the variables:<\/p>\n<pre class=\"wp-block-code\"><code><strong>a, b, c = 1, 2, 3\na = 4\nb = 5\nc = 6\n<\/strong><\/code><\/pre>\n<p class=\"wp-block-paragraph\">\n<h2 class=\"wp-block-heading\" id=\"h-faqs\">FAQs<\/h2>\n<div class=\"schema-faq wp-block-yoast-faq-block\">\n<div class=\"schema-faq-section\" id=\"faq-question-1685435453083\"><strong class=\"schema-faq-question\">What causes the ValueError: Could not Convert Tuple of Form to Variable?<\/strong> <\/p>\n<p class=\"schema-faq-answer\">This error occurs when the structure of the tuple does not match the structure of the variables being assigned. It can happen when the number of elements or the nesting structure difference.<\/p>\n<\/p><\/div>\n<div class=\"schema-faq-section\" id=\"faq-question-1685435487824\"><strong class=\"schema-faq-question\">How can I fix the <code>ValueError<\/code> when unpacking a tuple?<\/strong> <\/p>\n<p class=\"schema-faq-answer\">To fix this error, ensure that the number of variables matches the number of elements in the tuple. You can add an extra variable or modify the tuple accordingly.<\/p>\n<\/p><\/div>\n<div class=\"schema-faq-section\" id=\"faq-question-1685435507511\"><strong class=\"schema-faq-question\">Can the ValueError occur with nested tuples?<\/strong> <\/p>\n<p class=\"schema-faq-answer\">Yes, the ValueError can occur when unpacking nested tuples. Make sure the structure of the variables aligns with the nested tuples.<\/p>\n<\/p><\/div>\n<div class=\"schema-faq-section\" id=\"faq-question-1685435631641\"><strong class=\"schema-faq-question\">Why am I encountering the ValueError: Could not Convert Tuple of Form to Variable?<\/strong> <\/p>\n<p class=\"schema-faq-answer\">This error occurs when you try to assign a tuple of values to a single variable, but the conversion fails due to a type mismatch or incorrect tuple size.<\/p>\n<\/p><\/div>\n<div class=\"schema-faq-section\" id=\"faq-question-1685435660889\"><strong class=\"schema-faq-question\">What if I have additional elements in the tuple that I don&#8217;t want to unpack?<\/strong> <\/p>\n<p class=\"schema-faq-answer\">If you have additional elements in the tuple that you don&#8217;t need to unpack, you can either modify the tuple to exclude those elements or assign them to a single variable using the * syntax.<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<p><!-- itsc-valerr-expansion --><\/p>\n<h2 style=\"color:#1F3A5F;border-left:4px solid #C9A961;padding-left:12px;margin-top:32px;font-size:22px;\">Python ValueError debugging checklist<\/h2>\n<ul>\n<li><strong>Read the full traceback<\/strong>. The message often names the exact value that failed.<\/li>\n<li><strong>Print repr(value)<\/strong> before the failing call \u2014 shows quotes, whitespace, and hidden chars.<\/li>\n<li><strong>Check library version<\/strong>. Many ValueErrors come from API changes across pandas \/ numpy \/ sklearn versions.<\/li>\n<li><strong>Guard at boundaries<\/strong>. Wrap risky conversions in try\/except and provide sensible defaults.<\/li>\n<li><strong>Use pydantic or dataclasses<\/strong>. Modern validation catches ValueError at input time with clean error messages.<\/li>\n<\/ul>\n<h2 style=\"color:#1F3A5F;border-left:4px solid #C9A961;padding-left:12px;margin-top:32px;font-size:22px;\">Common ValueError sources across libraries<\/h2>\n<ul>\n<li><strong>Conversion failures<\/strong>. int(&#8220;abc&#8221;), float(&#8220;$100&#8221;), datetime.strptime with wrong format.<\/li>\n<li><strong>Shape\/length mismatches<\/strong>. pandas assignment, numpy arithmetic, sklearn fit input.<\/li>\n<li><strong>Iterable unpacking<\/strong>. Too many or not enough values.<\/li>\n<li><strong>JSON parsing<\/strong>. Malformed JSON strings.<\/li>\n<li><strong>Domain-specific validation<\/strong>. Custom validators that raise ValueError on invalid input.<\/li>\n<\/ul>\n<h2 style=\"color:#1F3A5F;border-left:4px solid #C9A961;padding-left:12px;margin-top:32px;font-size:22px;\">Modern tooling to prevent ValueError<\/h2>\n<ul>\n<li><strong>pydantic v2<\/strong>. Runtime validation with clean error messages.<\/li>\n<li><strong>dataclasses with __post_init__<\/strong>. Validate at construction time.<\/li>\n<li><strong>argparse type=<\/strong>. Auto-convert and validate CLI args.<\/li>\n<li><strong>FastAPI request models<\/strong>. Web boundary validation without your code touching raw input.<\/li>\n<li><strong>polars strict types<\/strong>. Catches type\/value issues at load time.<\/li>\n<\/ul>\n<div class=\"itsc-external\" style=\"margin:32px 0;padding:18px 22px;border-left:4px solid #1F3A5F;background:#f6f8fb;border-radius:4px;\">\n<h3 style=\"color:#1F3A5F;font-size:18px;margin:0 0 12px;\">Official documentation<\/h3>\n<ul style=\"margin:0;padding-left:22px;line-height:1.8;\">\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/docs.python.org\/3\/library\/exceptions.html#ValueError\" rel=\"noopener\" target=\"_blank\">Python ValueError reference<\/a><\/li>\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/docs.python.org\/3\/library\/functions.html#int\" rel=\"noopener\" target=\"_blank\">Python built-in int() \/ float() reference<\/a><\/li>\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/docs.python.org\/3\/tutorial\/errors.html\" rel=\"noopener\" target=\"_blank\">Python errors and exceptions tutorial<\/a><\/li>\n<\/ul>\n<\/div>\n<div class=\"itsc-related\" style=\"margin:32px 0;padding:18px 22px;border-left:4px solid #C9A961;background:#fdfaf3;border-radius:4px;\">\n<h3 style=\"color:#1F3A5F;font-size:18px;margin:0 0 12px;\">Related Python error guides<\/h3>\n<ul style=\"margin:0;padding-left:22px;line-height:1.8;\">\n<li><a href=\"\/https\/itsourcecode.com\/topics\/valueerror\/\">All Python ValueError fixes (100+)<\/a><\/li>\n<li><a href=\"\/https\/itsourcecode.com\/topics\/typeerror\/\">Python &#038; JavaScript TypeError reference<\/a><\/li>\n<li><a href=\"\/https\/itsourcecode.com\/topics\/attributeerror\/\">Python AttributeError reference<\/a><\/li>\n<li><a href=\"\/https\/itsourcecode.com\/topics\/modulenotfounderror\/\">Python ModuleNotFoundError reference<\/a><\/li>\n<li><a href=\"\/https\/itsourcecode.com\/topics\/keyerror\/\">Python KeyError reference<\/a><\/li>\n<li><a href=\"\/https\/itsourcecode.com\/python-tutorial\/\">Python Tutorials<\/a><\/li>\n<\/ul>\n<\/div>\n<div class=\"itsc-faq-section\" style=\"margin:40px 0;\">\n<h2 style=\"color:#1F3A5F; font-size:26px; margin:0 0 20px; line-height:1.3;\">Frequently Asked Questions<\/h2>\n<details style=\"border-left:4px solid #1F3A5F; background:#fafafa; padding:14px 18px; margin:12px 0; border-radius:4px;\">\n<summary style=\"font-weight:bold; color:#1F3A5F; cursor:pointer; font-size:16px;\">What is Python ValueError and what causes it?<\/summary>\n<p style=\"margin:12px 0 0; line-height:1.7; color:#2c3e50;\">ValueError is raised when a function receives an argument of the right TYPE but an invalid VALUE. Example: int(&#8216;abc&#8217;) gets a string (right type for the function) but the value &#8216;abc&#8217; can&#8217;t be parsed as int. Other common cases: math.sqrt(-1), datetime.strptime with wrong format string, json.loads on malformed JSON, pandas.to_datetime on unparseable dates.<\/p>\n<\/details>\n<details style=\"border-left:4px solid #1F3A5F; background:#fafafa; padding:14px 18px; margin:12px 0; border-radius:4px;\">\n<summary style=\"font-weight:bold; color:#1F3A5F; cursor:pointer; font-size:16px;\">How do I fix &#8216;invalid literal for int() with base 10&#8217;?<\/summary>\n<p style=\"margin:12px 0 0; line-height:1.7; color:#2c3e50;\">int() couldn&#8217;t parse your string as a number. Three fixes depending on cause: (1) strip whitespace + newlines first: int(s.strip()). (2) Decimal numbers need float() then int(): int(float(&#8216;3.14&#8217;)). (3) For &#8216;sometimes a number, sometimes blank&#8217; use try\/except ValueError: try: n = int(s) except ValueError: n = 0.<\/p>\n<\/details>\n<details style=\"border-left:4px solid #1F3A5F; background:#fafafa; padding:14px 18px; margin:12px 0; border-radius:4px;\">\n<summary style=\"font-weight:bold; color:#1F3A5F; cursor:pointer; font-size:16px;\">What is the difference between ValueError and TypeError?<\/summary>\n<p style=\"margin:12px 0 0; line-height:1.7; color:#2c3e50;\">TypeError: wrong type passed to a function (int + str). ValueError: right type but invalid value (int(&#8216;abc&#8217;)). Both are common; catching them together is a common boundary pattern: except (TypeError, ValueError) as e: handle_bad_input(e). For internal code, distinguish them: TypeError usually means a real bug, ValueError can be expected on bad user input.<\/p>\n<\/details>\n<details style=\"border-left:4px solid #1F3A5F; background:#fafafa; padding:14px 18px; margin:12px 0; border-radius:4px;\">\n<summary style=\"font-weight:bold; color:#1F3A5F; cursor:pointer; font-size:16px;\">How do I prevent ValueError when parsing user input?<\/summary>\n<p style=\"margin:12px 0 0; line-height:1.7; color:#2c3e50;\">Three layers: (1) Validate before parsing (regex check that string looks numeric before int()). (2) Use Pydantic \/ Marshmallow for structured input. (3) Always have a try\/except ValueError fallback at API boundaries. Combine all three for production-grade input handling.<\/p>\n<\/details>\n<details style=\"border-left:4px solid #1F3A5F; background:#fafafa; padding:14px 18px; margin:12px 0; border-radius:4px;\">\n<summary style=\"font-weight:bold; color:#1F3A5F; cursor:pointer; font-size:16px;\">Where can I find more ValueError fixes?<\/summary>\n<p style=\"margin:12px 0 0; line-height:1.7; color:#2c3e50;\">Browse the <a href=\"\/https\/itsourcecode.com\/topics\/valueerror\/\">ValueError reference hub<\/a> for 100+ specific fixes (pandas, NumPy, sklearn, TensorFlow, datetime parsing). For related errors see <a href=\"\/https\/itsourcecode.com\/topics\/typeerror\/\">TypeError<\/a>. For Python tutorial coverage see <a href=\"\/https\/itsourcecode.com\/topics\/python-tutorial\/\">Python Tutorial hub<\/a>.<\/p>\n<\/details>\n<\/div>\n<p><script type=\"application\/ld+json\">{\"@context\":\"https:\/\/fd.xuwubk.eu.org:443\/https\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What is Python ValueError and what causes it?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"ValueError is raised when a function receives an argument of the right TYPE but an invalid VALUE. Example: int('abc') gets a string (right type for the function) but the value 'abc' can't be parsed as int. Other common cases: math.sqrt(-1), datetime.strptime with wrong format string, json.loads on malformed JSON, pandas.to_datetime on unparseable dates.\"}},{\"@type\":\"Question\",\"name\":\"How do I fix 'invalid literal for int() with base 10'?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"int() couldn't parse your string as a number. Three fixes depending on cause: (1) strip whitespace + newlines first: int(s.strip()). (2) Decimal numbers need float() then int(): int(float('3.14')). (3) For 'sometimes a number, sometimes blank' use try\/except ValueError: try: n = int(s) except ValueError: n = 0.\"}},{\"@type\":\"Question\",\"name\":\"What is the difference between ValueError and TypeError?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"TypeError: wrong type passed to a function (int + str). ValueError: right type but invalid value (int('abc')). Both are common; catching them together is a common boundary pattern: except (TypeError, ValueError) as e: handle_bad_input(e). For internal code, distinguish them: TypeError usually means a real bug, ValueError can be expected on bad user input.\"}},{\"@type\":\"Question\",\"name\":\"How do I prevent ValueError when parsing user input?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Three layers: (1) Validate before parsing (regex check that string looks numeric before int()). (2) Use Pydantic \/ Marshmallow for structured input. (3) Always have a try\/except ValueError fallback at API boundaries. Combine all three for production-grade input handling.\"}},{\"@type\":\"Question\",\"name\":\"Where can I find more ValueError fixes?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Browse the ValueError reference hub for 100+ specific fixes (pandas, NumPy, sklearn, TensorFlow, datetime parsing). For related errors see TypeError. For Python tutorial coverage see Python Tutorial hub.\"}}]}<\/script><\/p>\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n<p class=\"wp-block-paragraph\">The <strong>ValueError: Could not Convert Tuple of Form to Variable<\/strong> is a common error that occurs when attempting to assign values from a tuple to variables. <\/p>\n<p class=\"wp-block-paragraph\">In this article, we discussed different examples of this ValueError and provided solutions to resolve the issue. We also answer frequently asked questions related to the error.<\/p>\n<p class=\"wp-block-paragraph\">By ensuring that the tuple structure matches the variable structure, you can avoid this error.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-additional-resources\">Additional Resources<\/h2>\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/free-projects\/vb-net\/valueerror-operands-could-not-be-broadcast-together-with-shapes\/\">Valueerror: operands could not be broadcast together with shapes<\/a><\/li>\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-no-engine-for-filetype\/\">Valueerror: no engine for filetype<\/a><\/li>\n<li><a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-continuous-is-not-supported\/\">Valueerror: continuous is not supported<\/a><\/li>\n<\/ul>\n<div class=\"itsc-author\" style=\"margin:32px 0;padding:20px;border:1px solid #ddd;background:#fafafa;border-radius:6px;display:flex;gap:16px;align-items:flex-start;flex-wrap:wrap;\">\n  <img decoding=\"async\" src=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1782476891\" alt=\"Adones Evangelista\" loading=\"lazy\" style=\"width:80px;height:80px;border-radius:50%;flex-shrink:0;border:2px solid #fff;box-shadow:0 1px 4px rgba(0,0,0,0.1);\"><\/p>\n<div style=\"flex:1;min-width:240px;\">\n<h3 style=\"margin:0 0 4px;color:#1F3A5F;font-size:18px;line-height:1.3;\">\n      <a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/author-team\/\" rel=\"author\" style=\"color:#1F3A5F;text-decoration:none;\">Adones Evangelista<\/a><br \/>\n    <\/h3>\n<p style=\"margin:0 0 10px;color:#666;font-size:14px;font-style:italic;\">Programmer &#038; Technical Writer at PIES IT Solution<\/p>\n<p style=\"margin:0 0 10px;color:#2c3e50;font-size:14px;line-height:1.6;\">Adones Evangelista is a programmer and writer at PIES IT Solution, author of over 900 tutorials and error-fix guides at itsourcecode.com. Specializes in JavaScript, Django, Laravel, and Python error debugging covering ValueError, TypeError, AttributeError, ModuleNotFoundError, and RuntimeError, plus C\/C++ and PHP capstone projects for BSIT students.<\/p>\n<p style=\"margin:0;font-size:13px;color:#999;\">\n      <strong style=\"color:#2D6A4F;\">Expertise:<\/strong> JavaScript \u00b7 Python \u00b7 Django \u00b7 Laravel \u00b7 Error Debugging \u00b7 C\/C++<br \/>\n      &nbsp;\u00b7&nbsp;<a href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/author-team\/\" style=\"color:#1F3A5F;\">View all posts by Adones Evangelista \u2192<\/a>\n    <\/p>\n<\/p><\/div>\n<\/div>\n<p><script type=\"application\/ld+json\">\n{\"@context\": \"https:\/\/fd.xuwubk.eu.org:443\/https\/schema.org\", \"@type\": \"Person\", \"name\": \"Adones Evangelista\", \"url\": \"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/author-team\/\", \"image\": \"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1782476891\", \"jobTitle\": \"Programmer & Technical Writer\", \"worksFor\": {\"@type\": \"Organization\", \"name\": \"PIES Information Technology Solutions\", \"url\": \"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/\"}, \"knowsAbout\": [\"JavaScript\", \"Python\", \"Django\", \"Laravel\", \"Error Debugging\", \"C\/C++\"], \"description\": \"Adones Evangelista is a programmer and writer at PIES IT Solution, author of over 900 tutorials and error-fix guides at itsourcecode.com. Specializes in JavaScript, Django, Laravel, and Python error debugging covering ValueError, TypeError, AttributeError, ModuleNotFoundError, and RuntimeError, plus C\/C++ and PHP capstone projects for BSIT students.\"}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Python programming, ValueError: Could not Convert Tuple of Form to Variable is an error message that occurs if you are trying to assign a value to a variable using &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Valueerror: could not convert tuple of form to variable\" class=\"read-more button\" href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/\" aria-label=\"Read more about Valueerror: could not convert tuple of form to variable\">Read more<\/a><\/p>\n","protected":false},"author":2086,"featured_media":107975,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[98185],"tags":[102976,102110,98403],"class_list":["post-107958","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-valueerror","tag-python-errors","tag-valueerror","tag-valueerror-could-not-convert-tuple-of-form-to-variable","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v28.2) - https:\/\/fd.xuwubk.eu.org:443\/https\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Fix Could Not Convert Tuple of Form to (2026 SQLAlchemy)<\/title>\n<meta name=\"description\" content=\"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Valueerror: could not convert tuple of form to variable\" \/>\n<meta property=\"og:description\" content=\"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/\" \/>\n<meta property=\"og:site_name\" content=\"Itsourcecode.com\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-30T08:57:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-12T11:49:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1460\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"adones evangelista\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"adones evangelista\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/\"},\"author\":{\"name\":\"adones evangelista\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/03d64fa8f81624460af002f21d44f6cd\"},\"headline\":\"Valueerror: could not convert tuple of form to variable\",\"datePublished\":\"2023-05-30T08:57:07+00:00\",\"dateModified\":\"2026-07-12T11:49:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/\"},\"wordCount\":1130,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/valueerror-could-not-convert-tuple-of-form-to-variable.png\",\"keywords\":[\"python errors\",\"valueerror\",\"Valueerror: could not convert tuple of form to variable\"],\"articleSection\":[\"Python ValueError Reference: 100+ Library-Specific Fixes for pandas, NumPy, sklearn (2026)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/\",\"name\":\"Fix Could Not Convert Tuple of Form to (2026 SQLAlchemy)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/valueerror-could-not-convert-tuple-of-form-to-variable.png\",\"datePublished\":\"2023-05-30T08:57:07+00:00\",\"dateModified\":\"2026-07-12T11:49:07+00:00\",\"description\":\"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#primaryimage\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/valueerror-could-not-convert-tuple-of-form-to-variable.png\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/valueerror-could-not-convert-tuple-of-form-to-variable.png\",\"width\":1460,\"height\":900,\"caption\":\"valueerror could not convert tuple of form to variable\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/valueerror\\\/valueerror-could-not-convert-tuple-of-form-to-variable\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/itsourcecode.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Valueerror: could not convert tuple of form to variable\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/\",\"name\":\"Itsourcecode.com\",\"description\":\"Partner In Your Coding Journey!\",\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/itsourcecode.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/3883cf6bf7d0f141f81ccef0de9dd3fd\",\"name\":\"itsourcecode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"width\":409,\"height\":409,\"caption\":\"itsourcecode\"},\"logo\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\"},\"description\":\"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!\",\"sameAs\":[\"https:\\\/\\\/itsourcecode.com\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/03d64fa8f81624460af002f21d44f6cd\",\"name\":\"adones evangelista\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685\",\"caption\":\"adones evangelista\"},\"description\":\"Hello Everyone , I'm Adones Evangelista. A writer and also a programmer of itsourcecode.com.\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Fix Could Not Convert Tuple of Form to (2026 SQLAlchemy)","description":"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.","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:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/","og_locale":"en_US","og_type":"article","og_title":"Valueerror: could not convert tuple of form to variable","og_description":"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.","og_url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/","og_site_name":"Itsourcecode.com","article_published_time":"2023-05-30T08:57:07+00:00","article_modified_time":"2026-07-12T11:49:07+00:00","og_image":[{"width":1460,"height":900,"url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png","type":"image\/png"}],"author":"adones evangelista","twitter_card":"summary_large_image","twitter_misc":{"Written by":"adones evangelista","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/fd.xuwubk.eu.org:443\/https\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#article","isPartOf":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/"},"author":{"name":"adones evangelista","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#\/schema\/person\/03d64fa8f81624460af002f21d44f6cd"},"headline":"Valueerror: could not convert tuple of form to variable","datePublished":"2023-05-30T08:57:07+00:00","dateModified":"2026-07-12T11:49:07+00:00","mainEntityOfPage":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/"},"wordCount":1130,"commentCount":0,"publisher":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd"},"image":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#primaryimage"},"thumbnailUrl":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png","keywords":["python errors","valueerror","Valueerror: could not convert tuple of form to variable"],"articleSection":["Python ValueError Reference: 100+ Library-Specific Fixes for pandas, NumPy, sklearn (2026)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/","url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/","name":"Fix Could Not Convert Tuple of Form to (2026 SQLAlchemy)","isPartOf":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#primaryimage"},"image":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#primaryimage"},"thumbnailUrl":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png","datePublished":"2023-05-30T08:57:07+00:00","dateModified":"2026-07-12T11:49:07+00:00","description":"Fix Python ValueError: Could Not Convert Tuple of Form to Variable. SQLAlchemy examples + step-by-step solution. 2026 guide.","breadcrumb":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#primaryimage","url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png","contentUrl":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2023\/05\/valueerror-could-not-convert-tuple-of-form-to-variable.png","width":1460,"height":900,"caption":"valueerror could not convert tuple of form to variable"},{"@type":"BreadcrumbList","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/valueerror\/valueerror-could-not-convert-tuple-of-form-to-variable\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/"},{"@type":"ListItem","position":2,"name":"Valueerror: could not convert tuple of form to variable"}]},{"@type":"WebSite","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#website","url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/","name":"Itsourcecode.com","description":"Partner In Your Coding Journey!","publisher":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#\/schema\/person\/3883cf6bf7d0f141f81ccef0de9dd3fd","name":"itsourcecode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","contentUrl":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","width":409,"height":409,"caption":"itsourcecode"},"logo":{"@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg"},"description":"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!","sameAs":["https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/"]},{"@type":"Person","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/#\/schema\/person\/03d64fa8f81624460af002f21d44f6cd","name":"adones evangelista","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685","url":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685","contentUrl":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-content\/litespeed\/avatar\/f685a90d2e48f858acac01ca605180d4.jpg?ver=1786710685","caption":"adones evangelista"},"description":"Hello Everyone , I'm Adones Evangelista. A writer and also a programmer of itsourcecode.com."}]}},"_links":{"self":[{"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/107958","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/users\/2086"}],"replies":[{"embeddable":true,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/comments?post=107958"}],"version-history":[{"count":12,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/107958\/revisions"}],"predecessor-version":[{"id":150004,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/107958\/revisions\/150004"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/media\/107975"}],"wp:attachment":[{"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/media?parent=107958"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/categories?post=107958"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fd.xuwubk.eu.org:443\/https\/itsourcecode.com\/wp-json\/wp\/v2\/tags?post=107958"}],"curies":[{"name":"wp","href":"https:\/\/fd.xuwubk.eu.org:443\/https\/api.w.org\/{rel}","templated":true}]}}