{"id":7399,"date":"2021-04-09T21:05:20","date_gmt":"2021-04-09T21:05:20","guid":{"rendered":"https:\/\/blog-stg.cheesecakelabs.com\/blog\/biggest-benefits-of-python\/"},"modified":"2022-07-01T17:02:44","modified_gmt":"2022-07-01T17:02:44","slug":"biggest-benefits-of-python","status":"publish","type":"post","link":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/","title":{"rendered":"The biggest benefits of Python, according to CKL"},"content":{"rendered":"<p>It isn\u2019t easy to pick a technology for your new application idea. Everyone acts like the language they use is the best one out there (including us!). It\u2019s hard for business owners to sift through the noise and figure out what tool is the right one for the job.<\/p>\n<p>At Cheesecake Labs, we cut through the noise.<\/p>\n<p>We\u2019re clear about why we use Python \u2014 the benefits it brings to application development and the drawbacks too.&nbsp;We know what the benefits of Python are, the advantages and disadvantages, and why, in our opinion, Python is so great.<br \/>\n<!--more--><\/p>\n<p>If you want to learn more about Python, the good and the not-so-good, keep reading below.<\/p>\n<h2>What are 3 benefits of Python?<\/h2>\n<p>There aren\u2019t enough words to describe all the benefits the Python programming language brings.&nbsp;And that very fact helps illustrate why Python is so popular with engineers.<\/p>\n<p>That said, there are a few advantages to using Pytho that stand out from the rest:<\/p>\n<h3>Benefits of Python: Simplicity and readability<\/h3>\n<p>If you asked several Python programmers to create an application to handle a specific task, you would think that you would see vastly different coding styles and structures. In some languages, this is common. Python, on the other hand, keeps developers on the same page.<\/p>\n<p>Python adopts the view that programming code should be readable and straightforward. There aren\u2019t too many ways to accomplish tasks, and Python wants its developers to handle things in a certain way.<\/p>\n<p>While some programmers might find this constraining, it makes life easier for others \u2014 including their clients.<\/p>\n<p>Having simple and consistent programming code means that any engineer can look through Python code and understand what\u2019s happening. This lets companies onboard new talent and get them up and running more quickly.<\/p>\n<blockquote>\n<h4>&#8220;As a client, this means your developers are more focused on delivering the business objectives than they are on determining which way of doing things is the best. Developers can focus on solving core business problems and launching apps efficiently.&#8221;<\/h4>\n<p>&#8211; Douglas Gimli, VP of Business Development<\/p><\/blockquote>\n<h3>Benefits of Python: Large community and ecosystem<\/h3>\n<p>Python is an open-source project. This means that the source code for the programming language is open to everyone to read and propose changes. It\u2019s built by developers, for developers.<\/p>\n<p>As a result, Python is now one of the most popular programming languages on the market. Many educational institutions list it as the <a href=\"https:\/\/www.northeastern.edu\/graduate\/blog\/most-popular-programming-languages\/\" target=\"_blank\" rel=\"noopener noreferrer\">number one language<\/a> for new developers to learn.<\/p>\n<p>The extensive developer base has also led to many tools that make a developer\u2019s life easier. These tools can integrate with business applications and let programmers do more with less code. <strong>You\u2019ll get your applications developed faster and with fewer bugs too.<\/strong><\/p>\n<p>The Python community is also very friendly. Developers across the world regularly share answers to complex problems, and a Python programmer working on your app can quickly find solutions to issues they face. The outcome? Greater project velocity and a smoother route to market.<\/p>\n<h3>Benefits of Python: Versatile developer tools<\/h3>\n<p>One of the most significant advantages of using Python is the abundance of developer tools and third-party libraries. One of the biggest time-sinks in development is creating everything from scratch, but with Python, you save time not having to build things that\u2019ve already been built before.<\/p>\n<p>How does Python achieve this?<\/p>\n<p>For one, it has a lot of built-in features that make developers&#8217; lives easier. The standard library contains program functions that let developers accomplish tasks in a few lines of code, something that would otherwise take a lot more.<\/p>\n<p>If you need something more complicated than the Python library provides, you only have to look to the open-source ecosystem. There you\u2019ll find tools for everything from machine learning to web development, and all a Python developer needs to do is install the library and get started on their task straight away.<\/p>\n<p>People use these tools in a large number of industries. Data scientists make heavy use of machine learning tools to get data models up and running, and web development companies use frameworks like Django to build websites quickly.<\/p>\n<blockquote>\n<h4>&#8220;Again, all of this leads to a much faster build. With the best tools close at hand, we can leverage and optimize development time. Delivering solid-rock code and, ultimately, total value to your business \u2014 all in less time, and with a tighter budget, too.&#8221;<\/h4>\n<p>&#8211;&nbsp;Jeremy Stephan, Head of Client Engagement<\/p><\/blockquote>\n<h2>Are there any downsides to Python?<\/h2>\n<p>There\u2019s no such thing as a perfect programming language, and the features that Python provides do come at a cost.<\/p>\n<p>Let\u2019s take a look at some of the downsides you\u2019ll see when using Python as a programming language:<\/p>\n<h3>Lower performance?<\/h3>\n<p>Search online for Python comparisons or how-tos, and you&#8217;ll find multiple articles stating that Python is slow. But what does it mean, exactly, in the context of other programming languages? And how much of a deal-breaker is this \u201cslow\/low performance\u201d when adopting Python for your application?<\/p>\n<p>Without getting too deep into the technical details, \u201cPython code\u201d is in fact slower than code written in low-level languages, such as C\/C++. Why? Because Python is what\u2019s known as a dynamically typed and interpreted language \u2014 and there are extra steps that Python code needs to take, to turn into code that computers understand.<\/p>\n<p>Low-level languages compile into machine code, so there\u2019s less work to do when your software is running.<\/p>\n<p>Note the use of &#8220;Python code&#8221; in inverted commas above, though. We did that for a reason.<\/p>\n<p>When you\u2019re building an app that demands high computation \u2014 for machine learning, let\u2019s say \u2014 many of the Python tools you\u2019ll use mostly run as C-compiled code, with a Python wrapper. This means you can get a good balance of Python&#8217;s ease of use, plus speed from C, with a small overhead.<\/p>\n<p>For applications like web development, Python code is hardly the most common performance bottleneck. Real-world applications are complex in nature, and they have to integrate with several third-party services that have a higher chance of impacting the overall performance \u2014 database, email, messaging queues, and so on. And unless you address the main bottleneck of the application as a whole, you won&#8217;t be effective.<\/p>\n<p>Where the bottleneck can be identified as the Python code itself, you can always integrate with other languages like Golang. Problem solved.<\/p>\n<p>So with no issue being too big to resolve&#8230; is it actually worth undergoing all these performance workarounds just to use Python?<\/p>\n<p>The answer, for us, is a resounding yes.<\/p>\n<p>Successful digital products are those that ship value to their users consistently. In order to achieve that, you have to be able to prototype and implement code that represents the world closest to its real form, without getting swamped with low-level intricacies.<\/p>\n<p>In a world where hardware gets less expensive year after year, being able to develop applications and adapt faster is the real game-changer, and Python delivers on this promise.<\/p>\n<h3>Issues with interpretation<\/h3>\n<p>The ease of use and development speed that Python brings as an interpreted language (and not a compiled one), has its benefits and its trade-offs.<\/p>\n<p>In the exact same way you might use an interpreter to understand what someone else is saying in a different language to your own, Python code itself undergoes an interpretation process \u2014 each line of code is read, analyzed, and executed during application run time. And you may find an interpreted language like Python creates more runtime errors, when compared to statically compiled ones.<\/p>\n<p>These errors can be prevented, though. A modern software development toolset with static code check, linters and automated tests bring peace of mind to Python engineers, leaving them to focus on solving real-world problems.<\/p>\n<p>Of course, the Cheesecake Labs expert QA team is also on-hand to weed out any potential runtime errors before you hit the market.<\/p>\n<h2>Python + Cheesecake Labs = delightful digital experiences<\/h2>\n<p>Now that you know more about what makes Python great, the question is: how does Cheesecake Labs use Python to produce outstanding applications?<\/p>\n<p>Essentially, the Python ecosystem lines up well perfectly with the <a href=\"https:\/\/blog-stg.cheesecakelabs.com\/building-app-phase-3-product-development\/\">Cheesecake Labs development process<\/a> and our engineering culture foundations:<\/p>\n<h3>Quality<\/h3>\n<p>Python is a robust language that makes sure its developers handle things the right way. This encourages dev teams to create quality code that other developers can understand. It makes applications more stable, easier to debug, and easy to enhance in the future.<\/p>\n<p><strong>All this leads to better experiences and results for you (our customer) and the end user (your customer) too.<\/strong><\/p>\n<h3>Efficiency<\/h3>\n<p>There\u2019s a fine line between delivering quickly and delivering quality. You don\u2019t want to speed through the creation of an app, only to end up with a disappointing outcome. That\u2019s never an issue with Python and Cheesecake Labs though \u2014 together we stay efficient and still deliver excellent results, focusing on the right value for your users.<\/p>\n<blockquote>\n<h4>&#8220;The Python ecosystem provides us with the tools we need to get things done and get them done well.&#8221;<\/h4>\n<p>&#8211;&nbsp;Bernardo&nbsp;Smaniotto, Chief Operating Officer<\/p><\/blockquote>\n<h3>Transparency<\/h3>\n<p>Python makes it easy for Cheesecakes Labs to work quickly and collaboratively with clients. Once your digital product is out there in users\u2019 hands, we\u2019ll be assessing and exploring ways of making your app even better (that\u2019s all part and parcel of our fourth phase of product development, <a href=\"https:\/\/blog-stg.cheesecakelabs.com\/building-app-phase-4-product-optimization\/\">Product Optimization<\/a>) \u2014 and Python facilitates the speed of that process.<\/p>\n<p><strong>Using Python, we\u2019re able to easily translate the real-word use case to code and deliver that benefit to your users with no wasted time.<\/strong><\/p>\n<p>Python also makes it easy for us to figure out any issues that come up with your software; the Python developer tools help us find bugs and squash them. <strong>It helps us keep you updated on our progress and what\u2019s going on with your application too.<\/strong><\/p>\n<p>So before we wrap things up \u2014 and in the name of transparency as well \u2014 it needs to be said: Python won\u2019t be right for every project. You need to find the right tool for your job, so the development team you collaborate with needs to be well-versed in all the tools available.<\/p>\n<p>You can trust the Cheesecake Labs team to not only give their honest, expert opinion on which programming language is right for you, but we\u2019ll also have all the resources and skill-sets required to make a success of your app: Python, Node.js, Golang, or otherwise.<\/p>\n<h2>3 apps built by Cheesecake Labs on top of Python<\/h2>\n<p>With all the benefits of Python, it\u2019s no wonder Cheesecake Labs has used it for 7+ years.<\/p>\n<p>In all that time, we\u2019ve created some great applications for our clients. Let\u2019s check out a few of them and talk about how Python helped make them a reality.<\/p>\n<h3><img decoding=\"async\" class=\"aligncenter wp-image-7395\" title=\"benefits of python\" src=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/aes-tiete-python-web-app.png\" alt=\"benefits of python\" width=\"801\" height=\"475\" srcset=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/aes-tiete-python-web-app.png 1982w, https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/aes-tiete-python-web-app-768x456.png 768w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><br \/>\nAES VPP<\/h3>\n<p>The <a href=\"https:\/\/blog-stg.cheesecakelabs.com\/portfolio\/aes-vpp\/\">AES virtual power plant software<\/a> was one of Cheesecake Labs\u2019 first ventures into the energy market. Virtual power plant software is responsible for connecting renewable energy sources into the grid for businesses, generators, and storage systems.<\/p>\n<p>Cheesecake Labs used Python for the backend, and optimization algorithms. It helped create evolving algorithms that connect with third-party sources to create a robust environment. That data is used for data visualization that helped AES create graphs, forecast pricing, and gauge asset availability.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-7394\" title=\"benefits of python\" src=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/skyroam-ecommerce-python-global.png\" alt=\"benefits of python\" width=\"800\" height=\"860\" srcset=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/skyroam-ecommerce-python-global.png 1303w, https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/skyroam-ecommerce-python-global-768x825.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h3>Skyroam<\/h3>\n<p><a href=\"https:\/\/blog-stg.cheesecakelabs.com\/portfolio\/skyroam\/\">Skyroam<\/a> is a global WiFi hotspot manufacturer. They saw limitations with their Shopify website and wanted to create a robust shopping experience for their customers. That\u2019s where Django held the solution.<\/p>\n<p>Cheesecake Labs used the Django Framework to create a custom-built eCommerce system for Skyroam. We migrated Skyroam off Shopify to a highly-scalable AWS cloud webserver that can meet Skyroam\u2019s global expanding needs.<\/p>\n<h3><img decoding=\"async\" class=\"aligncenter wp-image-7396\" title=\"benefits of python\" src=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/boma-web-app-python.png\" alt=\"benefits of python\" width=\"800\" height=\"581\" srcset=\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/boma-web-app-python.png 1140w, https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2021\/04\/boma-web-app-python-768x558.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/h3>\n<h3>Boma Global<\/h3>\n<p><a href=\"https:\/\/boma.global\/\" target=\"_blank\" rel=\"noopener noreferrer\">Boma Global<\/a> is a leader in corporate education. They provide networking opportunities for organizations and individuals that are driving some of the most innovative companies across the world.<\/p>\n<p>Cheesecake Labs helped Boma Global by updating its website experience. We used Django to create a custom-built website to inform Boma Global\u2019s customers about their business \u2014 connecting users with event information, and helping them sign up for updates and events, while discovering more about the Boma Global network.<\/p>\n<h2>What could Python (and CKL) do for you?<\/h2>\n<p>By now, you should know the benefits of Python and why it\u2019s an excellent choice for your next application. Now all that\u2019s left to do is put that insight into action.<\/p>\n<p>If you want to learn more about using Python for your project, <a href=\"https:\/\/blog-stg.cheesecakelabs.com\/contact\/\">get in touch<\/a>. Our team will gladly walk you through the development process and start bringing your business idea to life.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>It isn\u2019t easy to pick a technology for your new application idea. Everyone acts like the language they use is the best one out there (including us!). It\u2019s hard for business owners to sift through the noise and figure out what tool is the right one for the job. At Cheesecake Labs, we cut through [&hellip;]<\/p>\n","protected":false},"author":65,"featured_media":9663,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[471,345],"tags":[],"class_list":["post-7399","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-engenharia","category-negocios"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The biggest benefits of Python, according to CKL<\/title>\n<meta name=\"description\" content=\"Learn the 3 benefits of Python, why Python is so great, and we&#039;ve been using it for application development for the last 7+ years.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The biggest benefits of Python, according to CKL\" \/>\n<meta property=\"og:description\" content=\"Learn the 3 benefits of Python, why Python is so great, and we&#039;ve been using it for application development for the last 7+ years.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Cheesecake Labs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheesecakelabs\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-09T21:05:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-01T17:02:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/s3.amazonaws.com\/ckl-website-static\/wp-content\/uploads\/2021\/04\/Python-framework-social.png\" \/>\n<meta name=\"author\" content=\"Cheesecake Labs\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/s3.amazonaws.com\/ckl-website-static\/wp-content\/uploads\/2021\/04\/Python-framework-social.png\" \/>\n<meta name=\"twitter:creator\" content=\"@cheesecakelabs\" \/>\n<meta name=\"twitter:site\" content=\"@cheesecakelabs\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/\",\"url\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/\",\"name\":\"The biggest benefits of Python, according to CKL\",\"isPartOf\":{\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/#website\"},\"datePublished\":\"2021-04-09T21:05:20+00:00\",\"dateModified\":\"2022-07-01T17:02:44+00:00\",\"author\":{\"@type\":\"person\",\"name\":\"Bernardo Smaniotto\"},\"description\":\"Learn the 3 benefits of Python, why Python is so great, and we've been using it for application development for the last 7+ years.\",\"breadcrumb\":{\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The biggest benefits of Python, according to CKL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/#website\",\"url\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/\",\"name\":\"Cheesecake Labs\",\"description\":\"Empresa de desenvolvimento e design de aplicativos mobile &amp; web que est\u00e1 reinventando o desenvolvimento de produtos com times remotos. N\u00f3s desenvolvemos aplicativos iOS, Android e aplica\u00e7\u00f5es Web com as melhores empresas dos EUA, do Brasil e do mundo.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Person\",\"name\":\"Bernardo Smaniotto\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2016\/11\/bernardo-300x300.jpg\",\"contentUrl\":\"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2016\/11\/bernardo-300x300.jpg\",\"caption\":\"Bernardo Smaniotto\"},\"description\":\"10 years of experience in Marketing and Sales in the Technology sector. My main purpose is help, support and structure efficient operations and also develop independent and multidisciplinary teams.\",\"url\":\"https:\/\/blog-stg.cheesecakelabs.com\/br\/\/autor\/bernardo-smaniotto\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The biggest benefits of Python, according to CKL","description":"Learn the 3 benefits of Python, why Python is so great, and we've been using it for application development for the last 7+ years.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"pt_BR","og_type":"article","og_title":"The biggest benefits of Python, according to CKL","og_description":"Learn the 3 benefits of Python, why Python is so great, and we've been using it for application development for the last 7+ years.","og_url":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/","og_site_name":"Cheesecake Labs","article_publisher":"https:\/\/www.facebook.com\/cheesecakelabs","article_published_time":"2021-04-09T21:05:20+00:00","article_modified_time":"2022-07-01T17:02:44+00:00","og_image":[{"url":"https:\/\/s3.amazonaws.com\/ckl-website-static\/wp-content\/uploads\/2021\/04\/Python-framework-social.png"}],"author":"Cheesecake Labs","twitter_card":"summary_large_image","twitter_image":"https:\/\/s3.amazonaws.com\/ckl-website-static\/wp-content\/uploads\/2021\/04\/Python-framework-social.png","twitter_creator":"@cheesecakelabs","twitter_site":"@cheesecakelabs","twitter_misc":{"Escrito por":null,"Est. tempo de leitura":"11 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/","url":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/","name":"The biggest benefits of Python, according to CKL","isPartOf":{"@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/#website"},"datePublished":"2021-04-09T21:05:20+00:00","dateModified":"2022-07-01T17:02:44+00:00","author":{"@type":"person","name":"Bernardo Smaniotto"},"description":"Learn the 3 benefits of Python, why Python is so great, and we've been using it for application development for the last 7+ years.","breadcrumb":{"@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/biggest-benefits-of-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog-stg.cheesecakelabs.com\/br\/"},{"@type":"ListItem","position":2,"name":"The biggest benefits of Python, according to CKL"}]},{"@type":"WebSite","@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/#website","url":"https:\/\/blog-stg.cheesecakelabs.com\/br\/","name":"Cheesecake Labs","description":"Empresa de desenvolvimento e design de aplicativos mobile &amp; web que est\u00e1 reinventando o desenvolvimento de produtos com times remotos. N\u00f3s desenvolvemos aplicativos iOS, Android e aplica\u00e7\u00f5es Web com as melhores empresas dos EUA, do Brasil e do mundo.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog-stg.cheesecakelabs.com\/br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-BR"},{"@type":"Person","name":"Bernardo Smaniotto","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/blog-stg.cheesecakelabs.com\/br\/#\/schema\/person\/image\/","url":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2016\/11\/bernardo-300x300.jpg","contentUrl":"https:\/\/ckl-website-static.s3.amazonaws.com\/wp-content\/uploads\/2016\/11\/bernardo-300x300.jpg","caption":"Bernardo Smaniotto"},"description":"10 years of experience in Marketing and Sales in the Technology sector. My main purpose is help, support and structure efficient operations and also develop independent and multidisciplinary teams.","url":"https:\/\/blog-stg.cheesecakelabs.com\/br\/\/autor\/bernardo-smaniotto\/"}]}},"_links":{"self":[{"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/posts\/7399","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/users\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/comments?post=7399"}],"version-history":[{"count":1,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/posts\/7399\/revisions"}],"predecessor-version":[{"id":10146,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/posts\/7399\/revisions\/10146"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/media\/9663"}],"wp:attachment":[{"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/media?parent=7399"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/categories?post=7399"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog-stg.cheesecakelabs.com\/br\/wp-json\/wp\/v2\/tags?post=7399"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}