python-domain-models icon indicating copy to clipboard operation
python-domain-models copied to clipboard

Domain models framework for Python projects

Results 7 python-domain-models issues
Sort by recently updated
recently updated
newest added

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...

feature

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):...

feature

Setup basic docs on RTD. Notes: - Include API docs

enhancement

Create predefined `JSONEncoder` for flask projects. Tip: - http://flask.pocoo.org/snippets/119/

feature
research

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:...

feature