python-domain-models
python-domain-models copied to clipboard
Domain models framework for Python projects
Checklist of things that should be an object of assessment: - [ ] Goals - [ ] Features - [ ] Automated testing - [ ] Performance - [ ]...
Implementation of unicode support needed because the library might be used with lots of different locales. The idea is to implement it as is Python 2/3 does. Separate `string` and...
The idea is to create functionality for specification of custom getters and setters for domain model fields. ``` python class Profile(models.DomainModel): id = fields.Int() open_id = fields.Int() @open_id.getter def _get_oid(self):...
Create predefined `JSONEncoder` for flask projects. Tip: - http://flask.pocoo.org/snippets/119/
Check that `DomainModel` can be pickled / unpickled without problems, add unit tests for that. - Python 2.6 / 2.7 checks: - pickle (Protocols: 0, 1, 2) - cPickle (Protocols:...