My Talk about Decorators in PyCon IL 2025

PyCon IL 2025 took place on September 9, 2025. It was a marvelous celebration for Python developers in the Israeli community.
Python for Kids: Coding Made FUN

The Python for Kids: Coding Made FUN is a new book that focuses on teaching kids how to code in Python. You can find it on Amazon.
Anti Patterns

Unlike design patterns, anti patterns just seem to be a solution. However, they are not a solution and they cause additional costs.
What is Computer Programming Paradigm?

The programming paradigm defines the way in which programs are written, organized, and executed.
Code with Me Collaborative Coding

Using JetBrains’ IDEs you can easily share your IDE with remote friends allowing them to work on your IDE as if they were sitting next to you.
Meetup about Structural Pattern Matching in Python

What is Structural Pattern Matching in Python? When it is useful to use it? Join our meetup and learn about the possibilities.
The XtremePython Online Conference Supportive Meetup Groups
We are currently looking for meetup groups that focus on Python (or on other related topics) that will be interested in supporting the XtremePython coming online conference. You can find more information about this coming conference at https://xtremepython.dev The support we are looking for can include the following, and beyond! We would appreciate updating the […]
Black Friday December 2020
Join the Python Programming course that starts on 5.1.2021 and get freeaccess to 3 out of the 4 Seminars listed below! If you alreadytook our Python Programming course you can register for any of these four newseminars and get free access to 2 other ones you choose (out of these 4 seminars listed below). This […]
Data Classes in Python
As of Python 3.7, we will be able to mark the class we define with the @dataclass decorator. Doing so, the newly defined class will be a data class (similarly to Data Class in Kotlin). As with Kotlin, the main outcome of having our class defined as a data class is having auto-generated methods, such as […]