## asynced


A partial async coroutine.


Usage

``` python
asynced()
```


## Classes

| Name | Description |
|----|----|
| [tasks](#tasks) | A set of futures which tracks completion. |

------------------------------------------------------------------------


#### tasks


A set of futures which tracks completion.


Usage

``` python
tasks(coros=(), **kwargs)
```


The context manager waits for all tasks.


## Methods

| Name | Description |
|----|----|
| [as_completed()](#as_completed) | Replaces `asyncio.as_completed`, which requires a running loop. |
| [iter()](#iter) | Wrap an asynchronous iterable into an iterator. |
| [run()](#run) | Synchronously call and run coroutine or asynchronous iterator. |

------------------------------------------------------------------------


#### as_completed()


Replaces `asyncio.as_completed`, which requires a running loop.


Usage

``` python
as_completed(fs, loop=None, **kwargs)
```


------------------------------------------------------------------------


#### iter()


Wrap an asynchronous iterable into an iterator.


Usage

``` python
iter(aiterable, loop=None)
```


Analogous to `asyncio.run` for coroutines.


------------------------------------------------------------------------


#### run()


Synchronously call and run coroutine or asynchronous iterator.


Usage

``` python
run(*args, **kwargs)
```
