Returns a single object based on the passed filter constraints. This is a pass-through to the model objects().:method:`~cqlengine.queries.get`.
(cls, *args, **kwargs)
| 693 | |
| 694 | @classmethod |
| 695 | def get(cls, *args, **kwargs): |
| 696 | """ |
| 697 | Returns a single object based on the passed filter constraints. |
| 698 | |
| 699 | This is a pass-through to the model objects().:method:`~cqlengine.queries.get`. |
| 700 | """ |
| 701 | return cls.objects.get(*args, **kwargs) |
| 702 | |
| 703 | def timeout(self, timeout): |
| 704 | """ |
no outgoing calls