## AsyncRemote


An [AsyncClient](AsyncClient.md#clients.AsyncClient) which defaults to posts with json bodies, i.e., RPC.


Usage

``` python
AsyncRemote(
    url,
    json={},
    **kwargs,
)
```


## Parameters


`url: str`  
base url for requests

`json: Mapping = {}`    
default json body for all calls

`**kwargs`  
same options as [AsyncClient](AsyncClient.md#clients.AsyncClient)


## Methods

| Name | Description |
|----|----|
| [__call__()](#__call__) | POST request with json body and check result. |

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


#### \_\_call\_\_()


POST request with json body and check result.


Usage

``` python
__call__(path="", **json)
```
