Anna-Lena Popkes
    • Posts
    • My path to machine learning
    • Books
      • Personal reading List
      • Deep work
    • Machine Learning
      • KL Divergence
      • Variational Inference
    • Python
      • Mocking
      • Magical Universe
        • Start
        • The Tales of Castle Kilmere
        • Object-oriented programming
        • Types of methods
        • Type annotations
        • To-string conversion
        • Decorators
        • Properties
        • Underscore patterns
        • Extending the universe
        • Duck Typing
        • Namedtuples
        • Abstract Base Classes
        • Data classes
        • Immutable data classes
        • Decorators in classes
        • if __name__ == "__main__"
        • Context managers
        • Testing with pytest
        • Iterators
        • Multisets
        • Extending the universe II
        • Exception classes
        • functools.wraps
        • Defaultdict
        • Config files
        • Wrap up
    • Software Engineering
      • Intro to containers
      • Intro to Docker
      • Intro to virtual machines
    Custom exception classes

    Topics: Custom exception classes Errors and Exceptions First of all, what is an exception? As outlined in the Python docs there are two big kinds of errors: syntax errors and exceptions. Syntax Error: A syntax error is an error that makes it impossible to parse a program. That’s why it’s also called a parsing error. Whenever we made a mistake in the syntax of our code (for example, we might forgot a ‘:’ somewhere) the parser will complain with a Syntax Error: invalid syntax, pointing us to the offending line.

    September 3, 2018 Read
    Extending the Magical Universe

    Topics: Extending the Magical Universe with classmethods for Charm, Hex, Curse, etc. Today I added classmethods to the different Spell subclasses. Speficially, I added one classmethod for each spell type: Charm, Transfiguration, Jinx, Hex, Curse, CounterSpell, HealingSpell such that at least one charm, hex, jinx, … exists in our universe. Tomorrow I will write test code for the entire abstract base class Spell.

    August 29, 2018 Read
    Multisets, `collections.Counter`

    Topics: Multisets, collections.Counter Counting objects Today I want to present a very useful class in Python: collections.Counter. You might wonder what is so great about this class: it allows us to count all kinds of objects! And who doesn’t love counting? For example, consider all the potion ingredients Cleon, Flynn and Cassidy need to buy for a school year. We can easily create a shopping list for them using collections.Counter.

    August 25, 2018 Read
    Iterators

    Topics: Iterators, iterables and iteration Iterators Although we need to create more test functions for the other Magical Universe classes, I want to spend a few days on iterators. First of all, what is meant by the term iteration? Iteration describes the process of taking an item and looking at each of its components one by one. Any time we use a loop like for component in item: print(component) we use iteration.

    August 20, 2018 Read
    Testing code with pytest

    Topics: Testing code with pytest Updated 2020-10-05 Writing test functions for our code is extremely important. Since I have been lazy writing test code myself, I want to spend a little more time on this topic. My favorite testing framework is pytest. I’m not an expert on testing, so please consider this post an introduction to testing rather than a thorough guide. Why pytest? Using pytest has several advantages. First of all, pytest makes testing very easy because its syntax is simple and easy to understand.

    August 17, 2018 Read
    Context managers and the `with` statement

    Topics: with statement and context managers Updated 2020-10-05 Context managers and the with statement Similar to decorators, context managers are a concept many people use but only few understand. If you haven’t heard of the term ‘context manager’ before: you probably encountered them already while reading or writing from/to a file using the with statement. The most common use of context managers is the proper management of resources. In simple terms this means that we want to make sure that we open, read, write and close files correctly.

    August 14, 2018 Read
    The mysterious `if __name__ == "__main__"`

    Topics: What is if __name__ == "__main__" doing? I always wanted to dig into the statement if __name__ == "__main__" that is used in so many programs. I have used it for a long time already but until recently I had no idea what exactly it is doing. To make the topic as understandable as possible, I will divide the explanation into three steps. Step 1: Two ways of running code We saved our Magical Universe in a file named magical_universe.

    August 12, 2018 Read
    Decorators within classes

    Topics: Decorators within a class Updated 2020-10-05 After having talked about decorators already on day 5 and day 6 I would like to revisit the topic to discuss how decorators can be used within classes. Let’s put ourselves in the position of a Castle Kilmere member during the time the school is in war with Master Odon and his Dark Army. So these are dark, scary times. People at Castle Kilmere are constantly scared that something might happen to them, their family or their friends.

    August 11, 2018 Read
    Immutable data classes

    Topics: Immutable data classes Updated 2020-10-05 We have talked a lot about data classes in the last post. There is one further characteristic of data classes that I would like to study - immutability. We can make a dataclass immutable such that it fulfills the same purpose as typing.NamedTuple. To make a dataclass immutable we have to set frozen=True when creating the class. Let’s see how we can change our DarkArmyMember class from typing.

    August 10, 2018 Read
    Data classes

    Topics: Data classes Updated 2020-10-05 Data classes are a feature that is new in Python 3.7. And taking a look at them is definitely worth it! Data classes According to the PEP on data classes, they are basically “mutable namedtuples with defaults”. We already looked at namedtuples on day 10 and 11. Namedtuples allow us to create an immutable class that primarily stores values (i.e. attributes). We used namedtuples for our DarkArmyMember class (because once you become a member of the dark army there is no way back.

    August 8, 2018 Read
    Abstract Base Classes

    Topics: Abstract Base Classes, ABC’s Updated 2020-10-05 The last days I have been working on a lot of new classes and methods. Since they all belong to the same big concept, I decided to create one big post on the whole topic instead of several small ones. So let’s get right into it! Abtract Base Classes Up to now, our Magical Universe has a parent class (CastleKilmereMember) and several child classes (Pupil, Professor, etc.

    August 4, 2018 Read
    Namedtuples

    Topics: Immutable classes, namedtuples Updated 2020-10-04 Tuples Before looking at namedtuples, we should review what a tuple is. In Python, a tuple is a simple data structure that can be used for grouping arbitrary objects. Important to know is that tuples are immutable. That means that once a tuple has been created, it can not be changed anymore. We already used tuples in our Magical Universe. For example, we defined the pet attribute of the Pupil class to be a tuple:

    August 1, 2018 Read
    • ««
    • «
    • 1
    • 2
    • 3
    • »
    • »»
    Navigation
    • About
    • Skills
    • Experiences
    • Education
    • Projects
    • Recent Posts
    • Talks & Podcasts
    Contact me:
    • Email: popkes@gmx.net

    Toha
    © 2020-2021 Copyright.
    Powered by Hugo Logo