├── .gitignore ├── LICENSE ├── README.md ├── awaitchannel └── __init__.py └── examples ├── blocking.py ├── future.py ├── misc.py ├── sieve.go ├── sieve.py └── simple.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/README.md -------------------------------------------------------------------------------- /awaitchannel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/awaitchannel/__init__.py -------------------------------------------------------------------------------- /examples/blocking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/blocking.py -------------------------------------------------------------------------------- /examples/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/future.py -------------------------------------------------------------------------------- /examples/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/misc.py -------------------------------------------------------------------------------- /examples/sieve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/sieve.go -------------------------------------------------------------------------------- /examples/sieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/sieve.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pothos/awaitchannel/HEAD/examples/simple.py --------------------------------------------------------------------------------