Python Ordered Class
Maintain Ordered of Fields in Class
Introduction
We saw many questions on the WEB regarding having Python class maintain order of its fields. Reason being that __dict__ is dict, therefore, class doesn't register the order of the fields presented to it.
We decided to share our version of such a …