{"id":2213,"date":"2022-07-07T17:41:23","date_gmt":"2022-07-07T12:41:23","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=2213"},"modified":"2022-07-08T11:50:08","modified_gmt":"2022-07-08T06:50:08","slug":"schedule-python-scripts-using-windows-task-scheduler","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/","title":{"rendered":"Schedule Python Scripts Using Windows Task Scheduler"},"content":{"rendered":"\n<p>In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want to execute your Python code at specific times.<\/p>\n\n\n\n<p>For the sake of this tutorial, I&#8217;ll create a Python program that prints &#8220;Hello World!&#8221; on screen and make it execute every day at 6 am.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Hello_World.py<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;python&quot;,&quot;mime&quot;:&quot;text\/x-python&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Python&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;python&quot;}\">import tkinter as tk \n\nroot= tk.Tk() \n \ncanvas1 = tk.Canvas(root, width = 300, height = 300)\ncanvas1.pack()\n\nlabel1 = tk.Label(root, text='Hello World!')\ncanvas1.create_window(150, 150, window=label1)\n\nroot.mainloop()<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Create Batch File to Execute the Python Script<\/h2>\n\n\n\n<p>Open Notepad, and create a new file. Then save this Notepad file with the \u201cbat\u201d extension. In my case, I&#8217;ll save it as <strong>Run_Python_Script.bat<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\" id=\"block-c1761470-e977-4917-a732-2dfdfd150388\"><img decoding=\"async\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_2.png\" alt=\"Save file as Run_Python_Script.bat\" title=\"Save file as Run_Python_Script.bat\"\/><\/figure>\n\n\n\n<p>Now provide the path of your Python <strong>.exe<\/strong> and  <strong>Hello_World.py<\/strong> file inside this new <strong>.bat<\/strong> file. In my case, the paths will be:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>The path where my Python .exe is stored:<\/strong> \u201cC:\\Users\\Ron\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe\u201d<\/li><li><strong>The path where my Hello_World.py script is stored:<\/strong> \u201cC:\\Users\\Ron\\Desktop\\Hello_World.py\u201d<\/li><\/ul>\n\n\n\n<p>You have to adjust these paths according to where you installed Python on your computer as well as where you stored the <strong>Hello_World.py<\/strong> file.<\/p>\n\n\n\n<p>After that, add the <code>pause<\/code> command on the next line. Like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\u201cC:\\Users\\Ron\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe\u201d \u201cC:\\Users\\Ron\\Desktop\\Hello_World.py\u201d\npause<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"879\" height=\"115\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_1.png\" alt=\"Content of Run_Python_Script.bat file\" class=\"wp-image-2215\" title=\"Content of Run_Python_Script.bat file\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_1.png 879w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_1-300x39.png 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_1-768x100.png 768w\" sizes=\"auto, (max-width: 879px) 100vw, 879px\" \/><\/figure>\n\n\n\n<p>This batch file will execute our Python script whenever you double-click on it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"331\" height=\"354\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3.png\" alt=\"Execute Python file using batch script\" class=\"wp-image-2217\" title=\"Execute Python file using batch script\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3.png 331w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3-281x300.png 281w\" sizes=\"auto, (max-width: 331px) 100vw, 331px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Schedule the Python Script using Windows Task Scheduler<\/h2>\n\n\n\n<p>Now it&#8217;s time to schedule that batch file to run our Python Script using the Windows Task Scheduler.<\/p>\n\n\n\n<p>As I&#8217;m on Windows 10, so I&#8217;ll use it to run the Python Script via the Windows Task Scheduler. You don&#8217;t have to change anything if you&#8217;re on a previous version of Windows. The below-mentioned steps will work on all modern versions of Windows such as Windows 7, 8, 10, and 11.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1:-<\/h3>\n\n\n\n<p>Open the Control Panel and then click on the Administrative Tools.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"202\" height=\"48\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_4.png\" alt=\"Control Panel - Administrative Tools\" class=\"wp-image-2218\" title=\"Control Panel - Administrative Tools\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2:-<\/h3>\n\n\n\n<p>Now, double-click on the Task Scheduler and then select the \u2018Create Basic Task\u2026\u2019 option.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"696\" height=\"225\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_5.png\" alt=\"Task Scheduler - Create Basic Task\" class=\"wp-image-2219\" title=\"Task Scheduler - Create Basic Task\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_5.png 696w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_5-300x97.png 300w\" sizes=\"auto, (max-width: 696px) 100vw, 696px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3:-<\/h3>\n\n\n\n<p>Enter a name for your task. Optionally, you can also provide a description if you like. After that, press &#8220;Next&#8221;.<\/p>\n\n\n\n<p>In my case, I named the task as &#8220;Run Hello World&#8221;.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"493\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_6.png\" alt=\"Enter a name for your task\" class=\"wp-image-2220\" title=\"Enter a name for your task\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_6.png 700w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_6-300x211.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4:-<\/h3>\n\n\n\n<p>In the &#8220;Task Trigger&#8221; section, select &#8220;Daily&#8221; because we want our Python script to execute daily at 6 am. After that, press &#8220;Next&#8221;.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"702\" height=\"494\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_7.png\" alt=\"Task Trigger - Daily\" class=\"wp-image-2221\" title=\"Task Trigger - Daily\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_7.png 702w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_7-300x211.png 300w\" sizes=\"auto, (max-width: 702px) 100vw, 702px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5:-<\/h3>\n\n\n\n<p>The action will then recur every 1 day at 6 am, starting from 2019-04-01. Kindly adjust those timing details according to your needs.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"701\" height=\"228\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_8.png\" alt=\"Task Trigger - Daily - Adjust timing\" class=\"wp-image-2223\" title=\"Task Trigger - Daily - Adjust timing\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_8.png 701w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_8-300x98.png 300w\" sizes=\"auto, (max-width: 701px) 100vw, 701px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6:-<\/h3>\n\n\n\n<p>Inside the &#8220;Action&#8221; section, select &#8220;Start a program&#8221; and then press Next.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"699\" height=\"259\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_9.png\" alt=\"Action - Start a program\" class=\"wp-image-2224\" title=\"Action - Start a program\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_9.png 699w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_9-300x111.png 300w\" sizes=\"auto, (max-width: 699px) 100vw, 699px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7:-<\/h3>\n\n\n\n<p>Now, use the &#8220;Browse&#8221; button to search and then select the batch file that runs the Python script. In my case, I placed the <strong>Run_Python_Script.bat<\/strong> file on my Desktop.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"255\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_10.png\" alt=\"select the batch file for Windows Task Scheduler\" class=\"wp-image-2225\" title=\"select the batch file for Windows Task Scheduler\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_10.png 700w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_10-300x109.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8:-<\/h3>\n\n\n\n<p>Finally, it&#8217;s time to click &#8220;Finish&#8221;, and you will be good to go.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"701\" height=\"492\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_11.png\" alt=\"Finish creating Windows Task Scheduler\" class=\"wp-image-2226\" title=\"Finish creating Windows Task Scheduler\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_11.png 701w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_11-300x211.png 300w\" sizes=\"auto, (max-width: 701px) 100vw, 701px\" \/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Now, you\u2019ll see the &#8220;Hello World!&#8221; message every day exactly at 6 am.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"331\" height=\"354\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3.png\" alt=\"Run Python Script Using Windows Task Scheduler\" class=\"wp-image-2217\" title=\"Run Python Script Using Windows Task Scheduler\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3.png 331w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_3-281x300.png 281w\" sizes=\"auto, (max-width: 331px) 100vw, 331px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want to execute your Python code at specific times. For the sake of this tutorial, I&#8217;ll create a Python program that prints &#8220;Hello World!&#8221; on screen and make it &#8230; <a title=\"Schedule Python Scripts Using Windows Task Scheduler\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/\" aria-label=\"Read more about Schedule Python Scripts Using Windows Task Scheduler\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-2213","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Schedule Python Scripts Using Windows Task Scheduler<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Schedule Python Scripts Using Windows Task Scheduler\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-07T12:41:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-08T06:50:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_2.png\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Schedule Python Scripts Using Windows Task Scheduler","description":"In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want","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:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/","og_locale":"en_US","og_type":"article","og_title":"Schedule Python Scripts Using Windows Task Scheduler","og_description":"In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want","og_url":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-07-07T12:41:23+00:00","article_modified_time":"2022-07-08T06:50:08+00:00","og_image":[{"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/07\/python_windows_scheduler_2.png","type":"","width":"","height":""}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Schedule Python Scripts Using Windows Task Scheduler","datePublished":"2022-07-07T12:41:23+00:00","dateModified":"2022-07-08T06:50:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/"},"wordCount":474,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/","url":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/","name":"Schedule Python Scripts Using Windows Task Scheduler","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-07-07T12:41:23+00:00","dateModified":"2022-07-08T06:50:08+00:00","description":"In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project will be very useful when you want","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/schedule-python-scripts-using-windows-task-scheduler\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Schedule Python Scripts Using Windows Task Scheduler"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2213","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=2213"}],"version-history":[{"count":0,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2213\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=2213"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=2213"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=2213"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}