Warning: The magic method OCDI\OneClickDemoImport::__wakeup() must have public visibility in /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php on line 128 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 Warning: Cannot modify header information - headers already sent by (output started at /customers/2/5/a/novainstitute.ca/httpd.www/wp-content/plugins/one-click-demo-import-deactivated/inc/OneClickDemoImport.php:128) in /customers/2/5/a/novainstitute.ca/httpd.www/wp-includes/rest-api/class-wp-rest-server.php on line 1831 {"id":686,"date":"2018-10-08T16:52:43","date_gmt":"2018-10-08T15:52:43","guid":{"rendered":"https:\/\/www.novainstitute.ca\/?p=686"},"modified":"2018-10-15T16:39:23","modified_gmt":"2018-10-15T15:39:23","slug":"developer-survival-guide-to-python-in-5-steps","status":"publish","type":"post","link":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/","title":{"rendered":"Developer Survival Guide to Python – in 5 steps"},"content":{"rendered":"

If you are a programmer and you are looking for work right now you probably know that Python is one of the most sought after job skills for developers today. And with the rise of Machine Learning and AI, demand for Python programmers is just increasing.<\/p>\n

Chances are that you go about learning a new language by diving straight into some project and trying to figure it out as you go. That’s a great way to learn, We’re big fans of practical application. It can also be a frustrating way to learn because you keep hitting walls when things don’t go your way.\u00a0That’s why we give you 5 survival tips to make your transition to Python less frustrating.<\/p>\n

1. No Semicolons – No Curly Brackets<\/h4>\n

Python is known for its simple syntax, in fact a central “pythonic” philosophy is to not use any unnecessary characters. If \u00a0you are coming from another programming language such as Java or any C dialect you will have imprinted in your spine that every line must end with a semicolon. In Python you can\u00a0<\/em>still do that, it will work. But it is not very pythonic.<\/p>\n

There are also no curly brackets. There is no need for them because you must always indent your code, which brings us to the next point.<\/p>\n

2. Forced Indents<\/h4>\n

\"Meme:<\/p>\n

There are two types of programmers in this world. Those who format their code well, and those who don’t. Python enforces us all into good habits, your code simply will not work if you do not indent properly. How to conform? Simply follow that little voice in your head that says “you should have indented this part”.<\/p>\n

3. Dynamic Types – Nothing To Declare<\/h4>\n

Python is dynamically typed, which means you generally do not need to worry about what type your variables are. In fact you can even change them to another type during runtime. Your variables are declared when you assign them and Python figures out the type all by itself. So you can do things like this:<\/p>\n

>>> a = \"Hello I'm a String\"\r\n>>> b = 2\r\n\r\n>>> type(a)\r\n<type 'str'>\r\n>>> type(b)\r\n<type 'int'>\r\n\r\n>>> a = 1 + b\r\n>>> type(a)\r\n<type 'int'>\r\n\r\n>>> a\r\n3<\/pre>\n

In the above example a starts out as a str<\/strong>, and is then dynamically changed to an int<\/strong> when it gets assigned the value ‘1 + b<\/strong>‘ (which equals 3).<\/p>\n

4. Function definition<\/h4>\n

Functions are defined like this:<\/p>\n

def my_function(self, something):\r\n   print(something)<\/pre>\n

Remember how we said Python does not like unnecessary characters and enforces indents? This makes function definitions really simple. Just a ‘def’ and a colon and any arguments in parentheses. No curly brackets, no “private static void blah blah”. Just define your function and un-indent when your function is \u00a0finished.<\/p>\n

The strangest thing about Python function definitions is that the first argument is always “self<\/strong>“. You can call it what you want, but it will always be a\u00a0reference to the current instance of the class. If the first argument is always self, why do we have to type it? Guido<\/span><\/span> van Rossum <\/span><\/span>(The maker of Python) <\/span><\/span>explains that here.<\/span><\/span><\/a><\/p>\n

When you call a function you start with argument number two in the functions argument list, because you would never pass self to the function. So calling my_function<\/strong> from above would look like this:<\/p>\n

my_function(\"hello\")<\/pre>\n

5. Class definitions<\/h4>\n

Class definitions are even more simple. Again, no curly brackets, no lengthy incantations, just:<\/p>\n

class MyClass:<\/pre>\n

Notice that by convention classnames are written in CamelCase while functions and variables are all lowercase. And don’t forget to indent.<\/p>\n

We hope this gives your Python journey a comfortable start, if so please like and share on facebook\/twitter\/linkedin\/anywhere!\u00a0If there are things you think we should add, please tell us in the comments.<\/p>\n

Oh, and before you go, open your Python interpreter and type:<\/p>\n

>>>import antigravity<\/pre>\n","protected":false},"excerpt":{"rendered":"

If you are a programmer and you are looking for work right now you probably know that Python is one of the most sought after job skills for developers today. And with the rise of Machine Learning and AI, demand for Python programmers is just increasing. Chances are that you go about learning a new […]<\/p>\n","protected":false},"author":1,"featured_media":586,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[43,44],"tags":[47,46,48],"yoast_head":"\nDeveloper Survival Guide to Python - in 5 steps - Nova Institute<\/title>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Developer Survival Guide to Python - in 5 steps - Nova Institute\" \/>\n<meta property=\"og:description\" content=\"If you are a programmer and you are looking for work right now you probably know that Python is one of the most sought after job skills for developers today. And with the rise of Machine Learning and AI, demand for Python programmers is just increasing. Chances are that you go about learning a new […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\" \/>\n<meta property=\"og:site_name\" content=\"Nova Institute\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/institutenova\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-08T15:52:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-15T15:39:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Maja Maher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InstituteNova\" \/>\n<meta name=\"twitter:site\" content=\"@InstituteNova\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maja Maher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\"},\"author\":{\"name\":\"Maja Maher\",\"@id\":\"https:\/\/www.novainstitute.ca\/#\/schema\/person\/88a3b50e59b63dbdc10d4485025804ce\"},\"headline\":\"Developer Survival Guide to Python – in 5 steps\",\"datePublished\":\"2018-10-08T15:52:43+00:00\",\"dateModified\":\"2018-10-15T15:39:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\"},\"wordCount\":608,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.novainstitute.ca\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png\",\"keywords\":[\"programming\",\"Python\",\"tips\"],\"articleSection\":[\"Knowledge Hub\",\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\",\"url\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\",\"name\":\"Developer Survival Guide to Python - in 5 steps - Nova Institute\",\"isPartOf\":{\"@id\":\"https:\/\/www.novainstitute.ca\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png\",\"datePublished\":\"2018-10-08T15:52:43+00:00\",\"dateModified\":\"2018-10-15T15:39:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage\",\"url\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png\",\"contentUrl\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png\",\"width\":500,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.novainstitute.ca\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developer Survival Guide to Python – in 5 steps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.novainstitute.ca\/#website\",\"url\":\"https:\/\/www.novainstitute.ca\/\",\"name\":\"Nova Institute\",\"description\":\"Better starts here\",\"publisher\":{\"@id\":\"https:\/\/www.novainstitute.ca\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.novainstitute.ca\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.novainstitute.ca\/#organization\",\"name\":\"Nova Institute\",\"url\":\"https:\/\/www.novainstitute.ca\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.novainstitute.ca\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/08\/logo-1.png\",\"contentUrl\":\"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/08\/logo-1.png\",\"width\":989,\"height\":989,\"caption\":\"Nova Institute\"},\"image\":{\"@id\":\"https:\/\/www.novainstitute.ca\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/institutenova\/\",\"https:\/\/x.com\/InstituteNova\",\"http:\/\/linkedin.com\/company\/nova-institute-inc\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.novainstitute.ca\/#\/schema\/person\/88a3b50e59b63dbdc10d4485025804ce\",\"name\":\"Maja Maher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.novainstitute.ca\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0b2d11abac06d30624b3e018de550c94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0b2d11abac06d30624b3e018de550c94?s=96&d=mm&r=g\",\"caption\":\"Maja Maher\"},\"description\":\"Maja Maher has a Masters degree in Computer Science with a specialization in Robotics and Intelligent Systems. She has experience teaching students at graduate and undergraduate level, and has been working with Artificial Intelligence and Machine Learning for more than 6 years.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Developer Survival Guide to Python - in 5 steps - Nova Institute","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"Developer Survival Guide to Python - in 5 steps - Nova Institute","og_description":"If you are a programmer and you are looking for work right now you probably know that Python is one of the most sought after job skills for developers today. And with the rise of Machine Learning and AI, demand for Python programmers is just increasing. Chances are that you go about learning a new […]","og_url":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/","og_site_name":"Nova Institute","article_publisher":"https:\/\/www.facebook.com\/institutenova\/","article_published_time":"2018-10-08T15:52:43+00:00","article_modified_time":"2018-10-15T15:39:23+00:00","og_image":[{"width":500,"height":500,"url":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png","type":"image\/png"}],"author":"Maja Maher","twitter_card":"summary_large_image","twitter_creator":"@InstituteNova","twitter_site":"@InstituteNova","twitter_misc":{"Written by":"Maja Maher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#article","isPartOf":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/"},"author":{"name":"Maja Maher","@id":"https:\/\/www.novainstitute.ca\/#\/schema\/person\/88a3b50e59b63dbdc10d4485025804ce"},"headline":"Developer Survival Guide to Python – in 5 steps","datePublished":"2018-10-08T15:52:43+00:00","dateModified":"2018-10-15T15:39:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/"},"wordCount":608,"commentCount":0,"publisher":{"@id":"https:\/\/www.novainstitute.ca\/#organization"},"image":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png","keywords":["programming","Python","tips"],"articleSection":["Knowledge Hub","Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/","url":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/","name":"Developer Survival Guide to Python - in 5 steps - Nova Institute","isPartOf":{"@id":"https:\/\/www.novainstitute.ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage"},"image":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png","datePublished":"2018-10-08T15:52:43+00:00","dateModified":"2018-10-15T15:39:23+00:00","breadcrumb":{"@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#primaryimage","url":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png","contentUrl":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/09\/Python.svg_.png","width":500,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/www.novainstitute.ca\/developer-survival-guide-to-python-in-5-steps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.novainstitute.ca\/"},{"@type":"ListItem","position":2,"name":"Developer Survival Guide to Python – in 5 steps"}]},{"@type":"WebSite","@id":"https:\/\/www.novainstitute.ca\/#website","url":"https:\/\/www.novainstitute.ca\/","name":"Nova Institute","description":"Better starts here","publisher":{"@id":"https:\/\/www.novainstitute.ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.novainstitute.ca\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.novainstitute.ca\/#organization","name":"Nova Institute","url":"https:\/\/www.novainstitute.ca\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.novainstitute.ca\/#\/schema\/logo\/image\/","url":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/08\/logo-1.png","contentUrl":"https:\/\/www.novainstitute.ca\/wp-content\/uploads\/2018\/08\/logo-1.png","width":989,"height":989,"caption":"Nova Institute"},"image":{"@id":"https:\/\/www.novainstitute.ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/institutenova\/","https:\/\/x.com\/InstituteNova","http:\/\/linkedin.com\/company\/nova-institute-inc"]},{"@type":"Person","@id":"https:\/\/www.novainstitute.ca\/#\/schema\/person\/88a3b50e59b63dbdc10d4485025804ce","name":"Maja Maher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.novainstitute.ca\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0b2d11abac06d30624b3e018de550c94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b2d11abac06d30624b3e018de550c94?s=96&d=mm&r=g","caption":"Maja Maher"},"description":"Maja Maher has a Masters degree in Computer Science with a specialization in Robotics and Intelligent Systems. She has experience teaching students at graduate and undergraduate level, and has been working with Artificial Intelligence and Machine Learning for more than 6 years."}]}},"_links":{"self":[{"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/posts\/686"}],"collection":[{"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/comments?post=686"}],"version-history":[{"count":8,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/posts\/686\/revisions"}],"predecessor-version":[{"id":708,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/posts\/686\/revisions\/708"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/media\/586"}],"wp:attachment":[{"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/media?parent=686"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/categories?post=686"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.novainstitute.ca\/wp-json\/wp\/v2\/tags?post=686"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}