How can you load a table with INET ARRAY type?
cidr_table = db.Table('cidr_table', metadata,
db.Column('range_name', db.String(255), nullable=False),
db.Column('wide_range_cidr', postgresql.INET(), nullable=False),
db.Column('used_cidr_list', postgresql.ARRAY(??????))
)
I am trying to get the used_cidr_list to be an array of INET values which will be populated like [10.0.0.0/10, 10.1.0.0/16, and so on ]
How can i achieve that?
Thank you