Introduce a new API, ``dazl.connect``, that is much lighterweight and stateless than ``dazl.Network``.
See the migration guide (https://digital-asset.github.io/dazl-client/migrating.html) for changes that were made as part of this release. Note that the ``dazl.Network`` API continues to work, and will be available for the foreseeable future; you are encouraged, however, to try out the new API for new projects.
Example
py
import dazl
async with dazl.connect(url='http://localhost:6865', act_as='Alice') as conn:
await conn.create('Main:Asset', {'issuer': 'Alice', 'owner': 'Alice', 'name': 'hello world!'})