__await__

Dunder MethodPython 2.0+Expert

Returns an iterator for use with the await expression

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
class Example:
    def __await__(self):
        return "Example __await__"

obj = Example()
print(obj)

__await__ returns an iterator for use with the await expression. Implementing it lets you customize how Python interacts with your objects.

Try in Playground

Tags

oopmagic-methodprotocolcore