{"id":2504,"date":"2020-10-08T15:41:10","date_gmt":"2020-10-08T10:11:10","guid":{"rendered":"http:\/\/veracitiz.com\/blog\/?p=2504"},"modified":"2024-04-17T14:46:11","modified_gmt":"2024-04-17T09:16:11","slug":"why-not-python-tm1-through-python","status":"publish","type":"post","link":"https:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/","title":{"rendered":"WHY NOT PYTHON ? TM1 through python"},"content":{"rendered":"\n<h2 class=\"has-text-align-center wp-block-heading\">TM1py<\/h2>\n\n\n\n<p><strong>In order to understand TM1py, lets understand what is py?<\/strong><\/p>\n\n\n\n<p>Py stands for Python. Python is an interpreted, object-oriented, general-purpose programming language with dynamic semantics. Its built-in data structures, combined with dynamic typing and dynamic binding, make it very attractive for rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the<br>extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.<\/p>\n\n\n\n<p><strong>Why use Python?<\/strong><\/p>\n\n\n\n<p>Python&#8217;s expansive library of open source data analysis tools, web frameworks, and testing<br>instruments make its ecosystem one of the largest out of any programming community. Python is an<br>accessible language for new programmers because the community provides many introductory<br>resources.<\/p>\n\n\n\n<p><strong>What is TM1py?<\/strong><\/p>\n\n\n\n<p>TM1py is a Python package that connects with TM1 REST API which make it simple to use library and build stuff with TM1 and Python.<br>With TM1py there are new possibilities to enhance your TM1 application, such as:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Express complex calculations for TM1 with python<\/li><li>Bring Data Science into the picture<\/li><li>Go beyond TI<\/li><li>Access TM1 data from other applications, such as PowerBI<\/li><li>Control all TM1 objects from Python<\/li><li>Load TM1 data into pandas for statistical analysis<\/li><li>Load FX, Stock and GDP data from external sources into your cubes<\/li><li>Synchronize cubes from different TM1 instances<\/li><li>Clean your TM1 models through regular expressions<\/li><li>Generate MDX Queries from existing cube views<\/li><li>Analyse Processing Feeders time<\/li><li>Maintain dimensions and subsets with python<br>And so on\u2026<\/li><\/ol>\n\n\n\n<p><strong>Connecting TM1 with Python<\/strong><\/p>\n\n\n\n<p>1. <strong>Install Python<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Select PIP (Package management system to install various packages) <\/li><li>Add Python path to Environmental Variables.<\/li><\/ul>\n\n\n\n<p> 2. <strong>Enable TM1 REST API<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li> Edit the tm1s.cfg file of the TM1 servers that you want to enable. <\/li><li> Add the entry HTTPPortNumber=#### <\/li><li> Restart the TM1 servers.<\/li><\/ul>\n\n\n\n<p>3. <strong>Open cmd and type pip install TM1py<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"285\" src=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1-1024x285.jpg\" alt=\"\" class=\"wp-image-2506\" srcset=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1-1024x285.jpg 1024w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1-300x83.jpg 300w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1-768x213.jpg 768w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1-600x167.jpg 600w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY1.jpg 1439w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>4. <strong>After install TM1py we need to import TM1py Services<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Type&gt; Python  <\/li><li>Type&gt; from TM1py.Services import TM1Service<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"250\" src=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-1024x250.jpg\" alt=\"\" class=\"wp-image-2511\" srcset=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-1024x250.jpg 1024w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-300x73.jpg 300w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-768x188.jpg 768w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-1536x375.jpg 1536w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2-600x147.jpg 600w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py2.jpg 1882w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>5. <strong>After exporting TM1 services we need to create a connection with TM1 server.  <\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Type&gt; tm1=TM1Service (address=&#8217;localhost&#8217;, port=12354, user=&#8217;admin&#8217;, password=&#8217;apple&#8217;, ssl=True) {here tm1 is a variable created}<\/li><li>Type&gt; print (tm1) {to check if connection has established}<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"302\" src=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-1024x302.jpg\" alt=\"\" class=\"wp-image-2507\" srcset=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-1024x302.jpg 1024w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-300x88.jpg 300w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-768x226.jpg 768w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-1536x453.jpg 1536w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3-600x177.jpg 600w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/PY3.jpg 1882w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Importing TM1 cube Data using Python<\/strong><\/p>\n\n\n\n<p>Below is the script to import TM1 data to csv format using Python and Pandas package. When working with tabular data, such as data stored in spreadsheets or database, pandas is the right tool. pandas will help to explore, clean and process data. In pandas, a data table is called a DataFrame. <\/p>\n\n\n\n<p><strong>Getting data using MDX<\/strong><br>Note: Here I\u2019m using juypter notebook to write and execute my script this can be written in python<br>native tool called IDLE or in CMD as well.<br>Cube Name<br>Executing above created MDX query<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"958\" src=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-1024x958.jpg\" alt=\"\" class=\"wp-image-2515\" srcset=\"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-1024x958.jpg 1024w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-300x281.jpg 300w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-768x719.jpg 768w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-1536x1438.jpg 1536w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-2048x1917.jpg 2048w, https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/py5-3-600x562.jpg 600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Note: Here I\u2019m using juypter notebook to write and execute my script this can be written in python native tool called IDLE or in CMD as well.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>TM1py In order to understand TM1py, lets understand what is py? Py stands for Python. Python is an interpreted, object-oriented, general-purpose programming language with dynamic semantics. Its built-in data structures, combined with dynamic typing and dynamic binding, make it very attractive for rapid Application Development, as well as for use as a scripting or glue [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":2517,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[9],"class_list":["post-2504","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-note","tag-tm1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WHY NOT PYTHON ? TM1 through python - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WHY NOT PYTHON ? TM1 through python - Blog\" \/>\n<meta property=\"og:description\" content=\"TM1py In order to understand TM1py, lets understand what is py? Py stands for Python. Python is an interpreted, object-oriented, general-purpose programming language with dynamic semantics. Its built-in data structures, combined with dynamic typing and dynamic binding, make it very attractive for rapid Application Development, as well as for use as a scripting or glue [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Veracitiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-08T10:11:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-17T09:16:11+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1610\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tech Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@veracitiz\" \/>\n<meta name=\"twitter:site\" content=\"@veracitiz\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tech Team\" \/>\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\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/\"},\"author\":{\"name\":\"Tech Team\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#\\\/schema\\\/person\\\/6cab7f45ac0297acb62171106cb0c348\"},\"headline\":\"WHY NOT PYTHON ? TM1 through python\",\"datePublished\":\"2020-10-08T10:11:10+00:00\",\"dateModified\":\"2024-04-17T09:16:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/\"},\"wordCount\":520,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/python-scaled.jpg\",\"keywords\":[\"TM1\"],\"articleSection\":[\"Tech-Note\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/\",\"url\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/\",\"name\":\"WHY NOT PYTHON ? TM1 through python - Blog\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/python-scaled.jpg\",\"datePublished\":\"2020-10-08T10:11:10+00:00\",\"dateModified\":\"2024-04-17T09:16:11+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#primaryimage\",\"url\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/python-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/python-scaled.jpg\",\"width\":2560,\"height\":1610,\"caption\":\"python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/why-not-python-tm1-through-python\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WHY NOT PYTHON ? TM1 through python\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#website\",\"url\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/\",\"name\":\"Blog\",\"description\":\"Veracitiz Solutions Pvt. Ltd.\",\"publisher\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#organization\",\"name\":\"Veracitiz Solutions Pvt Ltd\",\"alternateName\":\"Veracitiz Solutions Pvt Ltd\",\"url\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/logo-1.webp\",\"contentUrl\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/logo-1.webp\",\"width\":212,\"height\":32,\"caption\":\"Veracitiz Solutions Pvt Ltd\"},\"image\":{\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Veracitiz\\\/\",\"https:\\\/\\\/x.com\\\/veracitiz\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/veracitiz-solutions-private-limited\\\/\",\"https:\\\/\\\/www.youtube.com\\\/veracitiz\"]},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/veracitiz.com\\\/blog\\\/#\\\/schema\\\/person\\\/6cab7f45ac0297acb62171106cb0c348\",\"name\":\"Tech Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g\",\"caption\":\"Tech Team\"},\"url\":\"https:\\\/\\\/veracitiz.com\\\/blog\\\/author\\\/sagar\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WHY NOT PYTHON ? TM1 through python - Blog","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":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/","og_locale":"en_US","og_type":"article","og_title":"WHY NOT PYTHON ? TM1 through python - Blog","og_description":"TM1py In order to understand TM1py, lets understand what is py? Py stands for Python. Python is an interpreted, object-oriented, general-purpose programming language with dynamic semantics. Its built-in data structures, combined with dynamic typing and dynamic binding, make it very attractive for rapid Application Development, as well as for use as a scripting or glue [&hellip;]","og_url":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/","og_site_name":"Blog","article_publisher":"https:\/\/www.facebook.com\/Veracitiz\/","article_published_time":"2020-10-08T10:11:10+00:00","article_modified_time":"2024-04-17T09:16:11+00:00","og_image":[{"width":2560,"height":1610,"url":"http:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg","type":"image\/jpeg"}],"author":"Tech Team","twitter_card":"summary_large_image","twitter_creator":"@veracitiz","twitter_site":"@veracitiz","twitter_misc":{"Written by":"Tech Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#article","isPartOf":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/"},"author":{"name":"Tech Team","@id":"http:\/\/veracitiz.com\/blog\/#\/schema\/person\/6cab7f45ac0297acb62171106cb0c348"},"headline":"WHY NOT PYTHON ? TM1 through python","datePublished":"2020-10-08T10:11:10+00:00","dateModified":"2024-04-17T09:16:11+00:00","mainEntityOfPage":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/"},"wordCount":520,"commentCount":0,"publisher":{"@id":"http:\/\/veracitiz.com\/blog\/#organization"},"image":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#primaryimage"},"thumbnailUrl":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg","keywords":["TM1"],"articleSection":["Tech-Note"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/","url":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/","name":"WHY NOT PYTHON ? TM1 through python - Blog","isPartOf":{"@id":"http:\/\/veracitiz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#primaryimage"},"image":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#primaryimage"},"thumbnailUrl":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg","datePublished":"2020-10-08T10:11:10+00:00","dateModified":"2024-04-17T09:16:11+00:00","breadcrumb":{"@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#primaryimage","url":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg","contentUrl":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2020\/10\/python-scaled.jpg","width":2560,"height":1610,"caption":"python"},{"@type":"BreadcrumbList","@id":"http:\/\/veracitiz.com\/blog\/why-not-python-tm1-through-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/veracitiz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"WHY NOT PYTHON ? TM1 through python"}]},{"@type":"WebSite","@id":"http:\/\/veracitiz.com\/blog\/#website","url":"http:\/\/veracitiz.com\/blog\/","name":"Blog","description":"Veracitiz Solutions Pvt. Ltd.","publisher":{"@id":"http:\/\/veracitiz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/veracitiz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/veracitiz.com\/blog\/#organization","name":"Veracitiz Solutions Pvt Ltd","alternateName":"Veracitiz Solutions Pvt Ltd","url":"http:\/\/veracitiz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/veracitiz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2024\/11\/logo-1.webp","contentUrl":"https:\/\/veracitiz.com\/blog\/wp-content\/uploads\/2024\/11\/logo-1.webp","width":212,"height":32,"caption":"Veracitiz Solutions Pvt Ltd"},"image":{"@id":"http:\/\/veracitiz.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Veracitiz\/","https:\/\/x.com\/veracitiz","https:\/\/www.linkedin.com\/company\/veracitiz-solutions-private-limited\/","https:\/\/www.youtube.com\/veracitiz"]},{"@type":"Person","@id":"http:\/\/veracitiz.com\/blog\/#\/schema\/person\/6cab7f45ac0297acb62171106cb0c348","name":"Tech Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/aa0acaae7cb745248755bfdd205ea6d833b9cddb2e38d8cd3bf6813301a39a5f?s=96&d=mm&r=g","caption":"Tech Team"},"url":"https:\/\/veracitiz.com\/blog\/author\/sagar\/"}]}},"_links":{"self":[{"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/posts\/2504","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/comments?post=2504"}],"version-history":[{"count":6,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/posts\/2504\/revisions"}],"predecessor-version":[{"id":2730,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/posts\/2504\/revisions\/2730"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/media\/2517"}],"wp:attachment":[{"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/media?parent=2504"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/categories?post=2504"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/veracitiz.com\/blog\/wp-json\/wp\/v2\/tags?post=2504"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}