List of normal vectors

Given a two dimensional mesh Omega, I can easily generate a list of edges by doing:

Edges = [ e for e in  Omega.edges]

How can I generate a list of normal vectors? (presumably with the same indexing as the aforementioned list of edges)

Thank you very much!