Hi my problem is that: I want to define a class in this way:
class List(Base):
hp = Column(int,...)
name = Column(str,...)
This class represents a list, I can define/modify/code the Base and the Column class.
There's a way to know the order in which I defined the attributes hp/names?
For example I want to define a method that can do this:
l = List()
l.show()
[(hp,16),(name,roger)] # in this order