{"acronym":"sps22","aspect_ratio":"16:9","updated_at":"2026-04-11T16:15:04.670+02:00","title":"Swiss Python Summit 2022","schedule_url":"","slug":"conferences/sps/2022","event_last_released_at":"2022-10-30T00:00:00.000+02:00","link":"https://www.python-summit.ch/","description":"","webgen_location":"conferences/sps/2022","logo_url":"https://static.media.ccc.de/media/conferences/sps22/logo.png","images_url":"https://static.media.ccc.de/media/conferences/sps22","recordings_url":"https://cdn.media.ccc.de/events/sps22","url":"https://api.media.ccc.de/public/conferences/sps22","events":[{"guid":"f8f37696-675c-4b8a-946e-9380e728c765","title":"MicroPython on the RP2040","subtitle":null,"slug":"sps22-4239-micropython-on-the-rp2040","link":"https://c3voc.de","description":"RP2040 is the Raspberry Pi Foundation's take on the microcontroller. It is fast, cheap and has some very neat features. MicroPython is a software implementation of a subset of the Python3 programming language, optimized to run on microcontrollers and in constrained environments. After a short introduction of both technologies, we will present notable features and particularities of the RP2040, and how they can be easily accessed using MicroPython. This includes dual-core technology, PIO (programmable in-out) and DMA (direct memory access). Moreover, we will illustrate how some some of those features are used in real-world use cases, including a live demonstration. The talk will end with a discussion on the limits of the MicroPython approach with respect to the C/C++ SDK, and a question and answer session.\n\nRP2040 is the Raspberry Pi Foundation's take on the microcontroller. It is fast, cheap and has some very neat features. MicroPython is a software implementation of a subset of the Python3 programming language, optimized to run on microcontrollers and in constrained environments. After a short introduction of both technologies, we will present notable features and particularities of the RP2040, and how they can be easily accessed using MicroPython. This includes dual-core technology, PIO (programmable in-out) and DMA (direct memory access). Moreover, we will illustrate how some some of those features are used in real-world use cases, including a live demonstration. The talk will end with a discussion on the limits of the MicroPython approach with respect to the C/C++ SDK, and a question and answer session.","original_language":"eng","persons":["Tobias Gresch"],"tags":["import","4239","2022","Main"],"view_count":203,"promoted":false,"date":"2022-09-22T17:45:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2026-01-06T00:00:20.591+01:00","length":2044,"duration":2044,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4239-f8f37696-675c-4b8a-946e-9380e728c765.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4239-f8f37696-675c-4b8a-946e-9380e728c765_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4239-f8f37696-675c-4b8a-946e-9380e728c765.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4239-f8f37696-675c-4b8a-946e-9380e728c765.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4239-micropython-on-the-rp2040","url":"https://api.media.ccc.de/public/events/f8f37696-675c-4b8a-946e-9380e728c765","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b","title":"Opening","subtitle":null,"slug":"sps22-4230-opening","link":"https://c3voc.de","description":"Swiss Python Summit Opening\n\nSwiss Python Summit Opening","original_language":"eng","persons":["Orga"],"tags":["import","4230","2022","Main"],"view_count":26,"promoted":false,"date":"2022-09-22T11:00:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2024-01-02T06:00:03.869+01:00","length":360,"duration":360,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4230-3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4230-3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4230-3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4230-3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4230-opening","url":"https://api.media.ccc.de/public/events/3ac5b7d7-3720-4274-bbb6-9cdbf8c9e50b","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"559e3212-b970-4aaf-923a-849474a35a25","title":"Pydantic Configuration Management with ConfZ","subtitle":null,"slug":"sps22-4236-pydantic-configuration-manage","link":"https://c3voc.de","description":"Config management in larger applications can become quite complex: Information needs to be loaded from different sources like environment variables, config files and command line arguments, the loaded data needs to be validated to ensure all expected information is present and in the correct format and then distributed to different locations in the codebase. This holds true especially in data science projects, having rich model and training configurations. To simplify this process, we developed and open-sourced ConfZ, a config management library for Python based on pydantic. It easily allows to load config values from heterogeneous sources, validates them and makes them accessible as Python dataclass-like objects with full IDE support. It furthermore supports in common use cases like having multiple environments, lazy loading and unit testing. Within two months, we already reached more than 100 stars on GitHub. In this talk, we show how ConfZ is used and how it compares to other config management solutions. We then dig into the pythonic details and see how meta classes drive the internals of the library.\n\nConfig management in larger applications can become quite complex: Information needs to be loaded from different sources like environment variables, config files and command line arguments, the loaded data needs to be validated to ensure all expected information is present and in the correct format and then distributed to different locations in the codebase. This holds true especially in data science projects, having rich model and training configurations. To simplify this process, we developed and open-sourced ConfZ, a config management library for Python based on pydantic. It easily allows to load config values from heterogeneous sources, validates them and makes them accessible as Python dataclass-like objects with full IDE support. It furthermore supports in common use cases like having multiple environments, lazy loading and unit testing. Within two months, we already reached more than 100 stars on GitHub. In this talk, we show how ConfZ is used and how it compares to other config management solutions. We then dig into the pythonic details and see how meta classes drive the internals of the library.","original_language":"eng","persons":["Silvan Melchior"],"tags":["import","4236","2022","Main"],"view_count":63,"promoted":false,"date":"2022-09-22T14:10:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2026-01-30T03:30:04.447+01:00","length":1363,"duration":1363,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4236-559e3212-b970-4aaf-923a-849474a35a25.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4236-559e3212-b970-4aaf-923a-849474a35a25_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4236-559e3212-b970-4aaf-923a-849474a35a25.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4236-559e3212-b970-4aaf-923a-849474a35a25.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4236-pydantic-configuration-manage","url":"https://api.media.ccc.de/public/events/559e3212-b970-4aaf-923a-849474a35a25","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"7d05382f-8dcf-4617-b9a1-7fa996c7b3e0","title":"Automating teaching about automation in Python","subtitle":null,"slug":"sps22-4240-automating-teaching-about-aut","link":"https://c3voc.de","description":"Since autumn 2021, there is an «Automation in Python» course for first-semester IT students here at OST. This talk will tell the story on how it all came to be, what surprises you run into when you're suddenly responsible for 120 students, and how automating things in Python played a big role when teaching about automating things in Python.\n\nSince autumn 2021, there is an «Automation in Python» course for first-semester IT students here at OST. This talk will tell the story on how it all came to be, what surprises you run into when you're suddenly responsible for 120 students, and how automating things in Python played a big role when teaching about automating things in Python.","original_language":"eng","persons":["Florian Bruhin"],"tags":["import","4240","2022","Main"],"view_count":346,"promoted":false,"date":"2022-09-22T18:15:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2025-12-06T14:15:04.602+01:00","length":1945,"duration":1945,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4240-7d05382f-8dcf-4617-b9a1-7fa996c7b3e0.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4240-7d05382f-8dcf-4617-b9a1-7fa996c7b3e0_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4240-7d05382f-8dcf-4617-b9a1-7fa996c7b3e0.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4240-7d05382f-8dcf-4617-b9a1-7fa996c7b3e0.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4240-automating-teaching-about-aut","url":"https://api.media.ccc.de/public/events/7d05382f-8dcf-4617-b9a1-7fa996c7b3e0","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"ea8788cb-7a24-4292-9b5c-78ea56aef375","title":"CLI applications \u0026 TDD: Never write scripts again","subtitle":null,"slug":"sps22-4235-cli-applications-tdd-never-wr","link":"https://c3voc.de","description":"As a DevOps engineer, when you write Python code, do you also write tests? If you're like the majority of the folks out there, chances are you don't. Why would you? It's usually just a script, even if it gets longer over time and starts feeling like Bash. – Deep inside you know that writing tests would be needed. It's the prerequisite for test automation, the foundation of release automation. But heck, who cares? It would be cumbersome to do. You write scripts for your automation tasks – Python makes it easy to get started – and you have noticed that they get hard to maintain when they grow and accumulate logic? Sometimes you split up a large script into several files, but that feels like spaghetti code? Several plates of spaghetti. This talk explains why it makes sense to stop hacking glue code and start developing serious CLI applications, test-driven, with automated tests. Even if you have some experience with writing tests, it's not immediately obvious how to get started. You'll get to know the cli-test-helpers package and see a hands-on demonstration of developing a CLI application from scratch, TDD-style. We'll scratch the surface of some popular CLI frameworks (argparse, click, docopt), and you'll take home working code samples that will help you refuse the temptation of writing code without tests, in future. This talk will make you a TDD addict. Come get the drug!\n\nAs a DevOps engineer, when you write Python code, do you also write tests? If you're like the majority of the folks out there, chances are you don't. Why would you? It's usually just a script, even if it gets longer over time and starts feeling like Bash. – Deep inside you know that writing tests would be needed. It's the prerequisite for test automation, the foundation of release automation. But heck, who cares? It would be cumbersome to do. You write scripts for your automation tasks – Python makes it easy to get started – and you have noticed that they get hard to maintain when they grow and accumulate logic? Sometimes you split up a large script into several files, but that feels like spaghetti code? Several plates of spaghetti. This talk explains why it makes sense to stop hacking glue code and start developing serious CLI applications, test-driven, with automated tests. Even if you have some experience with writing tests, it's not immediately obvious how to get started. You'll get to know the cli-test-helpers package and see a hands-on demonstration of developing a CLI application from scratch, TDD-style. We'll scratch the surface of some popular CLI frameworks (argparse, click, docopt), and you'll take home working code samples that will help you refuse the temptation of writing code without tests, in future. This talk will make you a TDD addict. Come get the drug!","original_language":"eng","persons":["Peter Bittner"],"tags":["import","4235","2022","Main"],"view_count":166,"promoted":false,"date":"2022-09-22T13:40:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2026-03-23T23:45:05.176+01:00","length":2159,"duration":2159,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4235-ea8788cb-7a24-4292-9b5c-78ea56aef375.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4235-ea8788cb-7a24-4292-9b5c-78ea56aef375_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4235-ea8788cb-7a24-4292-9b5c-78ea56aef375.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4235-ea8788cb-7a24-4292-9b5c-78ea56aef375.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4235-cli-applications-tdd-never-wr","url":"https://api.media.ccc.de/public/events/ea8788cb-7a24-4292-9b5c-78ea56aef375","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"c07273b9-8558-48f0-bc8c-47a0eb29d20b","title":"Running Machine Learning in Production - a Journey to Success","subtitle":null,"slug":"sps22-4234-running-machine-learning-in-p","link":"https://c3voc.de","description":"Have you ever deployed a machine learning project to production with the same principles as a software project? I did - I failed. But, on the way, I learned many essential factors to run ML in production environments successfully! So there is more to it than just deploying a data scientist Jupyter notebook to AWS. This talk will go through some common pitfalls of running machine learning in production settings. We will start with the requirements and work through the data acquisition and model-building phase. We explore beyond the current MLOps hype and try to understand what it takes to run a successful project that is ready to ripe like a fine wine rather than old milk.\n\nHave you ever deployed a machine learning project to production with the same principles as a software project? I did - I failed. But, on the way, I learned many essential factors to run ML in production environments successfully! So there is more to it than just deploying a data scientist Jupyter notebook to AWS. This talk will go through some common pitfalls of running machine learning in production settings. We will start with the requirements and work through the data acquisition and model-building phase. We explore beyond the current MLOps hype and try to understand what it takes to run a successful project that is ready to ripe like a fine wine rather than old milk.","original_language":"eng","persons":["Martin Stypinski"],"tags":["import","4234","2022","Main"],"view_count":129,"promoted":false,"date":"2022-09-22T13:10:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2025-08-02T19:15:05.041+02:00","length":2002,"duration":2002,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4234-c07273b9-8558-48f0-bc8c-47a0eb29d20b.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4234-c07273b9-8558-48f0-bc8c-47a0eb29d20b_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4234-c07273b9-8558-48f0-bc8c-47a0eb29d20b.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4234-c07273b9-8558-48f0-bc8c-47a0eb29d20b.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4234-running-machine-learning-in-p","url":"https://api.media.ccc.de/public/events/c07273b9-8558-48f0-bc8c-47a0eb29d20b","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"45a9c73d-1f5f-474b-b47b-4e1839ea0772","title":"Game Development with CircuitPython","subtitle":null,"slug":"sps22-4237-game-development-with-circuit","link":"https://c3voc.de","description":"With a large selection of handheld devices running CircuitPython, it's natural to want to make games for them. But where to start? What are the options available for the hardware, the libraries and other resources? And how do you use all of that? This talk aims to give a gentle introduction for everyone.\n\nWith a large selection of handheld devices running CircuitPython, it's natural to want to make games for them. But where to start? What are the options available for the hardware, the libraries and other resources? And how do you use all of that? This talk aims to give a gentle introduction for everyone.","original_language":"eng","persons":["Radomir Dopieralski"],"tags":["import","4237","2022","Main"],"view_count":68,"promoted":false,"date":"2022-09-22T16:00:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2025-07-16T12:45:07.778+02:00","length":1741,"duration":1741,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4237-45a9c73d-1f5f-474b-b47b-4e1839ea0772.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4237-45a9c73d-1f5f-474b-b47b-4e1839ea0772_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4237-45a9c73d-1f5f-474b-b47b-4e1839ea0772.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4237-45a9c73d-1f5f-474b-b47b-4e1839ea0772.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4237-game-development-with-circuit","url":"https://api.media.ccc.de/public/events/45a9c73d-1f5f-474b-b47b-4e1839ea0772","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"69b3cc0d-af34-4267-b7f1-3dc5604f2cc9","title":"Python Folks, keep being so warm and welcoming. People are staying in tech because of you!","subtitle":null,"slug":"sps22-4232-python-folks-keep-being-so-wa","link":"https://c3voc.de","description":"I want to talk about my experiences as a woman of color just starting out in tech and the importance of being kind and welcoming to people from minority communities and how it helps them stick around in tech.\n\nI want to talk about my experiences as a woman of color just starting out in tech and the importance of being kind and welcoming to people from minority communities and how it helps them stick around in tech.","original_language":"eng","persons":["Mahe Iram Khan"],"tags":["import","4232","2022","Main"],"view_count":25,"promoted":false,"date":"2022-09-22T11:15:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2024-08-03T17:30:02.385+02:00","length":853,"duration":853,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4232-69b3cc0d-af34-4267-b7f1-3dc5604f2cc9.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4232-69b3cc0d-af34-4267-b7f1-3dc5604f2cc9_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4232-69b3cc0d-af34-4267-b7f1-3dc5604f2cc9.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4232-69b3cc0d-af34-4267-b7f1-3dc5604f2cc9.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4232-python-folks-keep-being-so-wa","url":"https://api.media.ccc.de/public/events/69b3cc0d-af34-4267-b7f1-3dc5604f2cc9","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"812ec8f3-a263-45d3-8362-8e3ff9a18b4f","title":"Static type checking with mypy","subtitle":null,"slug":"sps22-4238-static-type-checking-with-myp","link":"https://c3voc.de","description":"Python is a dynamic language, which gives its users a lot of power. But, as we know, with great power comes great responsibility. Fortunately for us, we can incorporate a tool in our workflows - Mypy. Mypy allows developers to add a layer of safety in their programs - static type annotations. During my talk, I will show you why PEP484 type annotations can be helpful, how to check them, and gradually introduce them in your codebase. Additionally, I want to show some tricks to make the dynamic parts safer. Finally, I will also show situations where Mypy falls short and how to avoid them.\n\nPython is a dynamic language, which gives its users a lot of power. But, as we know, with great power comes great responsibility. Fortunately for us, we can incorporate a tool in our workflows - Mypy. Mypy allows developers to add a layer of safety in their programs - static type annotations. During my talk, I will show you why PEP484 type annotations can be helpful, how to check them, and gradually introduce them in your codebase. Additionally, I want to show some tricks to make the dynamic parts safer. Finally, I will also show situations where Mypy falls short and how to avoid them.","original_language":"eng","persons":["Michal Gutowski"],"tags":["import","4238","2022","Main"],"view_count":43,"promoted":false,"date":"2022-09-22T16:30:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2024-04-08T22:15:03.771+02:00","length":1811,"duration":1811,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4238-812ec8f3-a263-45d3-8362-8e3ff9a18b4f.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4238-812ec8f3-a263-45d3-8362-8e3ff9a18b4f_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4238-812ec8f3-a263-45d3-8362-8e3ff9a18b4f.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4238-812ec8f3-a263-45d3-8362-8e3ff9a18b4f.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4238-static-type-checking-with-myp","url":"https://api.media.ccc.de/public/events/812ec8f3-a263-45d3-8362-8e3ff9a18b4f","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"44601065-0794-406a-88ae-c657b4a9e082","title":"Closing","subtitle":null,"slug":"sps22-4231-closing","link":"https://c3voc.de","description":"Swiss Python Summit Closing\n\nSwiss Python Summit Closing","original_language":"eng","persons":["Orga"],"tags":["import","4231","2022","Main"],"view_count":38,"promoted":false,"date":"2022-09-22T18:45:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2023-12-25T23:30:02.498+01:00","length":316,"duration":316,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4231-44601065-0794-406a-88ae-c657b4a9e082.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4231-44601065-0794-406a-88ae-c657b4a9e082_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4231-44601065-0794-406a-88ae-c657b4a9e082.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4231-44601065-0794-406a-88ae-c657b4a9e082.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4231-closing","url":"https://api.media.ccc.de/public/events/44601065-0794-406a-88ae-c657b4a9e082","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]},{"guid":"d6e08fda-7242-401d-a717-842599d2816b","title":"Rust for Python Developers","subtitle":null,"slug":"sps22-4233-rust-for-python-developers","link":"https://c3voc.de","description":"What programming language are you choosing for a new project? This talk wants to explore why we choose a programming language over another one. We will look at the languages Python and Rust to understand their strengths and weaknesses. Rust is a fairly new language and offers distinct advantages over most other programming languages when it comes to performance and security. There are however clear drawbacks. We will look at side by side comparisons of code and learn how much harder it is to write a lot of simple things in Rust.\n\nWhat programming language are you choosing for a new project? This talk wants to explore why we choose a programming language over another one. We will look at the languages Python and Rust to understand their strengths and weaknesses. Rust is a fairly new language and offers distinct advantages over most other programming languages when it comes to performance and security. There are however clear drawbacks. We will look at side by side comparisons of code and learn how much harder it is to write a lot of simple things in Rust.","original_language":"eng","persons":["Dave Halter"],"tags":["import","4233","2022","Main"],"view_count":389,"promoted":false,"date":"2022-09-22T12:00:00.000+02:00","release_date":"2022-10-30T00:00:00.000+02:00","updated_at":"2026-04-11T16:15:04.668+02:00","length":3643,"duration":3643,"thumb_url":"https://static.media.ccc.de/media/conferences/sps22/4233-d6e08fda-7242-401d-a717-842599d2816b.jpg","poster_url":"https://static.media.ccc.de/media/conferences/sps22/4233-d6e08fda-7242-401d-a717-842599d2816b_preview.jpg","timeline_url":"https://static.media.ccc.de/media/conferences/sps22/4233-d6e08fda-7242-401d-a717-842599d2816b.timeline.jpg","thumbnails_url":"https://static.media.ccc.de/media/conferences/sps22/4233-d6e08fda-7242-401d-a717-842599d2816b.thumbnails.vtt","frontend_link":"https://media.ccc.de/v/sps22-4233-rust-for-python-developers","url":"https://api.media.ccc.de/public/events/d6e08fda-7242-401d-a717-842599d2816b","conference_title":"Swiss Python Summit 2022","conference_url":"https://api.media.ccc.de/public/conferences/sps22","related":[]}]}