Is there any way to iterate over the fields of a table metaclass object? (NOT the table itself, I need to do some preliminary analysis before a table is even instantiated)
I'm not really familiar with metaclasses in Python, so this is mystery stuff to me.
class Particle(IsDescription):
name = StringCol(16, pos=1) # 16-character String
lati = IntCol(pos=2) # integer
longi = IntCol(pos=3) # integer
pressure = Float32Col(pos=4) # float (single-precision)
temperature = FloatCol(pos=5) # double (double-precision)