{"id":1178,"date":"2020-03-12T19:20:35","date_gmt":"2020-03-12T18:20:35","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=1178"},"modified":"2020-11-21T22:22:45","modified_gmt":"2020-11-21T21:22:45","slug":"openscad-libraries-and-change-management-in-the-jupyter-kernel","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/","title":{"rendered":"OpenSCAD Libraries and Change Management in the Jupyter Kernel"},"content":{"rendered":"<p><a href=\"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/06\/bolts-and-nuts-in-openscad%c2%b6\/\">Im my last Blog <\/a>I was using some functionality from <a href=\"https:\/\/dkprojects.net\/openscad-threads\/\">https:\/\/dkprojects.net\/openscad-threads\/ <\/a>in order to define a nut and a bolt. I was finding this library with the help of Google.<\/p>\n<p>Like with any software language, <strong>it does not make sense if you try to re-invent the wheel<\/strong> (though some key stakeholders of the project actually think that everybody should write their&#8217;s own library).<\/p>\n<p>In any case it is worth to check out if some components already exist before you invest a lot of time to build something new.<\/p>\n<h2>Revision Management<\/h2>\n<p>It is a precondition to have an explicit support for change management: We should be able to define the <strong>version<\/strong> of the library that is used. Though it is possible to mess around with local files and clone projects from github &#8211; this is definitely not our preferred way because we have the goal, that a workbook produces consistent results wherever it is executed and this is quite difficult if we would need to rely on some local files.<\/p>\n<p>When using the <a href=\"https:\/\/www.pschatzmann.ch\/home\/category\/openscad-kernel\/\">Jupyter OpenSCAD Kernel<\/a> we therefore propagate the following <strong>approach<\/strong> :<br \/>\n&#8211; Versioned Libraries are preferably stored on <strong><a href=\"https:\/\/github.com\/\">Github<\/a><\/strong> (or any other system which allows to access it&#8217;s resources with a versioned URL)<br \/>\n&#8211; We provide the <strong>%include<\/strong> and <strong>%use magic commands<\/strong> which load the content from an <strong>URL<\/strong><br \/>\n&#8211; It is up to the designer to decide if he wants to include the library from the <strong>head<\/strong> (and have the latest code) or <strong>from a specific version<\/strong>. We recommend to pin the included library to a specific version, so that your design is not broken when the library changes<\/p>\n<p><u>Examples<\/u>:<\/p>\n<pre><code>%include https:\/\/raw.githubusercontent.com\/revarbat\/BOSL\/v1.0.1\/linear_bearings.scad\n%include https:\/\/raw.githubusercontent.com\/revarbat\/BOSL\/master\/linear_bearings.scad\n<\/code><\/pre>\n<p>The first line loads the v1.0.1; the second the master branch version.<\/p>\n<p>In addition to using external libraries<br \/>\n&#8211; We can save the <strong>complete OpenSCAD code<\/strong> with the help of <strong>%saveAs<\/strong> magic function &#8211; This will explicitly provide the fully resolved OpenSCAD code that does not contain any include or use statement any more, and therfore is frozen in time.<br \/>\n&#8211; You can use to one of the <strong>Jupyterlab GIT Extensions<\/strong> to manage your versions of the Notebook and any related saved file format in scad, STL, etc.<\/p>\n<p>I think this proposal makes a lot of sense since most libraries are in fact available on Github. This brings us back to <em>https:\/\/dkprojects.net\/openscad-threads,<\/em> which is actually violating our priciples because we only have access to the latest version and it is up to the individual designer to make a judgment if he can take the (small) risk of a breaking change.<\/p>\n<h3>Includes in OpenSCAD<\/h3>\n<p>I really think that the support of URLs (and not only files) should be a basic OpenSCAD functionality. There is a feature Request from the year 2010 for this. Now after 10 years this is still missing&#8230;<\/p>\n<h2>Libraries Overview<\/h2>\n<p>In my next posts I would like to give an quick overview and introduction of the most important libraries:<br \/>\n&#8211; BOSL<br \/>\n&#8211; dotSCAD<br \/>\n&#8211; NopSCADlib<br \/>\n&#8211; BOLTS<br \/>\n&#8211; MCAD<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Im my last Blog I was using some functionality from https:\/\/dkprojects.net\/openscad-threads\/ in order to define a nut and a bolt. I was finding this library with the help of Google. Like with any software language, it does not make sense if you try to re-invent the wheel (though some key [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1192,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_crdt_document":"","_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[17,19],"tags":[],"class_list":["post-1178","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-3d-printing","category-openscad-kernel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann<\/title>\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.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"Im my last Blog I was using some functionality from https:\/\/dkprojects.net\/openscad-threads\/ in order to define a nut and a bolt. I was finding this library with the help of Google. Like with any software language, it does not make sense if you try to re-invent the wheel (though some key [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-12T18:20:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-21T21:22:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"pschatzmann\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pschatzmann\" \/>\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.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"OpenSCAD Libraries and Change Management in the Jupyter Kernel\",\"datePublished\":\"2020-03-12T18:20:35+00:00\",\"dateModified\":\"2020-11-21T21:22:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/\"},\"wordCount\":507,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/github.jpg\",\"articleSection\":[\"3D Printing\",\"OpenSCAD Kernel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/\",\"name\":\"OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/github.jpg\",\"datePublished\":\"2020-03-12T18:20:35+00:00\",\"dateModified\":\"2020-11-21T21:22:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/github.jpg\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/github.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/03\\\/12\\\/openscad-libraries-and-change-management-in-the-jupyter-kernel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OpenSCAD Libraries and Change Management in the Jupyter Kernel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\",\"name\":\"Phil Schatzmann Consulting\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\",\"name\":\"pschatzmann\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"width\":305,\"height\":305,\"caption\":\"pschatzmann\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann","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.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/","og_locale":"en_US","og_type":"article","og_title":"OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann","og_description":"Im my last Blog I was using some functionality from https:\/\/dkprojects.net\/openscad-threads\/ in order to define a nut and a bolt. I was finding this library with the help of Google. Like with any software language, it does not make sense if you try to re-invent the wheel (though some key [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/","og_site_name":"Phil Schatzmann","article_published_time":"2020-03-12T18:20:35+00:00","article_modified_time":"2020-11-21T21:22:45+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg","type":"image\/jpeg"}],"author":"pschatzmann","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pschatzmann","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"OpenSCAD Libraries and Change Management in the Jupyter Kernel","datePublished":"2020-03-12T18:20:35+00:00","dateModified":"2020-11-21T21:22:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/"},"wordCount":507,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg","articleSection":["3D Printing","OpenSCAD Kernel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/","url":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/","name":"OpenSCAD Libraries and Change Management in the Jupyter Kernel - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg","datePublished":"2020-03-12T18:20:35+00:00","dateModified":"2020-11-21T21:22:45+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/03\/github.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/03\/12\/openscad-libraries-and-change-management-in-the-jupyter-kernel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"OpenSCAD Libraries and Change Management in the Jupyter Kernel"}]},{"@type":"WebSite","@id":"https:\/\/www.pschatzmann.ch\/home\/#website","url":"https:\/\/www.pschatzmann.ch\/home\/","name":"Phil Schatzmann Consulting","description":"","publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pschatzmann.ch\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1","name":"pschatzmann","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","width":305,"height":305,"caption":"pschatzmann"},"logo":{"@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1178","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/comments?post=1178"}],"version-history":[{"count":14,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1178\/revisions"}],"predecessor-version":[{"id":1184,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1178\/revisions\/1184"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/1192"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=1178"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=1178"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=1178"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}