Migration from Scala to Python#
Migrating a history Scala project to Python, I find some tips that can help me forget the type system in scala. Feel good!!!
dataclass vs case class#
You have to create a case class for each data model in Scala, whiledataclass is your alternative in python