Sébastien Eustace
Sébastien Eustace
Yes. fake-factory changed its name to Faker which Orator depends on. A bugfix version will be released in the coming week (see https://github.com/sdispater/orator/issues/126)
For now, there is no built-in validation system. However, if you want to ensure the model is correct before saving it you can use events like documented in the documentation:...
Thanks for your interest in Orator! Orator does not currently support asyncio but that's definitely something I want to do. I don't know just yet if it will be directly...
@Gr1N No, I don't have any estimates yet.
Could you post the complete traceback to see where the error is raised?
Those are not needed since Orator now uses [Poet](https://github.com/sdispater/poet) to handle dependency management and packaging.
I think I will add a **Contributing** section to the README to make it more clear.
`all()` will execute a `SELECT * FROM table` and return a `Collection` object. What you want is actually: ```python for characters in Character.order_by('id', 'asc').chunk(100): # Do something with the characters...
@Flupster Orator is already using cursors and the `fetchmany()` method when using `chunk()`. https://github.com/sdispater/orator/blob/0.9/orator/query/builder.py#L1163 https://github.com/sdispater/orator/blob/0.9/orator/connections/connection.py#L221 So, I am not sure what's going on here. And unless I missed it we...
What does your class look like? I will try to reproduce but having an example might help.